[jira] [Commented] (OFBIZ-7532) Form Display Field improvement to manage multiple number format

2019-04-05 Thread Nicolas Malin (JIRA)


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

Nicolas Malin commented on OFBIZ-7532:
--

Hello,

I will continue Charle's idea :), as I announced on [mailing 
list|https://lists.apache.org/thread.html/557de68373ca5592d709cea2326f945cb97d617e230d2b3806c3e659@%3Cdev.ofbiz.apache.org%3E],
 it's an other vision that more homogenize than the first patch, this 
[^OFBIZ-7532.patch] push idea on all ofbiz with a refactoring of all 
UtilFormatOut.format*Number* to slim source code.

 

> Form Display Field improvement to manage multiple number format
> ---
>
> Key: OFBIZ-7532
> URL: https://issues.apache.org/jira/browse/OFBIZ-7532
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
>Reporter: Charles STELTZLEN
>Assignee: Jacques Le Roux
>Priority: Minor
> Attachments: OFBIZ-7532.patch, OFBIZ-7532.patch
>
>
> On display field used in forms, there is a "type" "accounting-number" which 
> is used to format number like property configuration :  
> #,##0.;(#,##0.).
> This JIRA propose to extend this idea by using a "type" "number" and an 
> additional attribute called "format-pattern". This field will be used by form 
> renderer to get the good property. It use FlexibleString to manage variable 
> in this field and so allow to have different format for the same column 
> according to some conditions.
> example:  format-pattern="accounting"/>
> The "format-pattern" will be stored in arithmetic.properties.
> example:
> # the default number format 
> default.number.format = ##0.00
> accounting.number.format = #,##0.;(#,##0.)
> quantity.number.format = ##0.00
> integer-quantity.number.format = #0
> percentage.number.format = ##.##%
> export.number.format = #.00
> In ModelFormField.java, the system gets property using 
> EntityUtilProperties.getPropertyValue to ba able to quickly add a new format.
> I think that it will require a discussion on Dev mailing-list to validate the 
> choices.



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


[jira] [Updated] (OFBIZ-7532) Form Display Field improvement to manage multiple number format

2019-04-05 Thread Nicolas Malin (JIRA)


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

Nicolas Malin updated OFBIZ-7532:
-
Attachment: OFBIZ-7532.patch

> Form Display Field improvement to manage multiple number format
> ---
>
> Key: OFBIZ-7532
> URL: https://issues.apache.org/jira/browse/OFBIZ-7532
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
>Reporter: Charles STELTZLEN
>Assignee: Jacques Le Roux
>Priority: Minor
> Attachments: OFBIZ-7532.patch, OFBIZ-7532.patch
>
>
> On display field used in forms, there is a "type" "accounting-number" which 
> is used to format number like property configuration :  
> #,##0.;(#,##0.).
> This JIRA propose to extend this idea by using a "type" "number" and an 
> additional attribute called "format-pattern". This field will be used by form 
> renderer to get the good property. It use FlexibleString to manage variable 
> in this field and so allow to have different format for the same column 
> according to some conditions.
> example:  format-pattern="accounting"/>
> The "format-pattern" will be stored in arithmetic.properties.
> example:
> # the default number format 
> default.number.format = ##0.00
> accounting.number.format = #,##0.;(#,##0.)
> quantity.number.format = ##0.00
> integer-quantity.number.format = #0
> percentage.number.format = ##.##%
> export.number.format = #.00
> In ModelFormField.java, the system gets property using 
> EntityUtilProperties.getPropertyValue to ba able to quickly add a new format.
> I think that it will require a discussion on Dev mailing-list to validate the 
> choices.



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


[jira] [Commented] (OFBIZ-9905) Use "Create" instead of "Create New" on the various screens of all components

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux commented on OFBIZ-9905:


Hi sourabh,

In the last patch I see no removing of the now unused(?) labels, normal?

Actually it maybe makes sense because if I takes the 1st one: 
AccountingCreateNewInvoice. You replace it in InvoiceSubTabBar but it's still 
used in NewInvoice screen. Is it voluntarily that you let this instance, either 
in the labels file or in the screen?

> Use "Create" instead of "Create New" on the various screens of all components
> -
>
> Key: OFBIZ-9905
> URL: https://issues.apache.org/jira/browse/OFBIZ-9905
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
> Environment: 
> https://demo-trunk.ofbiz.apache.org/accounting/control/EditAgreement
>Reporter: Aayush jain
>Assignee: Jacques Le Roux
>Priority: Minor
> Attachments: OFBIZ-9905.patch, OFBIZ-9905.patch, OFBIZ-9905.patch, 
> UI_label .png
>
>
> Following issues found:
> 1. Create Agreement opens an edit agreement window
> 2. Able to Create Agreement without any detail (empty Agreement) 
> Steps:
> 1. Open URL 
> https://demo-trunk.ofbiz.apache.org/accounting/control/FindAgreement
> 2. Navigate to Agreement section
> 3. Click on create Agreement
> 4. Click submit button
> Actual: Agreement id is generated for empty agreement and when create window 
> opens, it's redirection is wrong to edit window
> Expected: Proper redirection should be there (create agreement) and if an 
> agreement is created without any details its of no use.
> Note: Same Issue exist with following screens:
> 1. Billing Account 
> 2. Tax Authority 
> 3. Agreement 
> 4. Fixed Asset 
> 5. Vendor 
> 6. WebSite
> 7. Blog 
> 8. Employment
> 9. Employee Position 
> 10.Performance Review  
> 11.Job Requisition 
> 12. Party Resume



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


[jira] [Assigned] (OFBIZ-9905) Use "Create" instead of "Create New" on the various screens of all components

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux reassigned OFBIZ-9905:
--

Assignee: Jacques Le Roux  (was: sourabh jain)

> Use "Create" instead of "Create New" on the various screens of all components
> -
>
> Key: OFBIZ-9905
> URL: https://issues.apache.org/jira/browse/OFBIZ-9905
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
> Environment: 
> https://demo-trunk.ofbiz.apache.org/accounting/control/EditAgreement
>Reporter: Aayush jain
>Assignee: Jacques Le Roux
>Priority: Minor
> Attachments: OFBIZ-9905.patch, OFBIZ-9905.patch, OFBIZ-9905.patch, 
> UI_label .png
>
>
> Following issues found:
> 1. Create Agreement opens an edit agreement window
> 2. Able to Create Agreement without any detail (empty Agreement) 
> Steps:
> 1. Open URL 
> https://demo-trunk.ofbiz.apache.org/accounting/control/FindAgreement
> 2. Navigate to Agreement section
> 3. Click on create Agreement
> 4. Click submit button
> Actual: Agreement id is generated for empty agreement and when create window 
> opens, it's redirection is wrong to edit window
> Expected: Proper redirection should be there (create agreement) and if an 
> agreement is created without any details its of no use.
> Note: Same Issue exist with following screens:
> 1. Billing Account 
> 2. Tax Authority 
> 3. Agreement 
> 4. Fixed Asset 
> 5. Vendor 
> 6. WebSite
> 7. Blog 
> 8. Employment
> 9. Employee Position 
> 10.Performance Review  
> 11.Job Requisition 
> 12. Party Resume



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


[jira] [Comment Edited] (OFBIZ-9905) Use "Create" instead of "Create New" on the various screens of all components

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux edited comment on OFBIZ-9905 at 4/5/19 1:27 PM:


Thanks Sourabh for great work!


was (Author: aayush.jain):
Thanks Sourabh for great work!


-- 
Confidentiality Notice: This e-mail message, including attachments, is for
the sole use of the intended recipient(s) and may contain confidential or
privileged information. If you are not the intended recipient, please
notify the sender by reply e-mail, delete this transmission and any
attachments immediately, and destroy all copies. Any unauthorized review,
use, disclosure or distribution is prohibited.


> Use "Create" instead of "Create New" on the various screens of all components
> -
>
> Key: OFBIZ-9905
> URL: https://issues.apache.org/jira/browse/OFBIZ-9905
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
> Environment: 
> https://demo-trunk.ofbiz.apache.org/accounting/control/EditAgreement
>Reporter: Aayush jain
>Assignee: sourabh jain
>Priority: Minor
> Attachments: OFBIZ-9905.patch, OFBIZ-9905.patch, OFBIZ-9905.patch, 
> UI_label .png
>
>
> Following issues found:
> 1. Create Agreement opens an edit agreement window
> 2. Able to Create Agreement without any detail (empty Agreement) 
> Steps:
> 1. Open URL 
> https://demo-trunk.ofbiz.apache.org/accounting/control/FindAgreement
> 2. Navigate to Agreement section
> 3. Click on create Agreement
> 4. Click submit button
> Actual: Agreement id is generated for empty agreement and when create window 
> opens, it's redirection is wrong to edit window
> Expected: Proper redirection should be there (create agreement) and if an 
> agreement is created without any details its of no use.
> Note: Same Issue exist with following screens:
> 1. Billing Account 
> 2. Tax Authority 
> 3. Agreement 
> 4. Fixed Asset 
> 5. Vendor 
> 6. WebSite
> 7. Blog 
> 8. Employment
> 9. Employee Position 
> 10.Performance Review  
> 11.Job Requisition 
> 12. Party Resume



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


[jira] [Commented] (OFBIZ-10898) ofbizsetup ends with en arror message / https://localhost:8443/ofbizsetup/control/main

2019-04-05 Thread Wolfgang Rauchholz (JIRA)


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

Wolfgang Rauchholz commented on OFBIZ-10898:


Yes, 
# Customer; currently also a work-around is required to setup the customer. The 
password for the user is not shown on the screen and therefor it throws out an 
error. The workaround here to is to open a new tab and create the customer 
going through Party Mgr > Create Customer (needs to be done after creating the 
store, as this is a mandatory filed too.
# It would be nice to allow default currency being selected rather than going 
to Web Tool > Entity Management
# Maybe more for the future one could consider to allow user to chose COA from 
different countries to be loaded (I will try with help from others to create an 
XML file for Spanish COA. You should see an email soon)
 

Wolfgang

> ofbizsetup ends with en arror message / 
> https://localhost:8443/ofbizsetup/control/main
> --
>
> Key: OFBIZ-10898
> URL: https://issues.apache.org/jira/browse/OFBIZ-10898
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting
>Affects Versions: 17.12.01
>Reporter: Wolfgang Rauchholz
>Priority: Major
>
> At the end of the setup procedure (Shop, Website, Customer, ... Product 
> created) when hitting the button 'Set to complete', the error message as 
> depicted underneath is shown:
> Catalog, Category and Shop, Website and Product were created.
> The financial side of Ofbiz was not created.
> The Following Errors Occurred:
> Error:ERROR: parsing file: ERROR parsing Entity Xml file: 
> org.xml.sax.SAXException: A transaction error occurred reading 
> dataorg.xml.sax.SAXException: Error performing action 
> CREATE_UPDATEorg.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.))) (org.apache.ofbiz.entity.GenericEntityException: 
> Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> 

[jira] [Commented] (OFBIZ-10898) ofbizsetup ends with en arror message / https://localhost:8443/ofbizsetup/control/main

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux commented on OFBIZ-10898:
-

Thanks Wolfgang,

We could update the OFBiz setup by loading this file. Anything else you crossed 
which could be useful?

> ofbizsetup ends with en arror message / 
> https://localhost:8443/ofbizsetup/control/main
> --
>
> Key: OFBIZ-10898
> URL: https://issues.apache.org/jira/browse/OFBIZ-10898
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting
>Affects Versions: 17.12.01
>Reporter: Wolfgang Rauchholz
>Priority: Major
>
> At the end of the setup procedure (Shop, Website, Customer, ... Product 
> created) when hitting the button 'Set to complete', the error message as 
> depicted underneath is shown:
> Catalog, Category and Shop, Website and Product were created.
> The financial side of Ofbiz was not created.
> The Following Errors Occurred:
> Error:ERROR: parsing file: ERROR parsing Entity Xml file: 
> org.xml.sax.SAXException: A transaction error occurred reading 
> dataorg.xml.sax.SAXException: Error performing action 
> CREATE_UPDATEorg.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.))) (org.apache.ofbiz.entity.GenericEntityException: 
> Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> 

[jira] [Updated] (OFBIZ-10817) Configure stackTrace displaying on ftl rendering

2019-04-05 Thread Nicolas Malin (JIRA)


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

Nicolas Malin updated OFBIZ-10817:
--
Attachment: Sélection_237.png

> Configure stackTrace displaying on ftl rendering
> 
>
> Key: OFBIZ-10817
> URL: https://issues.apache.org/jira/browse/OFBIZ-10817
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Nicolas Malin
>Assignee: Nicolas Malin
>Priority: Minor
> Attachments: Failure.png, FailureSafe.png, OFBIZ-10817.patch, 
> OFBIZ-10817.patch, OFBIZ-10817.patch, Sélection_236.png, Sélection_237.png
>
>
> Currently when freemarker failed to execute a template, you have on end 
> screen rendered all java stack trace generate.
> I propose to improve this to display the stack trace only when the property 
> widget.verbose is true, no regression during development and when you switch 
> to production site, in general your widget.verbose is false so end user 
> haven't stack trace (that totally unused for them).
>  



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


[jira] [Updated] (OFBIZ-10817) Configure stackTrace displaying on ftl rendering

2019-04-05 Thread Nicolas Malin (JIRA)


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

Nicolas Malin updated OFBIZ-10817:
--
Attachment: Sélection_236.png

> Configure stackTrace displaying on ftl rendering
> 
>
> Key: OFBIZ-10817
> URL: https://issues.apache.org/jira/browse/OFBIZ-10817
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Nicolas Malin
>Assignee: Nicolas Malin
>Priority: Minor
> Attachments: Failure.png, FailureSafe.png, OFBIZ-10817.patch, 
> OFBIZ-10817.patch, OFBIZ-10817.patch, Sélection_236.png
>
>
> Currently when freemarker failed to execute a template, you have on end 
> screen rendered all java stack trace generate.
> I propose to improve this to display the stack trace only when the property 
> widget.verbose is true, no regression during development and when you switch 
> to production site, in general your widget.verbose is false so end user 
> haven't stack trace (that totally unused for them).
>  



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


[jira] [Commented] (OFBIZ-10893) Problems reading the database, please try again.ERROR: Could not create order

2019-04-05 Thread Wolfgang Rauchholz (JIRA)


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

Wolfgang Rauchholz commented on OFBIZ-10893:


Shipment Method Type Id ENT_CASA10
Party Id   10010
Role Type Id   CARRIER
Seq. Num.  1 

Party 10010 is a Type: Party Group and  Main Role: Carrier.

All other CARRIER_SHIPMENT_METHOD were deleted.
All other initially loaded data data were deleted from the database using hte 
proper programs (not through database directly)

Wolfgang

> Problems reading the database, please try again.ERROR: Could not create order
> -
>
> Key: OFBIZ-10893
> URL: https://issues.apache.org/jira/browse/OFBIZ-10893
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 17.12
>Reporter: Wolfgang Rauchholz
>Assignee: Jacques Le Roux
>Priority: Major
>
> I get this error message after 'Final Checkout Review and hitting buttom 
> 'Submit Order'
> Process stops there.
>  
> The Following Errors Occurred:
> Problem accessing the Product entityERROR: No se pudo crear el pedido 
> (problema invocando al servicio: 
> org.apache.ofbiz.entity.transaction.GenericTransactionException: The current 
> transaction is marked for rollback, not beginning a new transaction and 
> aborting current operation; the rollbackOnly was caused by: Failure in create 
> operation for entity [OrderItemShipGroup]: 
> org.apache.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:OrderItemShipGroup][carrierPartyId,_NA_(java.lang.String)][carrierRoleTypeId,CARRIER(java.lang.String)][contactMechId,



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


[jira] [Commented] (OFBIZ-10898) ofbizsetup ends with en arror message / https://localhost:8443/ofbizsetup/control/main

2019-04-05 Thread Wolfgang Rauchholz (JIRA)


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

Wolfgang Rauchholz commented on OFBIZ-10898:


Not a solution, but a workaround to complete ofbizsetup: uploading the file 
GlAccount.xml through Web Tools >  XML Data Import before hitting the button 
"Set to complete".

Wolfgang

> ofbizsetup ends with en arror message / 
> https://localhost:8443/ofbizsetup/control/main
> --
>
> Key: OFBIZ-10898
> URL: https://issues.apache.org/jira/browse/OFBIZ-10898
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting
>Affects Versions: 17.12.01
>Reporter: Wolfgang Rauchholz
>Priority: Major
>
> At the end of the setup procedure (Shop, Website, Customer, ... Product 
> created) when hitting the button 'Set to complete', the error message as 
> depicted underneath is shown:
> Catalog, Category and Shop, Website and Product were created.
> The financial side of Ofbiz was not created.
> The Following Errors Occurred:
> Error:ERROR: parsing file: ERROR parsing Entity Xml file: 
> org.xml.sax.SAXException: A transaction error occurred reading 
> dataorg.xml.sax.SAXException: Error performing action 
> CREATE_UPDATEorg.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: 
> org.apache.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.))) (org.apache.ofbiz.entity.GenericEntityException: 
> Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 
> ROLE_TYPE_ID, FROM_DATE, THRU_DATE, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?, ?, ?) (INSERT on table 'GL_ACCOUNT_ORGANIZATION' caused a violation 
> of foreign key constraint 'GLACCT_ORG_GLA' for key (10). The statement 
> has been rolled back.)) (Error while inserting: 
> [GenericEntity:GlAccountOrganization][createdStamp,2019-03-31 
> 19:41:20.655(java.sql.Timestamp)][createdTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][fromDate,2019-03-31 
> 19:41:20.623(java.sql.Timestamp)][glAccountId,10(java.lang.String)][lastUpdatedStamp,2019-03-31
>  19:41:20.655(java.sql.Timestamp)][lastUpdatedTxStamp,2019-03-31 
> 19:41:20.247(java.sql.Timestamp)][organizationPartyId,Company(java.lang.String)]
>  (SQL Exception while executing the following:INSERT INTO 
> OFBIZ.GL_ACCOUNT_ORGANIZATION (GL_ACCOUNT_ID, ORGANIZATION_PARTY_ID, 

[jira] [Commented] (OFBIZ-10817) Configure stackTrace displaying on ftl rendering

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux commented on OFBIZ-10817:
-

I tried again putting an error in ecommerce main.ftl and by default I only see 
the stack trace in log. It's the same when I set widget.verbose=false. Also I 
just noticed that showjGrowl() is the one that shows the error message with no 
stack trace in both cases... Same when breaking main.ftl in product but w/o 
showjGrowl()...

Also I don't see any difference when I set 
widget.freemarker.template.verbose=true

And when I set 
widget.freemarker.template.exception.message=ERROR ERROR ERROR
I don't see "ERROR ERROR ERROR" but the std error message
Error rendering included template at location 
[component://product/template/Main.ftl]: freemarker.core.ParseException: Syntax 
error in template "component://product/template/Main.ftl" in line 23, column 1: 
Unexpected directive, "". Check if you have a valid #if-#elseif-#else structure.

> Configure stackTrace displaying on ftl rendering
> 
>
> Key: OFBIZ-10817
> URL: https://issues.apache.org/jira/browse/OFBIZ-10817
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Nicolas Malin
>Assignee: Nicolas Malin
>Priority: Minor
> Attachments: Failure.png, FailureSafe.png, OFBIZ-10817.patch, 
> OFBIZ-10817.patch, OFBIZ-10817.patch
>
>
> Currently when freemarker failed to execute a template, you have on end 
> screen rendered all java stack trace generate.
> I propose to improve this to display the stack trace only when the property 
> widget.verbose is true, no regression during development and when you switch 
> to production site, in general your widget.verbose is false so end user 
> haven't stack trace (that totally unused for them).
>  



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


[jira] [Comment Edited] (OFBIZ-10817) Configure stackTrace displaying on ftl rendering

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux edited comment on OFBIZ-10817 at 4/5/19 9:57 AM:
-

I tried again putting an error in ecommerce main.ftl and by default I only see 
the stack trace in log. It's the same when I set widget.verbose=false. Also I 
just noticed that showjGrowl() is the one that shows the error message with no 
stack trace in both cases... Same when breaking main.ftl in product but w/o 
showjGrowl()...

Also I don't see any difference when I set
widget.verbose=false
widget.freemarker.template.verbose=true

And when I add
widget.freemarker.template.exception.message=ERROR ERROR ERROR
I don't see "ERROR ERROR ERROR" but the std error message
Error rendering included template at location 
[component://product/template/Main.ftl]: freemarker.core.ParseException: Syntax 
error in template "component://product/template/Main.ftl" in line 23, column 1: 
Unexpected directive, "". Check if you have a valid #if-#elseif-#else structure.


was (Author: jacques.le.roux):
I tried again putting an error in ecommerce main.ftl and by default I only see 
the stack trace in log. It's the same when I set widget.verbose=false. Also I 
just noticed that showjGrowl() is the one that shows the error message with no 
stack trace in both cases... Same when breaking main.ftl in product but w/o 
showjGrowl()...

Also I don't see any difference when I set 
widget.freemarker.template.verbose=true

And when I set 
widget.freemarker.template.exception.message=ERROR ERROR ERROR
I don't see "ERROR ERROR ERROR" but the std error message
Error rendering included template at location 
[component://product/template/Main.ftl]: freemarker.core.ParseException: Syntax 
error in template "component://product/template/Main.ftl" in line 23, column 1: 
Unexpected directive, "". Check if you have a valid #if-#elseif-#else structure.

> Configure stackTrace displaying on ftl rendering
> 
>
> Key: OFBIZ-10817
> URL: https://issues.apache.org/jira/browse/OFBIZ-10817
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Nicolas Malin
>Assignee: Nicolas Malin
>Priority: Minor
> Attachments: Failure.png, FailureSafe.png, OFBIZ-10817.patch, 
> OFBIZ-10817.patch, OFBIZ-10817.patch
>
>
> Currently when freemarker failed to execute a template, you have on end 
> screen rendered all java stack trace generate.
> I propose to improve this to display the stack trace only when the property 
> widget.verbose is true, no regression during development and when you switch 
> to production site, in general your widget.verbose is false so end user 
> haven't stack trace (that totally unused for them).
>  



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


[jira] [Commented] (OFBIZ-10893) Problems reading the database, please try again.ERROR: Could not create order

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux commented on OFBIZ-10893:
-

Check what you set for  `CARRIER_SHIPMENT_METHOD` (`SHIPMEN)

> Problems reading the database, please try again.ERROR: Could not create order
> -
>
> Key: OFBIZ-10893
> URL: https://issues.apache.org/jira/browse/OFBIZ-10893
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Release Branch 17.12
>Reporter: Wolfgang Rauchholz
>Assignee: Jacques Le Roux
>Priority: Major
>
> I get this error message after 'Final Checkout Review and hitting buttom 
> 'Submit Order'
> Process stops there.
>  
> The Following Errors Occurred:
> Problem accessing the Product entityERROR: No se pudo crear el pedido 
> (problema invocando al servicio: 
> org.apache.ofbiz.entity.transaction.GenericTransactionException: The current 
> transaction is marked for rollback, not beginning a new transaction and 
> aborting current operation; the rollbackOnly was caused by: Failure in create 
> operation for entity [OrderItemShipGroup]: 
> org.apache.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:OrderItemShipGroup][carrierPartyId,_NA_(java.lang.String)][carrierRoleTypeId,CARRIER(java.lang.String)][contactMechId,



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


[jira] [Comment Edited] (OFBIZ-10892) Registering new customer in e-commerce return a wrong success message.

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux edited comment on OFBIZ-10892 at 4/5/19 9:22 AM:
-

HI Pawan,

I think this is due to a call to addUserLoginToSecurityGroup service in 
createCustomer event of plugins/ecommerce/minilang/customer/CustomerEvents.xml. 
addUserLoginToSecurityGroup is an auto-engine service. I don't know if we can 
mute a such service. It could be a missing functionality. BTW I tried to add 
{{}} inside the service call but to no avail 
(check.message.prefix is a simple space).

Confusing indeed, but not a big deal because the message quickly dissapears, 
and then the user see his/her name in green at the top of the main screen. Also 
I believe that OFBiz users are rarely using the ecommerce UI as is for their 
customer projects, so it would be almost only for our demos, not sure it's 
worth the effort.

summary: If we could mute a call to an auto-engine service it would be perfect 
:) An assertion to be checked and maybe then an improvement Jira created... 


was (Author: jacques.le.roux):
HI Pawan,

I think this is due to a call to addUserLoginToSecurityGroup service in 
createCustomer event of plugins/ecommerce/minilang/customer/CustomerEvents.xml. 
addUserLoginToSecurityGroup is an auto-engine service. I don't know if we can 
mute a such service. It could be a missing functionality. BTW I tried to add 
{{}} inside the service call but to no avail.

Confusing indeed, but not a big deal because the message quickly dissapears, 
and then the user see his/her name in green at the top of the main screen.

summary: If we could mute a call to an auto-engine service it would be perfect 
:) An assertion to be checked and maybe then an improvement Jira created...

> Registering new customer in e-commerce return a wrong success message.
> --
>
> Key: OFBIZ-10892
> URL: https://issues.apache.org/jira/browse/OFBIZ-10892
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Assignee: Pawan Verma
>Priority: Minor
>
> Registering new customer in e-commerce return a wrong success message. 
> The success message is *Security Component - User Login Security Group 
> created successfully.*
> Steps to regenerate:
>  # Go to Url: 
> [https://demo-trunk.ofbiz.apache.org/ecommerce/control/newcustomer]
>  # Add correct details and click on save button.
>  # See success message.
> As the end-user customer is going to register here, success message should be 
> understood by a normal user.  



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


[jira] [Commented] (OFBIZ-10892) Registering new customer in e-commerce return a wrong success message.

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux commented on OFBIZ-10892:
-

HI Pawan,

I think this is due to a call to addUserLoginToSecurityGroup service in 
createCustomer event of plugins/ecommerce/minilang/customer/CustomerEvents.xml. 
addUserLoginToSecurityGroup is an auto-engine service. I don't know if we can 
mute a such service. It could be a missing functionality. BTW I tried to add 
{{}} inside the service call but to no avail.

Confusing indeed, but not a big deal because the message quickly dissapears, 
and then the user see his/her name in green at the top of the main screen.

summary: If we could mute a call to an auto-engine service it would be perfect 
:) An assertion to be checked and maybe then an improvement Jira created...

> Registering new customer in e-commerce return a wrong success message.
> --
>
> Key: OFBIZ-10892
> URL: https://issues.apache.org/jira/browse/OFBIZ-10892
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Assignee: Pawan Verma
>Priority: Minor
>
> Registering new customer in e-commerce return a wrong success message. 
> The success message is *Security Component - User Login Security Group 
> created successfully.*
> Steps to regenerate:
>  # Go to Url: 
> [https://demo-trunk.ofbiz.apache.org/ecommerce/control/newcustomer]
>  # Add correct details and click on save button.
>  # See success message.
> As the end-user customer is going to register here, success message should be 
> understood by a normal user.  



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


[jira] [Closed] (OFBIZ-10857) Unable to 'Remove' the item from Shopping List

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux closed OFBIZ-10857.
---
Resolution: Cannot Reproduce

I cannot reproduce either, closing in attempt of more information if necessary

> Unable to 'Remove' the item from Shopping List
> --
>
> Key: OFBIZ-10857
> URL: https://issues.apache.org/jira/browse/OFBIZ-10857
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Reporter: Dikpal Kanungo
>Priority: Major
>
> Issue-
> Unable to remove items from the Shopping list.
> Expected-
> When clicked on the remove button at Shopping List, the item should be 
> removed from the list
>  
> Steps to regenerate-
> Open the URL - [https://demo-trunk.ofbiz.apache.org/ecommerce/control/main]
> Add the item to 'Shopping List'
> Navigate to the Shopping list page and try removing the item.



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


[jira] [Updated] (OFBIZ-10857) Unable to 'Remove' the item from Shopping List

2019-04-05 Thread Jacques Le Roux (JIRA)


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

Jacques Le Roux updated OFBIZ-10857:

Component/s: ecommerce

> Unable to 'Remove' the item from Shopping List
> --
>
> Key: OFBIZ-10857
> URL: https://issues.apache.org/jira/browse/OFBIZ-10857
> Project: OFBiz
>  Issue Type: Bug
>  Components: ecommerce
>Reporter: Dikpal Kanungo
>Priority: Major
>
> Issue-
> Unable to remove items from the Shopping list.
> Expected-
> When clicked on the remove button at Shopping List, the item should be 
> removed from the list
>  
> Steps to regenerate-
> Open the URL - [https://demo-trunk.ofbiz.apache.org/ecommerce/control/main]
> Add the item to 'Shopping List'
> Navigate to the Shopping list page and try removing the item.



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


[jira] [Comment Edited] (OFBIZ-10904) Creating custom Time Period does not show in party time period

2019-04-05 Thread Pawan Verma (JIRA)


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

Pawan Verma edited comment on OFBIZ-10904 at 4/5/19 7:51 AM:
-

Hi [~pfm.smits] , 

I have retested my patch and it is working fine on my end, I have tested it on 
Trunk and release branch. Could you please share more information so that I can 
regenerate this issue on my end?

Thanks!


was (Author: pawan.verma):
Hi [~pfm.smits] ,

 

I have retested my patch and it is working fine on my end, I have tested it on 
Trunk and release branch. Could you please share more information so that I can 
regenerate this issue on my end?

Thanks~

> Creating custom Time Period does not show in party time period
> --
>
> Key: OFBIZ-10904
> URL: https://issues.apache.org/jira/browse/OFBIZ-10904
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting
>Affects Versions: Release Branch 13.07, Release Branch 14.12, Trunk, 
> Release Branch 15.12, Release Branch 16.11, Release Branch 17.12, Release 
> Branch 18.12
>Reporter: Pierre Smits
>Assignee: Pawan Verma
>Priority: Major
> Attachments: OFBIZ-10904.patch
>
>
> When a new time period is added in screen [1] the result does not show up in 
> [2].
> [1] 
> [https://demo-stable.ofbiz.apache.org/accounting/control/EditCustomTimePeriod]
> [2] 
> [https://demo-stable.ofbiz.apache.org/accounting/control/TimePeriods?organizationPartyId=Company]
> This is due to the fact that the field 'isClosed' is not set. Appropriate 
> values are: Y or N.



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


[jira] [Commented] (OFBIZ-10904) Creating custom Time Period does not show in party time period

2019-04-05 Thread Pawan Verma (JIRA)


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

Pawan Verma commented on OFBIZ-10904:
-

Hi [~pfm.smits] ,

 

I have retested my patch and it is working fine on my end, I have tested it on 
Trunk and release branch. Could you please share more information so that I can 
regenerate this issue on my end?

Thanks~

> Creating custom Time Period does not show in party time period
> --
>
> Key: OFBIZ-10904
> URL: https://issues.apache.org/jira/browse/OFBIZ-10904
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting
>Affects Versions: Release Branch 13.07, Release Branch 14.12, Trunk, 
> Release Branch 15.12, Release Branch 16.11, Release Branch 17.12, Release 
> Branch 18.12
>Reporter: Pierre Smits
>Assignee: Pawan Verma
>Priority: Major
> Attachments: OFBIZ-10904.patch
>
>
> When a new time period is added in screen [1] the result does not show up in 
> [2].
> [1] 
> [https://demo-stable.ofbiz.apache.org/accounting/control/EditCustomTimePeriod]
> [2] 
> [https://demo-stable.ofbiz.apache.org/accounting/control/TimePeriods?organizationPartyId=Company]
> This is due to the fact that the field 'isClosed' is not set. Appropriate 
> values are: Y or N.



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


[jira] [Updated] (OFBIZ-10905) Have a service that runs periodically to generate CustomTimePeriod records

2019-04-05 Thread Pierre Smits (JIRA)


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

Pierre Smits updated OFBIZ-10905:
-
Affects Version/s: Release Branch 18.12
   Release Branch 17.12
   Release Branch 15.12
   Release Branch 16.11

> Have a service that runs periodically to generate CustomTimePeriod records
> --
>
> Key: OFBIZ-10905
> URL: https://issues.apache.org/jira/browse/OFBIZ-10905
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Affects Versions: Trunk, Release Branch 15.12, Release Branch 16.11, 
> Release Branch 17.12, Release Branch 18.12
>Reporter: Pierre Smits
>Assignee: Pierre Smits
>Priority: Major
>
> Currently no service exists that creates CustomTimePeriod records on a 
> scheduled basis. One could think of:
>  * a yearly schedule that creates the next fiscal year period
>  * a quarterly schedule that creates the next fiscal quartered period
>  * a monthly schedule that creates the next fiscal month period
>  * etc.
> With each record referencing the appropriate parent, e.g.:
>  * the fiscal month referencing the fiscal quarter
>  * the fiscal quarter referencing the fiscal year
>  * etc.



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


[jira] [Assigned] (OFBIZ-10905) Have a service that runs periodically to generate CustomTimePeriod records

2019-04-05 Thread Pierre Smits (JIRA)


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

Pierre Smits reassigned OFBIZ-10905:


Assignee: Pierre Smits

> Have a service that runs periodically to generate CustomTimePeriod records
> --
>
> Key: OFBIZ-10905
> URL: https://issues.apache.org/jira/browse/OFBIZ-10905
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pierre Smits
>Assignee: Pierre Smits
>Priority: Major
>
> Currently no service exists that creates CustomTimePeriod records on a 
> scheduled basis. One could think of:
>  * a yearly schedule that creates the next fiscal year period
>  * a quarterly schedule that creates the next fiscal quartered period
>  * a monthly schedule that creates the next fiscal month period
>  * etc.
> With each record referencing the appropriate parent, e.g.:
>  * the fiscal month referencing the fiscal quarter
>  * the fiscal quarter referencing the fiscal year
>  * etc.



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