[jira] [Closed] (OFBIZ-10200) Change log level from INFO to VERBOSE for detail logging in UtilCache.findSizeInByte

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl closed OFBIZ-10200.
-
   Resolution: Implemented
Fix Version/s: 17.12.01

Thanks Martin,

your patch is in trunk r1826597.

> Change log level from INFO to VERBOSE for detail logging in 
> UtilCache.findSizeInByte
> 
>
> Key: OFBIZ-10200
> URL: https://issues.apache.org/jira/browse/OFBIZ-10200
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Upcoming Branch
>Reporter: Martin Becker
>Assignee: Michael Brohl
>Priority: Trivial
> Fix For: 17.12.01
>
> Attachments: OFBIZ-10200_UtilCache_findSizeInBytes.patch
>
>
> Info logging unnecessarily slows down cache maintenance page rendering on 
> Test/Development Systems with info logging turned on.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OFBIZ-10200) Change log level from INFO to VERBOSE for detail logging in UtilCache.findSizeInByte

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl reassigned OFBIZ-10200:
-

Assignee: Michael Brohl

> Change log level from INFO to VERBOSE for detail logging in 
> UtilCache.findSizeInByte
> 
>
> Key: OFBIZ-10200
> URL: https://issues.apache.org/jira/browse/OFBIZ-10200
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Upcoming Branch
>Reporter: Martin Becker
>Assignee: Michael Brohl
>Priority: Trivial
> Attachments: OFBIZ-10200_UtilCache_findSizeInBytes.patch
>
>
> Info logging unnecessarily slows down cache maintenance page rendering on 
> Test/Development Systems with info logging turned on.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10272) Documentation: Convert README.md to README.adoc

2018-03-12 Thread Michael Brohl (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10272?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16396116#comment-16396116
 ] 

Michael Brohl commented on OFBIZ-10272:
---

Any objections against this conversion?

> Documentation: Convert README.md to README.adoc
> ---
>
> Key: OFBIZ-10272
> URL: https://issues.apache.org/jira/browse/OFBIZ-10272
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Michael Brohl
>Assignee: Michael Brohl
>Priority: Minor
>  Labels: asciidoc, documentation
> Attachments: OFBIZ-10272_Convert_README.md_to_README.adoc.patch, 
> OFBIZ-10272_Convert_README.md_to_README.adoc.patch
>
>
> Convert the main README to asciidoc format.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OFBIZ-10275) UtilCodec URL decoding breaks values with german umlauts

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl reassigned OFBIZ-10275:
-

Assignee: Michael Brohl

> UtilCodec URL decoding breaks values with german umlauts
> 
>
> Key: OFBIZ-10275
> URL: https://issues.apache.org/jira/browse/OFBIZ-10275
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Trunk
>Reporter: Martin Becker
>Assignee: Michael Brohl
>Priority: Major
> Attachments: OFBIZ-10275_UrlCodec_decode_via_URLDecoder.patch
>
>
> ...and other UTF-8 characters encoded in two hex. values like in this example:
> {code:java}
> String example = "/webcontent/example_öl.jpg";
> String encoded = UtilCodec.getEncoder("url").encode(example);
> System.out.println(encoded);
> => "%2Fwebcontent%2Fexample_%C3%B6l.jpg"
> String decoded = UtilCodec.getDecoder("url").decode(encoded); 
> System.out.println(decoded);
> => "/webcontent/example_öl.jpg"{code}
>  
> The reason for this is the OWASP ESAPI PercentCodec implementation used 
> within the method UtilCodec.canonicalize, called before the proper decoding 
> via java.net.URLDecoder here:
> {code:java}
> public String decode(String original) {
> try {
> String canonical = canonicalize(original);
> return URLDecoder.decode(canonical, "UTF-8");
> } catch (UnsupportedEncodingException ee) {
> Debug.logError(ee, module);
> return null;
> }
> }{code}
>  
> The fix could be to only use the canonicalize logic to check the original 
> value for double/mixed encoding and to encode the original value afterwards 
> via URLDecoder instead of using the canonicalize output for this.
>  This way the UrlCodec decode method matches the encode method by only using 
> URLDecoder / URLEncoder for doing the main job.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10276) Theme screens do not load properly

2018-03-12 Thread Michael Brohl (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10276?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16396082#comment-16396082
 ] 

Michael Brohl commented on OFBIZ-10276:
---

Hi Dennis,

any reason why the forgotPassword screen was not changed the same 
way?{color:#33}
{color}

> Theme screens do not load properly
> --
>
> Key: OFBIZ-10276
> URL: https://issues.apache.org/jira/browse/OFBIZ-10276
> Project: OFBiz
>  Issue Type: Bug
>  Components: themes
>Affects Versions: Trunk
>Reporter: Dennis Balkir
>Assignee: Michael Brohl
>Priority: Major
> Attachments: CommonScreens.patch, ForgotPasswordScreen without 
> loginBar.png, LoginScreen with loginBar.png
>
>
> The {{ForgotPassword.ftl}}, {{GetSecurityQuestion.ftl}} and 
> {{ChangePassword.ftl}} files, which are implemented in the specific themes, 
> are not correctly loaded into OFBiz.
> They get set in each theme, but because they get read out of a list, but not 
> get declared as a list, the default-screens get loaded everytime.
> This may to be unnoticed, because the {{ftl}} which are implemented in the 
> theme folders are nearly the same, except of the loginBar.
> This can be seen in the provided screenshots, since the loginBar simply 
> disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga reassigned OFBIZ-10258:
---

Assignee: (was: Sharan Foga)

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10276) Theme screens do not load properly

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl updated OFBIZ-10276:
--
Summary: Theme screens do not load properly  (was: Theme screens do not 
load porperly)

> Theme screens do not load properly
> --
>
> Key: OFBIZ-10276
> URL: https://issues.apache.org/jira/browse/OFBIZ-10276
> Project: OFBiz
>  Issue Type: Bug
>  Components: themes
>Affects Versions: Trunk
>Reporter: Dennis Balkir
>Priority: Major
> Attachments: CommonScreens.patch, ForgotPasswordScreen without 
> loginBar.png, LoginScreen with loginBar.png
>
>
> The {{ForgotPassword.ftl}}, {{GetSecurityQuestion.ftl}} and 
> {{ChangePassword.ftl}} files, which are implemented in the specific themes, 
> are not correctly loaded into OFBiz.
> They get set in each theme, but because they get read out of a list, but not 
> get declared as a list, the default-screens get loaded everytime.
> This may to be unnoticed, because the {{ftl}} which are implemented in the 
> theme folders are nearly the same, except of the loginBar.
> This can be seen in the provided screenshots, since the loginBar simply 
> disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OFBIZ-10276) Theme screens do not load properly

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl reassigned OFBIZ-10276:
-

Assignee: Michael Brohl

> Theme screens do not load properly
> --
>
> Key: OFBIZ-10276
> URL: https://issues.apache.org/jira/browse/OFBIZ-10276
> Project: OFBiz
>  Issue Type: Bug
>  Components: themes
>Affects Versions: Trunk
>Reporter: Dennis Balkir
>Assignee: Michael Brohl
>Priority: Major
> Attachments: CommonScreens.patch, ForgotPasswordScreen without 
> loginBar.png, LoginScreen with loginBar.png
>
>
> The {{ForgotPassword.ftl}}, {{GetSecurityQuestion.ftl}} and 
> {{ChangePassword.ftl}} files, which are implemented in the specific themes, 
> are not correctly loaded into OFBiz.
> They get set in each theme, but because they get read out of a list, but not 
> get declared as a list, the default-screens get loaded everytime.
> This may to be unnoticed, because the {{ftl}} which are implemented in the 
> theme folders are nearly the same, except of the loginBar.
> This can be seen in the provided screenshots, since the loginBar simply 
> disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395811#comment-16395811
 ] 

Sharan Foga commented on OFBIZ-10258:
-

Using 
[https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
  I started to add a few sample items into the hr-glossary.adoc file but it is 
not complete. This could be a good first task for someone to pick up as the hr 
glossary already exists. I will unasssign myself so that someone from the 
documentation team can look at this.

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Assignee: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Attachment: hr-glossary.adoc

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Assignee: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Attachment: (was: hr-glossary.adoc)

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Assignee: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga reassigned OFBIZ-10258:
---

Assignee: Sharan Foga

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Assignee: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-glossary.adoc file.

An existing glossary can be found

[https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]

A copy of the existing file will be attached. Please write document content for 
hr-glossary.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-glossary.adoc file.

An existing glossary can be found

[HR 
Glossary|https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary

A copy of the existing file will be attached. Please write document content for 
hr-glossary.adoc by updating the template then re-attach the updated document 
to this issue.


> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary]
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-glossary.adoc file.

An existing glossary can be found

[HR 
Glossary|https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary

A copy of the existing file will be attached. Please write document content for 
hr-glossary.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-glossary.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-glossary.adoc by updating the template then re-attach the updated document 
to this issue.


> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> An existing glossary can be found
> [HR 
> Glossary|https://cwiki.apache.org/confluence/display/OFBENDUSER/Human+Resources+Glossary
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10242) Standardise Layout throughout Applications

2018-03-12 Thread Julian Leichert (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10242?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Leichert updated OFBIZ-10242:

Attachment: OFBIZ-10242_content.DataResourceSetupScreens.patch

> Standardise Layout throughout Applications
> --
>
> Key: OFBIZ-10242
> URL: https://issues.apache.org/jira/browse/OFBIZ-10242
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL APPLICATIONS
>Reporter: Julian Leichert
>Priority: Major
> Attachments: OFBIZ-10242_common.SecurityScreens.patch, 
> OFBIZ-10242_content.ContentSetupScreens.patch, 
> OFBIZ-10242_content.DataResourceSetupScreens.patch, 
> OFBIZ-10242_content.ForumScreens.patch, 
> OFBIZ-10242_webtools.EnitityScreens.patch, 
> OFBIZ-10242_webtools.StatsScreens.patch, 
> OFBIZ_webtools.ArtifactInfoScreen.patch
>
>
> While working on a Theme I discovered that many screens are missing 
> screenlets, or some buttons are at the wrong Position etc. .
> I propose to standardise the layout of every screen, to support easy theming. 
> Similar to the examplary patch provided below.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10276) Theme screens do not load porperly

2018-03-12 Thread Dennis Balkir (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Balkir updated OFBIZ-10276:
--
Description: 
The {{ForgotPassword.ftl}}, {{GetSecurityQuestion.ftl}} and 
{{ChangePassword.ftl}} files, which are implemented in the specific themes, are 
not correctly loaded into OFBiz.

They get set in each theme, but because they get read out of a list, but not 
get declared as a list, the default-screens get loaded everytime.

This may to be unnoticed, because the {{ftl}} which are implemented in the 
theme folders are nearly the same, except of the loginBar.

This can be seen in the provided screenshots, since the loginBar simply 
disappears in the second screen and the "loginBar"-element is also gone.

  was:
I noticed, that the implemented {{ForgotPassword.ftl}}, 
{{GetSecurityQuestion.ftl}} and {{ChangePassword.ftl}} files are not correctly 
loaded into OFBiz.

They get set in each theme, but because they get read out of a list, but not 
get declared as a list, the default-screens get loaded everytime.

This may to be unnoticed, because the {{ftl}} which are implemented in the 
theme folders are nearly the same, except of the loginBar.

This can be seen in the provided screenshots, since the loginBar simply 
disappears in the second screen and the "loginBar"-element is also gone.


> Theme screens do not load porperly
> --
>
> Key: OFBIZ-10276
> URL: https://issues.apache.org/jira/browse/OFBIZ-10276
> Project: OFBiz
>  Issue Type: Bug
>  Components: themes
>Affects Versions: Trunk
>Reporter: Dennis Balkir
>Priority: Major
> Attachments: CommonScreens.patch, ForgotPasswordScreen without 
> loginBar.png, LoginScreen with loginBar.png
>
>
> The {{ForgotPassword.ftl}}, {{GetSecurityQuestion.ftl}} and 
> {{ChangePassword.ftl}} files, which are implemented in the specific themes, 
> are not correctly loaded into OFBiz.
> They get set in each theme, but because they get read out of a list, but not 
> get declared as a list, the default-screens get loaded everytime.
> This may to be unnoticed, because the {{ftl}} which are implemented in the 
> theme folders are nearly the same, except of the loginBar.
> This can be seen in the provided screenshots, since the loginBar simply 
> disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10276) Theme screens do not load porperly

2018-03-12 Thread Dennis Balkir (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dennis Balkir updated OFBIZ-10276:
--
Summary: Theme screens do not load porperly  (was: Theme screens do nit 
load porperly)

> Theme screens do not load porperly
> --
>
> Key: OFBIZ-10276
> URL: https://issues.apache.org/jira/browse/OFBIZ-10276
> Project: OFBiz
>  Issue Type: Bug
>  Components: themes
>Affects Versions: Trunk
>Reporter: Dennis Balkir
>Priority: Major
> Attachments: CommonScreens.patch, ForgotPasswordScreen without 
> loginBar.png, LoginScreen with loginBar.png
>
>
> I noticed, that the implemented {{ForgotPassword.ftl}}, 
> {{GetSecurityQuestion.ftl}} and {{ChangePassword.ftl}} files are not 
> correctly loaded into OFBiz.
> They get set in each theme, but because they get read out of a list, but not 
> get declared as a list, the default-screens get loaded everytime.
> This may to be unnoticed, because the {{ftl}} which are implemented in the 
> theme folders are nearly the same, except of the loginBar.
> This can be seen in the provided screenshots, since the loginBar simply 
> disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (OFBIZ-10276) Theme screens do nit load porperly

2018-03-12 Thread Dennis Balkir (JIRA)
Dennis Balkir created OFBIZ-10276:
-

 Summary: Theme screens do nit load porperly
 Key: OFBIZ-10276
 URL: https://issues.apache.org/jira/browse/OFBIZ-10276
 Project: OFBiz
  Issue Type: Bug
  Components: themes
Affects Versions: Trunk
Reporter: Dennis Balkir
 Attachments: CommonScreens.patch, ForgotPasswordScreen without 
loginBar.png, LoginScreen with loginBar.png

I noticed, that the implemented {{ForgotPassword.ftl}}, 
{{GetSecurityQuestion.ftl}} and {{ChangePassword.ftl}} files are not correctly 
loaded into OFBiz.

They get set in each theme, but because they get read out of a list, but not 
get declared as a list, the default-screens get loaded everytime.

This may to be unnoticed, because the {{ftl}} which are implemented in the 
theme folders are nearly the same, except of the loginBar.

This can be seen in the provided screenshots, since the loginBar simply 
disappears in the second screen and the "loginBar"-element is also gone.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10242) Standardise Layout throughout Applications

2018-03-12 Thread Julian Leichert (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10242?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Leichert updated OFBIZ-10242:

Attachment: OFBIZ-10242_content.ContentSetupScreens.patch

> Standardise Layout throughout Applications
> --
>
> Key: OFBIZ-10242
> URL: https://issues.apache.org/jira/browse/OFBIZ-10242
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL APPLICATIONS
>Reporter: Julian Leichert
>Priority: Major
> Attachments: OFBIZ-10242_common.SecurityScreens.patch, 
> OFBIZ-10242_content.ContentSetupScreens.patch, 
> OFBIZ-10242_content.ForumScreens.patch, 
> OFBIZ-10242_webtools.EnitityScreens.patch, 
> OFBIZ-10242_webtools.StatsScreens.patch, 
> OFBIZ_webtools.ArtifactInfoScreen.patch
>
>
> While working on a Theme I discovered that many screens are missing 
> screenlets, or some buttons are at the wrong Position etc. .
> I propose to standardise the layout of every screen, to support easy theming. 
> Similar to the examplary patch provided below.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10221) Improve layout and structure of forms

2018-03-12 Thread Julian Leichert (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Leichert updated OFBIZ-10221:

Attachment: OFBIZ-10221_content.content.ContentSearchOptions.patch

> Improve layout and structure of forms
> -
>
> Key: OFBIZ-10221
> URL: https://issues.apache.org/jira/browse/OFBIZ-10221
> Project: OFBiz
>  Issue Type: Improvement
>Reporter: Julian Leichert
>Assignee: Michael Brohl
>Priority: Major
> Fix For: 17.12.01
>
> Attachments: OFBIZ-10221_content.content.ContentSearchOptions.patch, 
> OFBIZ-10221_product.template.AddMultipleImages.patch, 
> OFBIZ-10221_product.template.Main.patch, 
> OFBIZ-10221_webtools.entity.ArtifactInfo.patch, 
> OFBIZ-10221_webtools.entity.CheckDb.patch, 
> OFBIZ-10221_webtools.entity.EntityExportAll.patch, 
> OFBIZ-10221_webtools.entity.EntityImport.patch, 
> OFBIZ-10221_webtools.entity.EntityImportDir.patch, 
> OFBIZ-10221_webtools.entity.EntityImportReaders.patch, 
> OFBIZ-10221_webtools.entity.FetchLogs.patch, 
> OFBIZ-10221_webtools.entity.ViewDataFile.patch, 
> OFBIZ-10221_webtools.entity.XmlDsDump.patch
>
>
> While working at a Theme, i discovered that the forms differ in their style 
> and structure.
>  I propose a standard form-structure, so that further styling and look is 
> coherent.
>  I.e. class definitions ( class="basic-form") are often missing, input-fields 
> vary in size and the layout does not follow a standard structure.
> As mentioned in 
> [https://lists.apache.org/thread.html/3654e2f8ee3a7f8d6dd6e9dfe8b4184d11d4609a811daa03f6ab2805@%3Cdev.ofbiz.apache.org%3E]
> I have attached an example patch, which modifies a form defined in FreeMarker 
> to conform it to the forms defined in any *Forms.xml.
> Often those forms within FreeMarker templates differ from most other forms in 
> Ofbiz,
> I propose a refactoring of these FreeMarker forms, to equalize all forms.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10242) Standardise Layout throughout Applications

2018-03-12 Thread Julian Leichert (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10242?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Leichert updated OFBIZ-10242:

Attachment: OFBIZ-10242_content.ForumScreens.patch

> Standardise Layout throughout Applications
> --
>
> Key: OFBIZ-10242
> URL: https://issues.apache.org/jira/browse/OFBIZ-10242
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL APPLICATIONS
>Reporter: Julian Leichert
>Priority: Major
> Attachments: OFBIZ-10242_common.SecurityScreens.patch, 
> OFBIZ-10242_content.ForumScreens.patch, 
> OFBIZ-10242_webtools.EnitityScreens.patch, 
> OFBIZ-10242_webtools.StatsScreens.patch, 
> OFBIZ_webtools.ArtifactInfoScreen.patch
>
>
> While working on a Theme I discovered that many screens are missing 
> screenlets, or some buttons are at the wrong Position etc. .
> I propose to standardise the layout of every screen, to support easy theming. 
> Similar to the examplary patch provided below.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10275) UtilCodec URL decoding breaks values with german umlauts

2018-03-12 Thread Martin Becker (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Becker updated OFBIZ-10275:
--
Attachment: OFBIZ-10275_UrlCodec_decode_via_URLDecoder.patch

> UtilCodec URL decoding breaks values with german umlauts
> 
>
> Key: OFBIZ-10275
> URL: https://issues.apache.org/jira/browse/OFBIZ-10275
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Trunk
>Reporter: Martin Becker
>Priority: Major
> Attachments: OFBIZ-10275_UrlCodec_decode_via_URLDecoder.patch
>
>
> ...and other UTF-8 characters encoded in two hex. values like in this example:
> {code:java}
> String example = "/webcontent/example_öl.jpg";
> String encoded = UtilCodec.getEncoder("url").encode(example);
> System.out.println(encoded);
> => "%2Fwebcontent%2Fexample_%C3%B6l.jpg"
> String decoded = UtilCodec.getDecoder("url").decode(encoded); 
> System.out.println(decoded);
> => "/webcontent/example_öl.jpg"{code}
>  
> The reason for this is the OWASP ESAPI PercentCodec implementation used 
> within the method UtilCodec.canonicalize, called before the proper decoding 
> via java.net.URLDecoder here:
> {code:java}
> public String decode(String original) {
> try {
> String canonical = canonicalize(original);
> return URLDecoder.decode(canonical, "UTF-8");
> } catch (UnsupportedEncodingException ee) {
> Debug.logError(ee, module);
> return null;
> }
> }{code}
>  
> The fix could be to only use the canonicalize logic to check the original 
> value for double/mixed encoding and to encode the original value afterwards 
> via URLDecoder instead of using the canonicalize output for this.
>  This way the UrlCodec decode method matches the encode method by only using 
> URLDecoder / URLEncoder for doing the main job.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (OFBIZ-10275) UtilCodec URL decoding breaks values with german umlauts

2018-03-12 Thread Martin Becker (JIRA)
Martin Becker created OFBIZ-10275:
-

 Summary: UtilCodec URL decoding breaks values with german umlauts
 Key: OFBIZ-10275
 URL: https://issues.apache.org/jira/browse/OFBIZ-10275
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Trunk
Reporter: Martin Becker


...and other UTF-8 characters encoded in two hex. values like in this example:
{code:java}
String example = "/webcontent/example_öl.jpg";
String encoded = UtilCodec.getEncoder("url").encode(example);
System.out.println(encoded);
=> "%2Fwebcontent%2Fexample_%C3%B6l.jpg"

String decoded = UtilCodec.getDecoder("url").decode(encoded); 
System.out.println(decoded);
=> "/webcontent/example_öl.jpg"{code}
 

The reason for this is the OWASP ESAPI PercentCodec implementation used within 
the method UtilCodec.canonicalize, called before the proper decoding via 
java.net.URLDecoder here:
{code:java}
public String decode(String original) {
try {
String canonical = canonicalize(original);
return URLDecoder.decode(canonical, "UTF-8");
} catch (UnsupportedEncodingException ee) {
Debug.logError(ee, module);
return null;
}
}{code}
 

The fix could be to only use the canonicalize logic to check the original value 
for double/mixed encoding and to encode the original value afterwards via 
URLDecoder instead of using the canonicalize output for this.
 This way the UrlCodec decode method matches the encode method by only using 
URLDecoder / URLEncoder for doing the main job.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10274) Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to unavailable alternate locale content

2018-03-12 Thread Martin Becker (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395298#comment-16395298
 ] 

Martin Becker commented on OFBIZ-10274:
---

OFBIZ-6262 introduced this bug because of a misunderstanding of the content 
locale model...

> Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to 
> unavailable alternate locale content
> -
>
> Key: OFBIZ-10274
> URL: https://issues.apache.org/jira/browse/OFBIZ-10274
> Project: OFBiz
>  Issue Type: Bug
>  Components: product
>Affects Versions: Trunk
>Reporter: Martin Becker
>Priority: Major
> Attachments: OFBIZ-10274_CategoryContentWrapper_alternateLocale.patch
>
>
> The current logic in CategoryContentWrapper tries to find a 
> ProductCategoryContent related Content object for the session locale or 
> configured fallback locale. This could make sense, if there are multiple 
> ProductCategoryContent entries of same type but different languages. However 
> the standard model to define alternate locale contents is to have ONE 
> ProductCategoryContent and different locale contents assigned to it via a 
> ContentAssocs. This is exactly what the ContentWorker.renderContentAsText 
> logic resolves for the caller putting in the parent contentId, as it it used 
> in the ProductContentWrapper and others.
> Therefore the content persistet correctly as alternate locale content is 
> currently not accessible via CategoryContentWrapper!
> FIX: Remove wrong locale/fallbackLocale logic which ignores the correct 
> alternate locale content model to let CategoryContentWorker work like 
> ProductContentWrapper with alternate locale content logic in ContentWorker.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10274) Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to unavailable alternate locale content

2018-03-12 Thread Martin Becker (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Becker updated OFBIZ-10274:
--
Attachment: OFBIZ-10274_CategoryContentWrapper_alternateLocale.patch

> Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to 
> unavailable alternate locale content
> -
>
> Key: OFBIZ-10274
> URL: https://issues.apache.org/jira/browse/OFBIZ-10274
> Project: OFBiz
>  Issue Type: Bug
>  Components: product
>Affects Versions: Trunk
>Reporter: Martin Becker
>Priority: Major
> Attachments: OFBIZ-10274_CategoryContentWrapper_alternateLocale.patch
>
>
> The current logic in CategoryContentWrapper tries to find a 
> ProductCategoryContent related Content object for the session locale or 
> configured fallback locale. This could make sense, if there are multiple 
> ProductCategoryContent entries of same type but different languages. However 
> the standard model to define alternate locale contents is to have ONE 
> ProductCategoryContent and different locale contents assigned to it via a 
> ContentAssocs. This is exactly what the ContentWorker.renderContentAsText 
> logic resolves for the caller putting in the parent contentId, as it it used 
> in the ProductContentWrapper and others.
> Therefore the content persistet correctly as alternate locale content is 
> currently not accessible via CategoryContentWrapper!
> FIX: Remove wrong locale/fallbackLocale logic which ignores the correct 
> alternate locale content model to let CategoryContentWorker work like 
> ProductContentWrapper with alternate locale content logic in ContentWorker.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (OFBIZ-10274) Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to unavailable alternate locale content

2018-03-12 Thread Martin Becker (JIRA)
Martin Becker created OFBIZ-10274:
-

 Summary: Wrong locale/fallbackLocale logic in 
CategoryContentWrapper leads to unavailable alternate locale content
 Key: OFBIZ-10274
 URL: https://issues.apache.org/jira/browse/OFBIZ-10274
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: Trunk
Reporter: Martin Becker


The current logic in CategoryContentWrapper tries to find a 
ProductCategoryContent related Content object for the session locale or 
configured fallback locale. This could make sense, if there are multiple 
ProductCategoryContent entries of same type but different languages. However 
the standard model to define alternate locale contents is to have ONE 
ProductCategoryContent and different locale contents assigned to it via a 
ContentAssocs. This is exactly what the ContentWorker.renderContentAsText logic 
resolves for the caller putting in the parent contentId, as it it used in the 
ProductContentWrapper and others.

Therefore the content persistet correctly as alternate locale content is 
currently not accessible via CategoryContentWrapper!

FIX: Remove wrong locale/fallbackLocale logic which ignores the correct 
alternate locale content model to let CategoryContentWorker work like 
ProductContentWrapper with alternate locale content logic in ContentWorker.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10221) Improve layout and structure of forms

2018-03-12 Thread Julian Leichert (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Leichert updated OFBIZ-10221:

Attachment: OFBIZ-10221_product.template.AddMultipleImages.patch

> Improve layout and structure of forms
> -
>
> Key: OFBIZ-10221
> URL: https://issues.apache.org/jira/browse/OFBIZ-10221
> Project: OFBiz
>  Issue Type: Improvement
>Reporter: Julian Leichert
>Assignee: Michael Brohl
>Priority: Major
> Fix For: 17.12.01
>
> Attachments: OFBIZ-10221_product.template.AddMultipleImages.patch, 
> OFBIZ-10221_product.template.Main.patch, 
> OFBIZ-10221_webtools.entity.ArtifactInfo.patch, 
> OFBIZ-10221_webtools.entity.CheckDb.patch, 
> OFBIZ-10221_webtools.entity.EntityExportAll.patch, 
> OFBIZ-10221_webtools.entity.EntityImport.patch, 
> OFBIZ-10221_webtools.entity.EntityImportDir.patch, 
> OFBIZ-10221_webtools.entity.EntityImportReaders.patch, 
> OFBIZ-10221_webtools.entity.FetchLogs.patch, 
> OFBIZ-10221_webtools.entity.ViewDataFile.patch, 
> OFBIZ-10221_webtools.entity.XmlDsDump.patch
>
>
> While working at a Theme, i discovered that the forms differ in their style 
> and structure.
>  I propose a standard form-structure, so that further styling and look is 
> coherent.
>  I.e. class definitions ( class="basic-form") are often missing, input-fields 
> vary in size and the layout does not follow a standard structure.
> As mentioned in 
> [https://lists.apache.org/thread.html/3654e2f8ee3a7f8d6dd6e9dfe8b4184d11d4609a811daa03f6ab2805@%3Cdev.ofbiz.apache.org%3E]
> I have attached an example patch, which modifies a form defined in FreeMarker 
> to conform it to the forms defined in any *Forms.xml.
> Often those forms within FreeMarker templates differ from most other forms in 
> Ofbiz,
> I propose a refactoring of these FreeMarker forms, to equalize all forms.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10271) Add Document Content: hr-global-settings.adoc

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl updated OFBIZ-10271:
--
Summary: Add Document Content: hr-global-settings.adoc  (was: Add Document 
Content: hr-global-settiings.adoc)

> Add Document Content: hr-global-settings.adoc
> -
>
> Key: OFBIZ-10271
> URL: https://issues.apache.org/jira/browse/OFBIZ-10271
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-global-settings.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-global-ettings.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-global-settings.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10271) Add Document Content: hr-global-settiings.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10271:

Attachment: hr-global-settings.adoc

> Add Document Content: hr-global-settiings.adoc
> --
>
> Key: OFBIZ-10271
> URL: https://issues.apache.org/jira/browse/OFBIZ-10271
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-global-settings.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-global-ettings.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-global-settings.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10271) Add Document Content: hr-global-settiings.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10271:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-global-ettings.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-global-settings.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
human-resources-global-ettings.adoc file.

A copy of the existing file will be attached. Please write document content for 
human-resources-global-settings.adoc by updating the template then re-attach 
the updated document to this issue.

Summary: Add Document Content: hr-global-settiings.adoc  (was: Add 
Document Content: human-resources-global-settiings.adoc)

> Add Document Content: hr-global-settiings.adoc
> --
>
> Key: OFBIZ-10271
> URL: https://issues.apache.org/jira/browse/OFBIZ-10271
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-global-settings.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-global-ettings.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-global-settings.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10270) Add Document Content: hr-security.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10270:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-security.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-security.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
human-resources-security.adoc file.

A copy of the existing file will be attached. Please write document content for 
human-resources-security.adoc by updating the template then re-attach the 
updated document to this issue.

Summary: Add Document Content: hr-security.adoc  (was: Add Document 
Content: human-resources-security.adoc)

> Add Document Content: hr-security.adoc
> --
>
> Key: OFBIZ-10270
> URL: https://issues.apache.org/jira/browse/OFBIZ-10270
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-security.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-security.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-security.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10270) Add Document Content: hr-security.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10270:

Attachment: hr-security.adoc

> Add Document Content: hr-security.adoc
> --
>
> Key: OFBIZ-10270
> URL: https://issues.apache.org/jira/browse/OFBIZ-10270
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-security.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-security.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-security.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10268) Add Document Content: hr-training.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10268:

Attachment: hr-training.adoc

> Add Document Content: hr-training.adoc
> --
>
> Key: OFBIZ-10268
> URL: https://issues.apache.org/jira/browse/OFBIZ-10268
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-training.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-training.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-training.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10269) Add Document Content: hr-leave.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10269:

Attachment: hr-leave.adoc

> Add Document Content: hr-leave.adoc
> ---
>
> Key: OFBIZ-10269
> URL: https://issues.apache.org/jira/browse/OFBIZ-10269
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-leave.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-leave.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-leave.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10268) Add Document Content: hr-training.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10268:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-training.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-training.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
training.adoc file.

A copy of the existing file will be attached. Please write document content for 
training.adoc by updating the template then re-attach the updated document to 
this issue.

Summary: Add Document Content: hr-training.adoc  (was: Add Document 
Content: training.adoc)

> Add Document Content: hr-training.adoc
> --
>
> Key: OFBIZ-10268
> URL: https://issues.apache.org/jira/browse/OFBIZ-10268
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-training.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-training.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10267) Add Document Content: hr-resumes.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10267?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10267:

Attachment: hr-resumes.adoc

> Add Document Content: hr-resumes.adoc
> -
>
> Key: OFBIZ-10267
> URL: https://issues.apache.org/jira/browse/OFBIZ-10267
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-resumes.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-resumes.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-resumes.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10267) Add Document Content: hr-resumes.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10267?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10267:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-resumes.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-resumes.adoc by updating the template then re-attach the updated document to 
this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
resumes.adoc file.

A copy of the existing file will be attached. Please write document content for 
resumes.adoc by updating the template then re-attach the updated document to 
this issue.

Summary: Add Document Content: hr-resumes.adoc  (was: Add Document 
Content: resumes.adoc)

> Add Document Content: hr-resumes.adoc
> -
>
> Key: OFBIZ-10267
> URL: https://issues.apache.org/jira/browse/OFBIZ-10267
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-resumes.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-resumes.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10266) Add Document Content: hr-skills.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10266?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10266:

Summary: Add Document Content: hr-skills.adoc  (was: Add Document Content: 
skills.adoc)

> Add Document Content: hr-skills.adoc
> 
>
> Key: OFBIZ-10266
> URL: https://issues.apache.org/jira/browse/OFBIZ-10266
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-skills.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the skills.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for skills.adoc by updating the template then re-attach the updated document 
> to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10266) Add Document Content: hr-skills.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10266?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10266:

Attachment: hr-skills.adoc

> Add Document Content: hr-skills.adoc
> 
>
> Key: OFBIZ-10266
> URL: https://issues.apache.org/jira/browse/OFBIZ-10266
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-skills.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-skills.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-skills.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10266) Add Document Content: hr-skills.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10266?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10266:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-skills.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-skills.adoc by updating the template then re-attach the updated document to 
this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
skills.adoc file.

A copy of the existing file will be attached. Please write document content for 
skills.adoc by updating the template then re-attach the updated document to 
this issue.


> Add Document Content: hr-skills.adoc
> 
>
> Key: OFBIZ-10266
> URL: https://issues.apache.org/jira/browse/OFBIZ-10266
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-skills.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-skills.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-skills.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10265) Add Document Content: hr-recruitment.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10265:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-recruitment.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-recruitment.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
recruitment.adoc file.

A copy of the existing file will be attached. Please write document content for 
recruitment.adoc by updating the template then re-attach the updated document 
to this issue.

Summary: Add Document Content: hr-recruitment.adoc  (was: Add Document 
Content: recruitment.adoc)

> Add Document Content: hr-recruitment.adoc
> -
>
> Key: OFBIZ-10265
> URL: https://issues.apache.org/jira/browse/OFBIZ-10265
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-recruitment.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-recruitment.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-recruitment.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10251) Move Human Resources Guide into OFBiz Asciidoc Framework

2018-03-12 Thread Michael Brohl (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395138#comment-16395138
 ] 

Michael Brohl commented on OFBIZ-10251:
---

Thank you, Sharan. We  can restructure any time, maybe best when all the 
content is put in the templates and we can see the resulting document as a 
whole.

> Move Human Resources Guide into OFBiz Asciidoc Framework
> 
>
> Key: OFBIZ-10251
> URL: https://issues.apache.org/jira/browse/OFBIZ-10251
> Project: OFBiz
>  Issue Type: Task
>Reporter: Sharan Foga
>Priority: Minor
>  Labels: documentation, humanres
>
> This is a general umbrella issue for managing the creation and migration of 
> all OFBiz related Human Resources documentation into the OFBiz code base.
> Subtasks will be created for each of the documents that need to be created. 
> Also created as a sub task will the task to create empty documents for each 
> of the sub-files in the list
> An initial list is as follows:
>  # human-resources.adoc
>  # human-resources-intro.adoc
>  # employee-evaluations.adoc
>  # human-resources-glossary.adoc
>  # employee-positions.adoc
>  # employees.adoc
>  # employments.adoc
>  # performance-review.adoc
>  # positions.adoc
>  # qualifications.adoc
>  # recruitment.adoc
>  # skiils.adoc
>  # resumes.adoc
>  # training.adoc
>  # leave.adoc
>  # human-resources-security.adoc
>  # human-resources-global-settings.adoc
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10264) Add Document Content: hr-qualifications.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10264?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10264:

Attachment: hr-qualifications.adoc

> Add Document Content: hr-qualifications.adoc
> 
>
> Key: OFBIZ-10264
> URL: https://issues.apache.org/jira/browse/OFBIZ-10264
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-qualifications.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-qualifications.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-qualifications.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10264) Add Document Content: hr-qualifications.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10264?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10264:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-qualifications.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-qualifications.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
qualifications.adoc file.

A copy of the existing file will be attached. Please write document content for 
qualifications.adoc by updating the template then re-attach the updated 
document to this issue.

Summary: Add Document Content: hr-qualifications.adoc  (was: Add 
Document Content: qualifications.adoc)

> Add Document Content: hr-qualifications.adoc
> 
>
> Key: OFBIZ-10264
> URL: https://issues.apache.org/jira/browse/OFBIZ-10264
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-qualifications.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-qualifications.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-qualifications.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10263) Add Document Content: hr-positions.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10263:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-positions.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-positions.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
positions.adoc file.

A copy of the existing file will be attached. Please write document content for 
positions.adoc by updating the template then re-attach the updated document to 
this issue.

Summary: Add Document Content: hr-positions.adoc  (was: Add Document 
Content: positions.adoc)

> Add Document Content: hr-positions.adoc
> ---
>
> Key: OFBIZ-10263
> URL: https://issues.apache.org/jira/browse/OFBIZ-10263
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-positions.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-positions.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-positions.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10263) Add Document Content: hr-positions.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10263:

Attachment: hr-positions.adoc

> Add Document Content: hr-positions.adoc
> ---
>
> Key: OFBIZ-10263
> URL: https://issues.apache.org/jira/browse/OFBIZ-10263
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-positions.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-positions.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-positions.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Closed] (OFBIZ-10254) Create Empty Document templates for Human Resources Documentation

2018-03-12 Thread Michael Brohl (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Brohl closed OFBIZ-10254.
-
Resolution: Implemented

The changes are committed in r1826538 with minor changes:
 * renamed main document to humanres.adoc
 * placed the includes  for accounting and humanres under the plugins section

I'm not quite sure about the overall document structure yet but I found it 
strange to have the core business applications at the 4th level. Maybe the 
"Core Applications" section should only serve as a brief introduction for the 
projects structure.

> Create Empty Document templates for Human Resources Documentation
> -
>
> Key: OFBIZ-10254
> URL: https://issues.apache.org/jira/browse/OFBIZ-10254
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: humanres
>Reporter: Sharan Foga
>Assignee: Michael Brohl
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-10254_create_empty_document_templates.patch
>
>
> This task is to create empty ascii doc files for each of Human Resource 
> document.
> In humanres/src/docs/asciidoc add human-resouces.adoc
> and all the rest in
> humanres/ src/docs/asciidoc/_include/



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10261) Add Document Content: hr-employments.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10261?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10261:

Attachment: hr-employments.adoc

> Add Document Content: hr-employments.adoc
> -
>
> Key: OFBIZ-10261
> URL: https://issues.apache.org/jira/browse/OFBIZ-10261
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-employments.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employments.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employments.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10262) Add Document Content: hr-performance-review.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10262?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10262:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-performance-review.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-performance-review.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
performance-review.adoc file.

A copy of the existing file will be attached. Please write document content for 
performance-review.adoc by updating the template then re-attach the updated 
document to this issue.

Summary: Add Document Content: hr-performance-review.adoc  (was: Add 
Document Content: performance-review.adoc)

> Add Document Content: hr-performance-review.adoc
> 
>
> Key: OFBIZ-10262
> URL: https://issues.apache.org/jira/browse/OFBIZ-10262
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-performance-review.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-performance-review.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-performance-review.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10261) Add Document Content: hr-employments.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10261?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10261:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-employments.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-employments.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
employments.adoc file.

A copy of the existing file will be attached. Please write document content for 
employments.adoc by updating the template then re-attach the updated document 
to this issue.

Summary: Add Document Content: hr-employments.adoc  (was: Add Document 
Content: employments.adoc)

> Add Document Content: hr-employments.adoc
> -
>
> Key: OFBIZ-10261
> URL: https://issues.apache.org/jira/browse/OFBIZ-10261
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employments.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employments.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10259) Add Document Content: hr-employee-positions.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10259:

Attachment: hr-employee-positions.adoc

> Add Document Content: hr-employee-positions.adoc
> 
>
> Key: OFBIZ-10259
> URL: https://issues.apache.org/jira/browse/OFBIZ-10259
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-employee-positions.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employee-positions.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employee-positions.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10259) Add Document Content: hr-employee-positions.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10259:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-employee-positions.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-employee-positions.adoc by updating the template then re-attach the updated 
document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
employee-positions.adoc file.

A copy of the existing file will be attached. Please write document content for 
employee-positions.adoc by updating the template then re-attach the updated 
document to this issue.

Summary: Add Document Content: hr-employee-positions.adoc  (was: Add 
Document Content: employee-positions.adoc)

> Add Document Content: hr-employee-positions.adoc
> 
>
> Key: OFBIZ-10259
> URL: https://issues.apache.org/jira/browse/OFBIZ-10259
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-employee-positions.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employee-positions.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employee-positions.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10260) Add Document Content: hr-employees.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10260?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10260:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc files,  write or organise the content for the 
hr-employees.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-employees.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc files,  write or organise the content for the 
employees.adoc file.

A copy of the existing file will be attached. Please write document content for 
employees.adoc by updating the template then re-attach the updated document to 
this issue.

Summary: Add Document Content: hr-employees.adoc  (was: Add Document 
Content: employees.adoc)

> Add Document Content: hr-employees.adoc
> ---
>
> Key: OFBIZ-10260
> URL: https://issues.apache.org/jira/browse/OFBIZ-10260
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc files,  write or organise the content for 
> the hr-employees.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employees.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-glossary.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-glossary.adoc by updating the template then re-attach the updated document 
to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
human-resources-glossary.adoc file.

A copy of the existing file will be attached. Please write document content for 
human-resources-glossary.adoc by updating the template then re-attach the 
updated document to this issue.

Summary: Add Document Content: hr-glossary.adoc  (was: Add Document 
Content: human-resources-glossary.adoc)

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10258) Add Document Content: hr-glossary.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10258:

Attachment: hr-glossary.adoc

> Add Document Content: hr-glossary.adoc
> --
>
> Key: OFBIZ-10258
> URL: https://issues.apache.org/jira/browse/OFBIZ-10258
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-glossary.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-glossary.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-glossary.adoc by updating the template then re-attach the updated 
> document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10257) Add Document Content: hr-employee-evaluations.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10257:

Attachment: hr-employee-evaluations.adoc

> Add Document Content: hr-employee-evaluations.adoc
> --
>
> Key: OFBIZ-10257
> URL: https://issues.apache.org/jira/browse/OFBIZ-10257
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-employee-evaluations.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employee-evaluations.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employee-evaluations.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10257) Add Document Content: hr-employee-evaluations.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10257:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-employee-evaluations.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-employee-evaluations.adoc by updating the template then re-attach the 
updated document to this issue.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
employee-evaluations.adoc file.

A copy of the existing file will be attached. Please write document content for 
employee-evaluations.adoc by updating the template then re-attach the updated 
document to this issue.

Summary: Add Document Content: hr-employee-evaluations.adoc  (was: Add 
Document Content: employee-evaluations.adoc)

> Add Document Content: hr-employee-evaluations.adoc
> --
>
> Key: OFBIZ-10257
> URL: https://issues.apache.org/jira/browse/OFBIZ-10257
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-employee-evaluations.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-employee-evaluations.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-employee-evaluations.adoc by updating the template then re-attach the 
> updated document to this issue.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10256) Add Document Content: hr-intro.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10256:

Attachment: hr-intro.adoc

> Add Document Content: hr-intro.adoc
> ---
>
> Key: OFBIZ-10256
> URL: https://issues.apache.org/jira/browse/OFBIZ-10256
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-intro.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-intro.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-intro.adoc by updating the template then re-attach the updated 
> document to this issue.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10256) Add Document Content: hr-intro.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10256:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
hr-intro.adoc file.

A copy of the existing file will be attached. Please write document content for 
hr-intro.adoc by updating the template then re-attach the updated document to 
this issue.

 

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
human-resources.adoc file.

A copy of the existing file will be attached. Please write document content for 
human-resources-intro.adoc by updating the template then re-attach the updated 
document to this issue.

 

Summary: Add Document Content: hr-intro.adoc  (was: Add Document 
Content: human-resources-intro.adoc)

> Add Document Content: hr-intro.adoc
> ---
>
> Key: OFBIZ-10256
> URL: https://issues.apache.org/jira/browse/OFBIZ-10256
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: hr-intro.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the hr-intro.adoc file.
> A copy of the existing file will be attached. Please write document content 
> for hr-intro.adoc by updating the template then re-attach the updated 
> document to this issue.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10255) Add Document Content: humanres.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10255:

Attachment: humanres.adoc

> Add Document Content: humanres.adoc
> ---
>
> Key: OFBIZ-10255
> URL: https://issues.apache.org/jira/browse/OFBIZ-10255
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
> Attachments: humanres.adoc
>
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the humanres.adoc file.
> An copy of the existing file will be attached.
> Please update the template and re-attach it.
> NOTE: This document might not be able to be completed until other sections 
> for Human Resources are done.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10255) Add Document Content: humanres.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10255:

Attachment: human-resources.adoc

> Add Document Content: humanres.adoc
> ---
>
> Key: OFBIZ-10255
> URL: https://issues.apache.org/jira/browse/OFBIZ-10255
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the humanres.adoc file.
> An copy of the existing file will be attached.
> Please update the template and re-attach it.
> NOTE: This document might not be able to be completed until other sections 
> for Human Resources are done.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10255) Add Document Content: humanres.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10255:

Attachment: (was: human-resources.adoc)

> Add Document Content: humanres.adoc
> ---
>
> Key: OFBIZ-10255
> URL: https://issues.apache.org/jira/browse/OFBIZ-10255
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the humanres.adoc file.
> An copy of the existing file will be attached.
> Please update the template and re-attach it.
> NOTE: This document might not be able to be completed until other sections 
> for Human Resources are done.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10255) Add Document Content: humanres.adoc

2018-03-12 Thread Sharan Foga (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sharan Foga updated OFBIZ-10255:

Description: 
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
humanres.adoc file.

An copy of the existing file will be attached.

Please update the template and re-attach it.

NOTE: This document might not be able to be completed until other sections for 
Human Resources are done.

  was:
Using details from the OFBiz wiki workspaces and the Human Resources Guide and 
other human resources asciidoc file,  write or organise the content for the 
human-resources.adoc file.

An copy of the existing file will be attached.

Please update the template and re-attach it.

NOTE: This document might not be able to be completed until other sections for 
Human Resources are done.

Summary: Add Document Content: humanres.adoc  (was: Add Document 
Content: human-resources.adoc)

> Add Document Content: humanres.adoc
> ---
>
> Key: OFBIZ-10255
> URL: https://issues.apache.org/jira/browse/OFBIZ-10255
> Project: OFBiz
>  Issue Type: Sub-task
>Reporter: Sharan Foga
>Priority: Minor
>
> Using details from the OFBiz wiki workspaces and the Human Resources Guide 
> and other human resources asciidoc file,  write or organise the content for 
> the humanres.adoc file.
> An copy of the existing file will be attached.
> Please update the template and re-attach it.
> NOTE: This document might not be able to be completed until other sections 
> for Human Resources are done.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (OFBIZ-9240) Ecommerce login/logout don't work properly for trunk and stable and even old

2018-03-12 Thread Garima jain (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-9240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395083#comment-16395083
 ] 

Garima jain edited comment on OFBIZ-9240 at 3/12/18 11:44 AM:
--

Hii [~jacques.le.roux]

I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. 

!ecomseo.png!


was (Author: garima.jain):
Hii [~jacques.le.roux]

I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. 

!backend.png!

> Ecommerce login/logout don't work properly for trunk and stable and even old
> 
>
> Key: OFBIZ-9240
> URL: https://issues.apache.org/jira/browse/OFBIZ-9240
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12, 
> Release Branch 16.11
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 16.11.04
>
> Attachments: OFBIZ-9240.patch, backend.png, ecomseo.png
>
>
> Here are the tests I did and their results.  I did not consider R14/15 
> because of OFBIZ-9235
> h5. On demos before fixing OFBIZ-9206 and using ofbiz-vm2 direct access
> h6. ecomseo trunk and stable (R16)
> # Get to https://demo-trunk.ofbiz.apache.org/ecomseo/ or 
> https://demo-stable.ofbiz.apache.org/ecomseo/
> # login => main page logged in
> # logout => main page, not logged in
> # login => main page logged in
> # Use the "Not you" link => 404
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) for the "Not 
> you" link, not sure why yet.
> It"s the same locally with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. ecommerce trunk and stable (R16)
> # Get to https://ofbiz-vm2.apache.org:8443/ecommerce or 
> https://ofbiz-vm2.apache.org:18443/ecommerce
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # logout => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # use the "Not you" link => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) between in the 3 
> cases, not sure why yet.
> It's the same locally *with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. Old (R13) on demo (no ecomseo before R14)
> # Get to https://ofbiz-vm2.apache.org:28443/ecommerce
> # login => you need to enter it twice => main page logged in
> # logout => main page, not logged in
> # login  => main page logged in
> # use the "Not you" link => main page, not logged in
> So it "works" but initially you need to enter the credential twice to login
> It's the same locally *with OFBIZ-9206 "fixed" (I'm not yet sure about that, 
> I need to test on demo)*, w/ or w/o portoffset



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (OFBIZ-9240) Ecommerce login/logout don't work properly for trunk and stable and even old

2018-03-12 Thread Garima jain (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-9240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395083#comment-16395083
 ] 

Garima jain edited comment on OFBIZ-9240 at 3/12/18 11:32 AM:
--

Hii [~jacques.le.roux]

I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. 

!backend.png!


was (Author: garima.jain):
I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. 

!backend.png!

> Ecommerce login/logout don't work properly for trunk and stable and even old
> 
>
> Key: OFBIZ-9240
> URL: https://issues.apache.org/jira/browse/OFBIZ-9240
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12, 
> Release Branch 16.11
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 16.11.04
>
> Attachments: OFBIZ-9240.patch, backend.png, ecomseo.png
>
>
> Here are the tests I did and their results.  I did not consider R14/15 
> because of OFBIZ-9235
> h5. On demos before fixing OFBIZ-9206 and using ofbiz-vm2 direct access
> h6. ecomseo trunk and stable (R16)
> # Get to https://demo-trunk.ofbiz.apache.org/ecomseo/ or 
> https://demo-stable.ofbiz.apache.org/ecomseo/
> # login => main page logged in
> # logout => main page, not logged in
> # login => main page logged in
> # Use the "Not you" link => 404
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) for the "Not 
> you" link, not sure why yet.
> It"s the same locally with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. ecommerce trunk and stable (R16)
> # Get to https://ofbiz-vm2.apache.org:8443/ecommerce or 
> https://ofbiz-vm2.apache.org:18443/ecommerce
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # logout => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # use the "Not you" link => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) between in the 3 
> cases, not sure why yet.
> It's the same locally *with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. Old (R13) on demo (no ecomseo before R14)
> # Get to https://ofbiz-vm2.apache.org:28443/ecommerce
> # login => you need to enter it twice => main page logged in
> # logout => main page, not logged in
> # login  => main page logged in
> # use the "Not you" link => main page, not logged in
> So it "works" but initially you need to enter the credential twice to login
> It's the same locally *with OFBIZ-9206 "fixed" (I'm not yet sure about that, 
> I need to test on demo)*, w/ or w/o portoffset



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (OFBIZ-9240) Ecommerce login/logout don't work properly for trunk and stable and even old

2018-03-12 Thread Garima jain (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-9240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395083#comment-16395083
 ] 

Garima jain edited comment on OFBIZ-9240 at 3/12/18 11:16 AM:
--

I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. 

!backend.png!


was (Author: garima.jain):
I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. !backend.png!

> Ecommerce login/logout don't work properly for trunk and stable and even old
> 
>
> Key: OFBIZ-9240
> URL: https://issues.apache.org/jira/browse/OFBIZ-9240
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12, 
> Release Branch 16.11
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 16.11.04
>
> Attachments: OFBIZ-9240.patch, backend.png, ecomseo.png
>
>
> Here are the tests I did and their results.  I did not consider R14/15 
> because of OFBIZ-9235
> h5. On demos before fixing OFBIZ-9206 and using ofbiz-vm2 direct access
> h6. ecomseo trunk and stable (R16)
> # Get to https://demo-trunk.ofbiz.apache.org/ecomseo/ or 
> https://demo-stable.ofbiz.apache.org/ecomseo/
> # login => main page logged in
> # logout => main page, not logged in
> # login => main page logged in
> # Use the "Not you" link => 404
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) for the "Not 
> you" link, not sure why yet.
> It"s the same locally with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. ecommerce trunk and stable (R16)
> # Get to https://ofbiz-vm2.apache.org:8443/ecommerce or 
> https://ofbiz-vm2.apache.org:18443/ecommerce
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # logout => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # use the "Not you" link => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) between in the 3 
> cases, not sure why yet.
> It's the same locally *with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. Old (R13) on demo (no ecomseo before R14)
> # Get to https://ofbiz-vm2.apache.org:28443/ecommerce
> # login => you need to enter it twice => main page logged in
> # logout => main page, not logged in
> # login  => main page logged in
> # use the "Not you" link => main page, not logged in
> So it "works" but initially you need to enter the credential twice to login
> It's the same locally *with OFBIZ-9206 "fixed" (I'm not yet sure about that, 
> I need to test on demo)*, w/ or w/o portoffset



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-9240) Ecommerce login/logout don't work properly for trunk and stable and even old

2018-03-12 Thread Garima jain (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-9240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395083#comment-16395083
 ] 

Garima jain commented on OFBIZ-9240:


I spent some time around it and found that
1. If the user is currently logged in and requests for login again from URL 
then, instead of redirecting it to 'main' screen, it redirects to the login 
screen and displays the error message.

Actual: If the user is currently logged in and requests for login again from 
URL, then the user should redirect to the 'main' screen.
This issue also exists in e-commerce and backend.

To fix it: We can check the value of 'isUserLoggedIn()' in LoginWorker.java 
file. If 'isUserLoggedIn()' returns true, we can return a string "userLoggedIn" 
which we can check in the controller to redirect it to the main screen.
for reference: screenshots attached. !backend.png!

> Ecommerce login/logout don't work properly for trunk and stable and even old
> 
>
> Key: OFBIZ-9240
> URL: https://issues.apache.org/jira/browse/OFBIZ-9240
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12, 
> Release Branch 16.11
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 16.11.04
>
> Attachments: OFBIZ-9240.patch, backend.png, ecomseo.png
>
>
> Here are the tests I did and their results.  I did not consider R14/15 
> because of OFBIZ-9235
> h5. On demos before fixing OFBIZ-9206 and using ofbiz-vm2 direct access
> h6. ecomseo trunk and stable (R16)
> # Get to https://demo-trunk.ofbiz.apache.org/ecomseo/ or 
> https://demo-stable.ofbiz.apache.org/ecomseo/
> # login => main page logged in
> # logout => main page, not logged in
> # login => main page logged in
> # Use the "Not you" link => 404
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) for the "Not 
> you" link, not sure why yet.
> It"s the same locally with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. ecommerce trunk and stable (R16)
> # Get to https://ofbiz-vm2.apache.org:8443/ecommerce or 
> https://ofbiz-vm2.apache.org:18443/ecommerce
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # logout => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # use the "Not you" link => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) between in the 3 
> cases, not sure why yet.
> It's the same locally *with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. Old (R13) on demo (no ecomseo before R14)
> # Get to https://ofbiz-vm2.apache.org:28443/ecommerce
> # login => you need to enter it twice => main page logged in
> # logout => main page, not logged in
> # login  => main page logged in
> # use the "Not you" link => main page, not logged in
> So it "works" but initially you need to enter the credential twice to login
> It's the same locally *with OFBIZ-9206 "fixed" (I'm not yet sure about that, 
> I need to test on demo)*, w/ or w/o portoffset



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-9240) Ecommerce login/logout don't work properly for trunk and stable and even old

2018-03-12 Thread Garima jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-9240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Garima jain updated OFBIZ-9240:
---
Attachment: ecomseo.png
backend.png

> Ecommerce login/logout don't work properly for trunk and stable and even old
> 
>
> Key: OFBIZ-9240
> URL: https://issues.apache.org/jira/browse/OFBIZ-9240
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12, 
> Release Branch 16.11
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 16.11.04
>
> Attachments: OFBIZ-9240.patch, backend.png, ecomseo.png
>
>
> Here are the tests I did and their results.  I did not consider R14/15 
> because of OFBIZ-9235
> h5. On demos before fixing OFBIZ-9206 and using ofbiz-vm2 direct access
> h6. ecomseo trunk and stable (R16)
> # Get to https://demo-trunk.ofbiz.apache.org/ecomseo/ or 
> https://demo-stable.ofbiz.apache.org/ecomseo/
> # login => main page logged in
> # logout => main page, not logged in
> # login => main page logged in
> # Use the "Not you" link => 404
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) for the "Not 
> you" link, not sure why yet.
> It"s the same locally with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. ecommerce trunk and stable (R16)
> # Get to https://ofbiz-vm2.apache.org:8443/ecommerce or 
> https://ofbiz-vm2.apache.org:18443/ecommerce
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # logout => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> # login => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, logged in
> # use the "Not you" link => blank page (no 404 in access log)
> # Refresh (F5 key)  get you to the main page, not logged in
> So it works almost correctly but you need a refresh (F5 key) between in the 3 
> cases, not sure why yet.
> It's the same locally *with OFBIZ-9206 fixed*, w/ or w/o portoffset
> h6. Old (R13) on demo (no ecomseo before R14)
> # Get to https://ofbiz-vm2.apache.org:28443/ecommerce
> # login => you need to enter it twice => main page logged in
> # logout => main page, not logged in
> # login  => main page logged in
> # use the "Not you" link => main page, not logged in
> So it "works" but initially you need to enter the credential twice to login
> It's the same locally *with OFBIZ-9206 "fixed" (I'm not yet sure about that, 
> I need to test on demo)*, w/ or w/o portoffset



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (OFBIZ-10251) Move Human Resources Guide into OFBiz Asciidoc Framework

2018-03-12 Thread Sharan Foga (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395072#comment-16395072
 ] 

Sharan Foga edited comment on OFBIZ-10251 at 3/12/18 10:54 AM:
---

Hi Michael.  As we add more content, we will probably re-sequence the order of 
the include files in humanres.adoc but that is no big deal. I will update the 
Documentation Team wiki page to include the formatting standards you suggest, 
and once you have committed the patch, I will write some content for one of the 
areas for the team to look at.


was (Author: sharan ):
Hi Michael. Have just tested the patch and it's working fine - so thanks! As we 
add more content, we will probably re-sequence the order of the include files 
in humanres.adoc but that is no big deal. I will update the Documentation Team 
wiki page to include the formatting standards you suggest, and once you have 
committed the patch, I will write some content for one of the areas for the 
team to look at.

> Move Human Resources Guide into OFBiz Asciidoc Framework
> 
>
> Key: OFBIZ-10251
> URL: https://issues.apache.org/jira/browse/OFBIZ-10251
> Project: OFBiz
>  Issue Type: Task
>Reporter: Sharan Foga
>Priority: Minor
>  Labels: documentation, humanres
>
> This is a general umbrella issue for managing the creation and migration of 
> all OFBiz related Human Resources documentation into the OFBiz code base.
> Subtasks will be created for each of the documents that need to be created. 
> Also created as a sub task will the task to create empty documents for each 
> of the sub-files in the list
> An initial list is as follows:
>  # human-resources.adoc
>  # human-resources-intro.adoc
>  # employee-evaluations.adoc
>  # human-resources-glossary.adoc
>  # employee-positions.adoc
>  # employees.adoc
>  # employments.adoc
>  # performance-review.adoc
>  # positions.adoc
>  # qualifications.adoc
>  # recruitment.adoc
>  # skiils.adoc
>  # resumes.adoc
>  # training.adoc
>  # leave.adoc
>  # human-resources-security.adoc
>  # human-resources-global-settings.adoc
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10254) Create Empty Document templates for Human Resources Documentation

2018-03-12 Thread Sharan Foga (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395073#comment-16395073
 ] 

Sharan Foga commented on OFBIZ-10254:
-

Hi Michael. Have just tested the patch and it's working fine - so thanks! As we 
add more content, we will probably re-sequence the order of the include files 
in humanres.adoc but that is no big deal.

> Create Empty Document templates for Human Resources Documentation
> -
>
> Key: OFBIZ-10254
> URL: https://issues.apache.org/jira/browse/OFBIZ-10254
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: humanres
>Reporter: Sharan Foga
>Assignee: Michael Brohl
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-10254_create_empty_document_templates.patch
>
>
> This task is to create empty ascii doc files for each of Human Resource 
> document.
> In humanres/src/docs/asciidoc add human-resouces.adoc
> and all the rest in
> humanres/ src/docs/asciidoc/_include/



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10251) Move Human Resources Guide into OFBiz Asciidoc Framework

2018-03-12 Thread Michael Brohl (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16395027#comment-16395027
 ] 

Michael Brohl commented on OFBIZ-10251:
---

Hi Sharan,

thanks for your feedback. I'm going to commit this using humanres.adoc as the 
main template in the course of the day.

> Move Human Resources Guide into OFBiz Asciidoc Framework
> 
>
> Key: OFBIZ-10251
> URL: https://issues.apache.org/jira/browse/OFBIZ-10251
> Project: OFBiz
>  Issue Type: Task
>Reporter: Sharan Foga
>Priority: Minor
>  Labels: documentation, humanres
>
> This is a general umbrella issue for managing the creation and migration of 
> all OFBiz related Human Resources documentation into the OFBiz code base.
> Subtasks will be created for each of the documents that need to be created. 
> Also created as a sub task will the task to create empty documents for each 
> of the sub-files in the list
> An initial list is as follows:
>  # human-resources.adoc
>  # human-resources-intro.adoc
>  # employee-evaluations.adoc
>  # human-resources-glossary.adoc
>  # employee-positions.adoc
>  # employees.adoc
>  # employments.adoc
>  # performance-review.adoc
>  # positions.adoc
>  # qualifications.adoc
>  # recruitment.adoc
>  # skiils.adoc
>  # resumes.adoc
>  # training.adoc
>  # leave.adoc
>  # human-resources-security.adoc
>  # human-resources-global-settings.adoc
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10251) Move Human Resources Guide into OFBiz Asciidoc Framework

2018-03-12 Thread Sharan Foga (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16394984#comment-16394984
 ] 

Sharan Foga commented on OFBIZ-10251:
-

Hi Michael

Great idea and I really like your suggestions. The hr-.adoc format is good. 
Having a standard naming structure will make it easier to locate a document (eg 
FAQ, Security etc). One thing though - the component name for human resources 
component is humanres so for consistency the main guide should probably be 
humanres.adoc..

> Move Human Resources Guide into OFBiz Asciidoc Framework
> 
>
> Key: OFBIZ-10251
> URL: https://issues.apache.org/jira/browse/OFBIZ-10251
> Project: OFBiz
>  Issue Type: Task
>Reporter: Sharan Foga
>Priority: Minor
>  Labels: documentation, humanres
>
> This is a general umbrella issue for managing the creation and migration of 
> all OFBiz related Human Resources documentation into the OFBiz code base.
> Subtasks will be created for each of the documents that need to be created. 
> Also created as a sub task will the task to create empty documents for each 
> of the sub-files in the list
> An initial list is as follows:
>  # human-resources.adoc
>  # human-resources-intro.adoc
>  # employee-evaluations.adoc
>  # human-resources-glossary.adoc
>  # employee-positions.adoc
>  # employees.adoc
>  # employments.adoc
>  # performance-review.adoc
>  # positions.adoc
>  # qualifications.adoc
>  # recruitment.adoc
>  # skiils.adoc
>  # resumes.adoc
>  # training.adoc
>  # leave.adoc
>  # human-resources-security.adoc
>  # human-resources-global-settings.adoc
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10241) orderSkipInvoice, complete an order without generating an invoice

2018-03-12 Thread Michael Brohl (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10241?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16394964#comment-16394964
 ] 

Michael Brohl commented on OFBIZ-10241:
---

Some remarks from Taher in the dev mailing list:

Hi Antoine,

Thank you for your work and I hope we get to work with you more often. I have a 
few comments / questions:
 * First of all, you added a postgres dependency to the build file (probably by 
mistake?).
 * perhaps others can pitch in but I'm not sure if it is useful to introduce? 
Is this a common need or more of a specific custom requirement?
 * Also, why an indicator? Why not for example just a different status workflow 
instead?

> orderSkipInvoice, complete an order without generating an invoice
> -
>
> Key: OFBIZ-10241
> URL: https://issues.apache.org/jira/browse/OFBIZ-10241
> Project: OFBiz
>  Issue Type: Improvement
>Reporter: Antoine Ouvrard
>Priority: Minor
> Attachments: OFBIZ-10241-order-skip-invoice-parameter.patch
>
>
> In some case, we need to delay billing at the end of the month for
> example.
> But to complete the order we need to disable triggering the
> invoice generation.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (OFBIZ-10273) Update postgres datasource name in entityengine file for consistency

2018-03-12 Thread Deepak Dixit (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10273?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Deepak Dixit updated OFBIZ-10273:
-
Fix Version/s: 17.12.01

> Update postgres datasource name in entityengine file for consistency  
> --
>
> Key: OFBIZ-10273
> URL: https://issues.apache.org/jira/browse/OFBIZ-10273
> Project: OFBiz
>  Issue Type: Improvement
>Reporter: Deepak Dixit
>Assignee: Deepak Dixit
>Priority: Major
> Fix For: 17.12.01
>
>
> There is inconsistency for localpostgres datasource
> for transnational datasource name is localpostgres
> and for olap, tenant its localpostolap and localposttenant.
>  
> Update olap and tenant datasource name and use localpostgresolap and 
> localpostgrestenant for consistency.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Closed] (OFBIZ-10273) Update postgres datasource name in entityengine file for consistency

2018-03-12 Thread Deepak Dixit (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-10273?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Deepak Dixit closed OFBIZ-10273.

Resolution: Done

This has been done at

ofbiz framework trunk at r#1826502 and

ofbiz framework R17.12 at r#1826503

 

> Update postgres datasource name in entityengine file for consistency  
> --
>
> Key: OFBIZ-10273
> URL: https://issues.apache.org/jira/browse/OFBIZ-10273
> Project: OFBiz
>  Issue Type: Improvement
>Reporter: Deepak Dixit
>Assignee: Deepak Dixit
>Priority: Major
>
> There is inconsistency for localpostgres datasource
> for transnational datasource name is localpostgres
> and for olap, tenant its localpostolap and localposttenant.
>  
> Update olap and tenant datasource name and use localpostgresolap and 
> localpostgrestenant for consistency.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)