[jira] [Closed] (OFBIZ-7589) Enforce noninstantiability to UtilHttp class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7589.
---
   Resolution: Fixed
Fix Version/s: Upcoming Branch

Committed changes in trunk at rev: 1751026.

Thanks [~rishisolankii] and [~rohit.koushal] for your contribution.

> Enforce noninstantiability to UtilHttp class
> 
>
> Key: OFBIZ-7589
> URL: https://issues.apache.org/jira/browse/OFBIZ-7589
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7589.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following public static variables as private
> {code}
> public static final String MULTI_ROW_DELIMITER = "_o_";
> public static final String ROW_SUBMIT_PREFIX = "_rowSubmit_o_";
> public static final String COMPOSITE_DELIMITER = "_c_";
> public static final int MULTI_ROW_DELIMITER_LENGTH = 
> MULTI_ROW_DELIMITER.length();
> public static final int ROW_SUBMIT_PREFIX_LENGTH = 
> ROW_SUBMIT_PREFIX.length();
> public static final int COMPOSITE_DELIMITER_LENGTH = 
> COMPOSITE_DELIMITER.length();
> public static final String SESSION_KEY_TIMEZONE = "timeZone";
> {code}
> - Add public static methods as getMultiRowDelimiter(), getRowSubmitPrefix(), 
> and use them in following classes/scripts;
> {code}
> GlEvents.java
> ShoppingCartEvents.java
> CheckAction.groovy
> CheckRejected.groovy
> ServiceMultiEventHandler.java
> EbayEvents.java
> {code}
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7589) Enforce noninstantiability to UtilHttp class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7589:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to UtilHttp class
> 
>
> Key: OFBIZ-7589
> URL: https://issues.apache.org/jira/browse/OFBIZ-7589
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Attachments: OFBIZ-7589.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following public static variables as private
> {code}
> public static final String MULTI_ROW_DELIMITER = "_o_";
> public static final String ROW_SUBMIT_PREFIX = "_rowSubmit_o_";
> public static final String COMPOSITE_DELIMITER = "_c_";
> public static final int MULTI_ROW_DELIMITER_LENGTH = 
> MULTI_ROW_DELIMITER.length();
> public static final int ROW_SUBMIT_PREFIX_LENGTH = 
> ROW_SUBMIT_PREFIX.length();
> public static final int COMPOSITE_DELIMITER_LENGTH = 
> COMPOSITE_DELIMITER.length();
> public static final String SESSION_KEY_TIMEZONE = "timeZone";
> {code}
> - Add public static methods as getMultiRowDelimiter(), getRowSubmitPrefix(), 
> and use them in following classes/scripts;
> {code}
> GlEvents.java
> ShoppingCartEvents.java
> CheckAction.groovy
> CheckRejected.groovy
> ServiceMultiEventHandler.java
> EbayEvents.java
> {code}
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7601) Enforce noninstantiability to UtilURL class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7601.
---
   Resolution: Fixed
Fix Version/s: Upcoming Branch

Committed changes in trunk at rev: 1751025.

Thanks [~rishisolankii] and [~rohit.koushal] for your contribution.

> Enforce noninstantiability to UtilURL class
> ---
>
> Key: OFBIZ-7601
> URL: https://issues.apache.org/jira/browse/OFBIZ-7601
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7601.patch
>
>
> - Make class as final.
> - Add a private constructor.
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7590) Enforce noninstantiability to UtilIO class

2016-07-01 Thread Rishi Solanki (JIRA)

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

Rishi Solanki commented on OFBIZ-7590:
--

Thanks [~rohit.koushal] changes looks good to me. 

> Enforce noninstantiability to UtilIO class
> --
>
> Key: OFBIZ-7590
> URL: https://issues.apache.org/jira/browse/OFBIZ-7590
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Attachments: OFBIZ-7590.patch
>
>
> - Make class as final.
> - Add a private constructor.
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7601) Enforce noninstantiability to UtilURL class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7601:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to UtilURL class
> ---
>
> Key: OFBIZ-7601
> URL: https://issues.apache.org/jira/browse/OFBIZ-7601
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Attachments: OFBIZ-7601.patch
>
>
> - Make class as final.
> - Add a private constructor.
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7685) Enforce noninstantiability to RecurrenceUtil class

2016-07-01 Thread Pratik Kulshreshth (JIRA)

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

Pratik Kulshreshth updated OFBIZ-7685:
--
Attachment: OFBIZ-7685.patch

Provided patch for this task.
Thanks [~rishisolankii] for the detailed description.

> Enforce noninstantiability to RecurrenceUtil class
> --
>
> Key: OFBIZ-7685
> URL: https://issues.apache.org/jira/browse/OFBIZ-7685
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Priority: Minor
> Attachments: OFBIZ-7685.patch
>
>
> - Make class as final.
> - Add a private constructor.
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7580) Order: Correct all the checkboxes and radio buttons in all the order FTLs.

2016-07-01 Thread Mohammad Kathawala (JIRA)

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

Mohammad Kathawala updated OFBIZ-7580:
--
Attachment: OFBIZ-7580.patch

Added label tags for all the checkboxes and radio buttons in all the FTLs of 
order application i.e. all the FTLs related to order in 
'applications/order/template'
Attached patch.

> Order: Correct all the checkboxes and radio buttons in all the order FTLs.
> --
>
> Key: OFBIZ-7580
> URL: https://issues.apache.org/jira/browse/OFBIZ-7580
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order
>Reporter: Mohammad Kathawala
>Assignee: Mohammad Kathawala
>Priority: Minor
> Attachments: OFBIZ-7580.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7704) 'original page' field is partially visible in create 'New Portal Page' screen

2016-07-01 Thread Swapnil M Mane (JIRA)

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

Swapnil M Mane updated OFBIZ-7704:
--
Attachment: new_portal_page.png

> 'original page' field is partially visible in create 'New Portal Page' screen
> -
>
> Key: OFBIZ-7704
> URL: https://issues.apache.org/jira/browse/OFBIZ-7704
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/myportal
>Affects Versions: Trunk
>Reporter: Swapnil M Mane
>Assignee: Swapnil M Mane
>Priority: Minor
> Attachments: new_portal_page.png
>
>
> In the screen of new portal page creation, the 'original page' is partially 
> visible and going out of the screen.
> Steps to regenerate
> #1) Go to My Portal
> #2) select Preferences sub-menu
> #3) Select the option 'New Portal Page'
> (https://localhost:8443/myportal/control/NewPortalPage?parentPortalPageId=MYPORTAL_EMPLOYEE)
> Please find the attachment for more details.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7703) Unable to set thru date for List survey screen of project component if more than one survey in available.

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7703:
---
Attachment: OFBIZ-7703.patch

Attaching patch for this improvement.

> Unable to set thru date for List survey screen of project component if more 
> than one survey in available.
> -
>
> Key: OFBIZ-7703
> URL: https://issues.apache.org/jira/browse/OFBIZ-7703
> Project: OFBiz
>  Issue Type: Improvement
>  Components: specialpurpose/projectmgr
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-7703.patch
>
>
> Steps to regenerate : 
> 1) Login into Project application.
> 2) Click on "Tasks" menu.
> 3) Find and select any task.
> 4) Click on "Surveys" submenu.
> 5) Add more than one survey and see calendar icon is missing.
> 6) see attached screenshot for more detail.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7704) 'original page' field is partially visible in create 'New Portal Page' screen

2016-07-01 Thread Swapnil M Mane (JIRA)
Swapnil M Mane created OFBIZ-7704:
-

 Summary: 'original page' field is partially visible in create 'New 
Portal Page' screen
 Key: OFBIZ-7704
 URL: https://issues.apache.org/jira/browse/OFBIZ-7704
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/myportal
Affects Versions: Trunk
Reporter: Swapnil M Mane
Assignee: Swapnil M Mane
Priority: Minor


In the screen of new portal page creation, the 'original page' is partially 
visible and going out of the screen.

Steps to regenerate
#1) Go to My Portal
#2) select Preferences sub-menu
#3) Select the option 'New Portal Page'
(https://localhost:8443/myportal/control/NewPortalPage?parentPortalPageId=MYPORTAL_EMPLOYEE)

Please find the attachment for more details.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7702) Add a look-up for Product Id at Add Product Store Surveys screen

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7702:
---
Attachment: OFBIZ-7702.patch

Attaching patch for this improvement.

> Add a look-up for Product Id at Add Product Store Surveys screen
> 
>
> Key: OFBIZ-7702
> URL: https://issues.apache.org/jira/browse/OFBIZ-7702
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-7702.patch
>
>
> Steps to regenerate:
> 1) Log in into catalog application.
> 2) Select Stores menu.
> 3) Now click on surveys submenu.
> 4) Scroll down at "Add Product Store Surveys" screen, we can add product id 
> look-up here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (OFBIZ-7702) Add a look-up for Product Id at Add Product Store Surveys screen

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7702:
---
Comment: was deleted

(was: Attaching patch for this improvement.)

> Add a look-up for Product Id at Add Product Store Surveys screen
> 
>
> Key: OFBIZ-7702
> URL: https://issues.apache.org/jira/browse/OFBIZ-7702
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-7702.patch
>
>
> Steps to regenerate:
> 1) Log in into catalog application.
> 2) Select Stores menu.
> 3) Now click on surveys submenu.
> 4) Scroll down at "Add Product Store Surveys" screen, we can add product id 
> look-up here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7702) Add a look-up for Product Id at Add Product Store Surveys screen

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7702:
---
Attachment: (was: OFBIZ-7702.patch)

> Add a look-up for Product Id at Add Product Store Surveys screen
> 
>
> Key: OFBIZ-7702
> URL: https://issues.apache.org/jira/browse/OFBIZ-7702
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
>
> Steps to regenerate:
> 1) Log in into catalog application.
> 2) Select Stores menu.
> 3) Now click on surveys submenu.
> 4) Scroll down at "Add Product Store Surveys" screen, we can add product id 
> look-up here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7702) Add a look-up for Product Id at Add Product Store Surveys screen

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7702:
---
Attachment: OFBIZ-7702.patch

Attaching patch for this improvement.

> Add a look-up for Product Id at Add Product Store Surveys screen
> 
>
> Key: OFBIZ-7702
> URL: https://issues.apache.org/jira/browse/OFBIZ-7702
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-7702.patch
>
>
> Steps to regenerate:
> 1) Log in into catalog application.
> 2) Select Stores menu.
> 3) Now click on surveys submenu.
> 4) Scroll down at "Add Product Store Surveys" screen, we can add product id 
> look-up here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7703) Unable to set thru date for List survey screen of project component if more than one survey in available.

2016-07-01 Thread Pawan Verma (JIRA)
Pawan Verma created OFBIZ-7703:
--

 Summary: Unable to set thru date for List survey screen of project 
component if more than one survey in available.
 Key: OFBIZ-7703
 URL: https://issues.apache.org/jira/browse/OFBIZ-7703
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/projectmgr
Affects Versions: Trunk
Reporter: Pawan Verma
Priority: Minor


Steps to regenerate : 
1) Login into Project application.
2) Click on "Tasks" menu.
3) Find and select any task.
4) Click on "Surveys" submenu.
5) Add more than one survey and see calendar icon is missing.
6) see attached screenshot for more detail.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7702) Add a look-up for Product Id at Add Product Store Surveys screen

2016-07-01 Thread Pawan Verma (JIRA)
Pawan Verma created OFBIZ-7702:
--

 Summary: Add a look-up for Product Id at Add Product Store Surveys 
screen
 Key: OFBIZ-7702
 URL: https://issues.apache.org/jira/browse/OFBIZ-7702
 Project: OFBiz
  Issue Type: Improvement
  Components: product
Affects Versions: Trunk
Reporter: Pawan Verma
Priority: Minor


Steps to regenerate:
1) Log in into catalog application.
2) Select Stores menu.
3) Now click on surveys submenu.
4) Scroll down at "Add Product Store Surveys" screen, we can add product id 
look-up here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: OFBiz Increased Activity

2016-07-01 Thread Anil Patel
May the Source be with you :)


https://www.google.com/search?q=may+the+source+be+with+you=2=1440=829=isch=v6oz4GHd2G00-M%253A%253B-0S5xbyMzuIx7M%253Bhttp%25253A%25252F%25252Fwww.raidz3ro.com%25252Fmay-the-source-be-with-you-programmer-t-shirt.html=iu=m=v6oz4GHd2G00-M%253A%252C-0S5xbyMzuIx7M%252C_=__FhUj_S2rj1sugOiQVHiTURSJI_A%3D=0ahUKEwjhq_7js9PNAhUMGB4KHR75CYMQyjcIKw=zvp2V-GMF4yweJ7yp5gI#imgrc=v6oz4GHd2G00-M%3A
 




Thanks and Regards
Anil Patel
COO
Hotwax Systems
http://www.hotwaxsystems.com/ 
Cell: +1 509 398 3120

> On Jun 29, 2016, at 4:02 PM, Michael Brohl  wrote:
> 
> Hi Sharan, all,
> 
> impressing momentum in the last weeks, it's well recognized also by users and 
> I think this will move our project and the community forward.
> 
> Thanks to all participants, you are great!
> 
> Regards,
> 
> Michael Brohl
> ecomify GmbH
> www.ecomify.de
> 
> 
> Am 28.06.16 um 11:14 schrieb Sharan Foga:
>> Hi Everyone
>> 
>> A quick note to say thank you to everyone that is working on helping us 
>> improve OFBiz. Over the last few weeks OFBiz is consistently in the top 5 
>> most active SVN projects. (At the moment of writing this we are number 1 
>> with 23 commits so far today).
>> 
>> Our dev mailing list is also consistently in the top 5 most active mailing 
>> lists – so shows that we are busy discussing things too. I've included the 
>> link the status monitor below.
>> 
>> https://status.apache.org/
>> 
>> It's not only about the number of commits, but also the interactions and 
>> discussions we are all having. I really like the community vibe and 
>> enthusiasm we have at the moment. Thanks everyone for contributing to it and 
>> continuing to making it happen!
>> 
>> Thanks
>> Sharan
> 
> 



[jira] [Reopened] (OFBIZ-6639) Birt issues in accounting reports

2016-07-01 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux reopened OFBIZ-6639:


Hi Arun, sorry, I reopen, "Balance Sheet PDF export fails" still does not work 
for me

> Birt issues in accounting reports
> -
>
> Key: OFBIZ-6639
> URL: https://issues.apache.org/jira/browse/OFBIZ-6639
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Fix For: Trunk, 14.12.01, 15.12.01
>
>
>  The followings are Birt issues
> https://ofbiz-vm.apache.org:8443/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/TrialBalance?organizationPartyId=Company
>  (PDF export)
> They work in stable demo, there is no Birt there
> http://demo-stable-ofbiz.apache.org/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> http://demo-stable-ofbiz.apache.org/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> Here is Arun's comment about that
> {quote}
> There are some report forms with hyper-link that are throwing error in pdf 
> export. We will have to find a way to use these form in both process ie 
> report rendering and pdf export
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Reopened] (OFBIZ-7515) Balance Sheet PDF export fails

2016-07-01 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux reopened OFBIZ-7515:


Sorry, does not work for me

> Balance Sheet PDF export fails
> --
>
> Key: OFBIZ-7515
> URL: https://issues.apache.org/jira/browse/OFBIZ-7515
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: Trunk, 14.12.01, 15.12.01
>
> Attachments: BalanceSheet.png, OFBIZ-7515.patch
>
>
> Balance Sheet PDF export fails getting error attached in the screenshot.
> To replicate : 
> 1. Go to Organization GL Settings in accounting.
> 2. Under Reports we will find Balance sheet.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2016-07-01 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux commented on OFBIZ-6638:


Yes please Rohit ask before we forgot, thanks!

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Fix For: Trunk, 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7515) Balance Sheet PDF export fails

2016-07-01 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux commented on OFBIZ-7515:


I'll double check but after building trunk HEAD it still does not work locally. 
I only get a blank page at "about:blank" URL in FF on Win7. 
Same at 
https://ofbiz-vm.apache.org:8443/accounting/control/BalanceSheet?organizationPartyId=Company.

BTW same with Chrome (where unlike FF I have not tons of plugins), but with 
more info:
{code}
HTTP Status 500 - ERROR rendering error page [/error/error.jsp], but here is 
the error text: 
org.eclipse.birt.report.engine.api.impl.ParameterValidationException 
Required parameter userLoginId is not set.
type Status report
message ERROR rendering error page [/error/error.jsp], but here is the error 
text: 
org.eclipse.birt.report.engine.api.impl.ParameterValidationException 
Required parameter userLoginId is not set.
description The server encountered an internal error that prevented it from 
fulfilling this request.
{code}

> Balance Sheet PDF export fails
> --
>
> Key: OFBIZ-7515
> URL: https://issues.apache.org/jira/browse/OFBIZ-7515
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: Trunk, 14.12.01, 15.12.01
>
> Attachments: BalanceSheet.png, OFBIZ-7515.patch
>
>
> Balance Sheet PDF export fails getting error attached in the screenshot.
> To replicate : 
> 1. Go to Organization GL Settings in accounting.
> 2. Under Reports we will find Balance sheet.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7591) Enforce noninstantiability to UtilJavaParse class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7591.
---
   Resolution: Fixed
Fix Version/s: Upcoming Branch

Committed changes in trunk at rev: 1750969.

Thanks [~rishisolankii] and [~rohit.koushal] for your contribution.

> Enforce noninstantiability to UtilJavaParse class
> -
>
> Key: OFBIZ-7591
> URL: https://issues.apache.org/jira/browse/OFBIZ-7591
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7591.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following public static variables as private and move them to top 
> of class. Also move the static block initializing it.
> {code}
> // FIXME: Not thread safe
> public static Set serviceMethodNames = new HashSet();
> static {
> serviceMethodNames.add("runSync");
> serviceMethodNames.add("runSyncIgnore");
> serviceMethodNames.add("runAsync");
> serviceMethodNames.add("runAsyncWait");
> serviceMethodNames.add("registerCallback");
> serviceMethodNames.add("schedule"); // NOTE: the service name may be 
> the 1st, 2nd or 3rd param for variations on this
> serviceMethodNames.add("addRollbackService");
> serviceMethodNames.add("addCommitService");
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7591) Enforce noninstantiability to UtilJavaParse class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7591:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to UtilJavaParse class
> -
>
> Key: OFBIZ-7591
> URL: https://issues.apache.org/jira/browse/OFBIZ-7591
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7591.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following public static variables as private and move them to top 
> of class. Also move the static block initializing it.
> {code}
> // FIXME: Not thread safe
> public static Set serviceMethodNames = new HashSet();
> static {
> serviceMethodNames.add("runSync");
> serviceMethodNames.add("runSyncIgnore");
> serviceMethodNames.add("runAsync");
> serviceMethodNames.add("runAsyncWait");
> serviceMethodNames.add("registerCallback");
> serviceMethodNames.add("schedule"); // NOTE: the service name may be 
> the 1st, 2nd or 3rd param for variations on this
> serviceMethodNames.add("addRollbackService");
> serviceMethodNames.add("addCommitService");
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


buildbot success in on ofbiz-branch15

2016-07-01 Thread buildbot
The Buildbot has detected a restored build on builder ofbiz-branch15 while 
building . Full details are available at:
https://ci.apache.org/builders/ofbiz-branch15/builds/198

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: orcus_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-ofbiz15-commit' 
triggered this build
Build Source Stamp: [branch ofbiz/branches/release15.12] 1750965
Blamelist: arunpatidar

Build succeeded!

Sincerely,
 -The Buildbot





[jira] [Assigned] (OFBIZ-7590) Enforce noninstantiability to UtilIO class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7590:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to UtilIO class
> --
>
> Key: OFBIZ-7590
> URL: https://issues.apache.org/jira/browse/OFBIZ-7590
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Attachments: OFBIZ-7590.patch
>
>
> - Make class as final.
> - Add a private constructor.
> No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7587) Enforce noninstantiability to UtilFormatOut class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7587:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to UtilFormatOut class
> -
>
> Key: OFBIZ-7587
> URL: https://issues.apache.org/jira/browse/OFBIZ-7587
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7587.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following static variable as private static final. Also move it to 
> begining of the class with FIXME: comment
> {code}
> // --- price format handlers ---
> // FIXME: This is not thread-safe! DecimalFormat is not synchronized.
> static DecimalFormat priceDecimalFormat = new 
> DecimalFormat(UtilProperties.getPropertyValue("general", 
> "currency.decimal.format", "#,##0.00"));
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7551) Enforce noninstantiability to SSLUtil class

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7551:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Enforce noninstantiability to SSLUtil class
> ---
>
> Key: OFBIZ-7551
> URL: https://issues.apache.org/jira/browse/OFBIZ-7551
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: Trunk
>Reporter: Rishi Solanki
>Assignee: Arun Patidar
>Priority: Minor
> Attachments: OFBIZ-7551.patch
>
>
> - Make class as final.
> - Add a private constructor.
> - Make the following public static variables as private
> {code}
> public static final int HOSTCERT_NO_CHECK = 0;
> public static final int HOSTCERT_MIN_CHECK = 1;
> public static final int HOSTCERT_NORMAL_CHECK = 2;
> {code}
> - Add getHostCertNoCheck(), getHostCertMinCheck() and 
> getHostCertNormalCheck() public static methods and use them in following 
> classes, Also check if any class remains;
> {code}
> HttpClient.java
> URLConnector.java
> AliasSupportedTransportFactory.java
> WidgetMacroLibraryTests.java
> OagisServices.java
> {code}
> - Move following static class at top and make it private.
> {code}
> static class TrustAnyManager implements X509TrustManager
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7316) Product Demand Report is not working

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7316.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01
   14.12.01

Committed changes in trunk rev: 1750964
in 15.12 at rev:  1750965
in 14.12 at rev: 1750966

Thanks [~rohit.koushal] for your contribution

> Product Demand Report is not working
> 
>
> Key: OFBIZ-7316
> URL: https://issues.apache.org/jira/browse/OFBIZ-7316
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: 14.12.01, 15.12.01, Trunk
>
> Attachments: ProductDemandReport.patch
>
>
> Product Demand Report is not working 
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Product Demand Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7316) Product Demand Report is not working

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar updated OFBIZ-7316:

Affects Version/s: Release Branch 14.12
   Trunk
   Release Branch 15.12

> Product Demand Report is not working
> 
>
> Key: OFBIZ-7316
> URL: https://issues.apache.org/jira/browse/OFBIZ-7316
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: ProductDemandReport.patch
>
>
> Product Demand Report is not working 
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Product Demand Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7316) Product Demand Report is not working

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7316:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Product Demand Report is not working
> 
>
> Key: OFBIZ-7316
> URL: https://issues.apache.org/jira/browse/OFBIZ-7316
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: ProductDemandReport.patch
>
>
> Product Demand Report is not working 
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Product Demand Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7312) Order BIRT report is not working properly

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7312:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Order BIRT report is not working properly
> -
>
> Key: OFBIZ-7312
> URL: https://issues.apache.org/jira/browse/OFBIZ-7312
> Project: OFBiz
>  Issue Type: Bug
>  Components: order, specialpurpose/birt
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
>
> Order BIRT reports are not working it is either broken or not populating data 
> correctly(specially in case of a single order).
> 1. Coupon Sales Report
> 2. Last 3Months Sales Report
> 3. Order Discount Code Report
> 4. Product Demand Report
> 5. Sales Report
> 6. Net Before Overhead Report
> 7. Sale Orders By Channel
> 8. Order By Referrer



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7315) Order Discount Code Report is not working

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7315.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01

Committed changes into trunk at rev: 1750959
at 15.12 at rev: 1750961

Already fixed in 14.12, no need to backport.

Thanks [~rohit.koushal] for your contribution.

> Order Discount Code Report is not working
> -
>
> Key: OFBIZ-7315
> URL: https://issues.apache.org/jira/browse/OFBIZ-7315
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: 15.12.01, Trunk
>
> Attachments: OrderDiscountCodeReport.patch
>
>
> Order Discount Code Report is not working
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Order Discount Code Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7315) Order Discount Code Report is not working

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7315:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Order Discount Code Report is not working
> -
>
> Key: OFBIZ-7315
> URL: https://issues.apache.org/jira/browse/OFBIZ-7315
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: OrderDiscountCodeReport.patch
>
>
> Order Discount Code Report is not working
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Order Discount Code Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7699) Invalid content was found starting with element 'xls'

2016-07-01 Thread james yong (JIRA)

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

james yong updated OFBIZ-7699:
--
Attachment: OFBIZ-7699.patch

Please check if this patch helps.

> Invalid content was found starting with element 'xls'
> -
>
> Key: OFBIZ-7699
> URL: https://issues.apache.org/jira/browse/OFBIZ-7699
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Trunk
>Reporter: Nameet Jain
>Priority: Minor
> Attachments: OFBIZ-7699.patch
>
>
> If found this in console logs:
> XmlFileLoader: File 
> file:/home/ofbizDemo/trunk/framework/common/widget/CommonScreens.xml process 
> error. Line: 491. Error message: cvc-complex-type.2.4.d: Invalid content was 
> found starting with element 'xls'. No child element is expected at this point.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-6639) Birt issues in accounting reports

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-6639.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01
   14.12.01

All the sub tickets has been closed, hence closing this ticket as well. 

Thanks [~rohit.koushal] for your contribution.

> Birt issues in accounting reports
> -
>
> Key: OFBIZ-6639
> URL: https://issues.apache.org/jira/browse/OFBIZ-6639
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Fix For: 14.12.01, 15.12.01, Trunk
>
>
>  The followings are Birt issues
> https://ofbiz-vm.apache.org:8443/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/TrialBalance?organizationPartyId=Company
>  (PDF export)
> They work in stable demo, there is no Birt there
> http://demo-stable-ofbiz.apache.org/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> http://demo-stable-ofbiz.apache.org/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> Here is Arun's comment about that
> {quote}
> There are some report forms with hyper-link that are throwing error in pdf 
> export. We will have to find a way to use these form in both process ie 
> report rendering and pdf export
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7515) Balance Sheet PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7515.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01
   14.12.01

Committed  changes into trunk at rev: 1750940
15.12 at rev: 1750951
14.12 at rev: 1750952

Thanks [~rohit.koushal] for your contribution.

> Balance Sheet PDF export fails
> --
>
> Key: OFBIZ-7515
> URL: https://issues.apache.org/jira/browse/OFBIZ-7515
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: 14.12.01, 15.12.01, Trunk
>
> Attachments: BalanceSheet.png, OFBIZ-7515.patch
>
>
> Balance Sheet PDF export fails getting error attached in the screenshot.
> To replicate : 
> 1. Go to Organization GL Settings in accounting.
> 2. Under Reports we will find Balance sheet.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7701) Cmssite : FTL formatting

2016-07-01 Thread Vaibhav Jain (JIRA)
Vaibhav Jain created OFBIZ-7701:
---

 Summary: Cmssite : FTL formatting
 Key: OFBIZ-7701
 URL: https://issues.apache.org/jira/browse/OFBIZ-7701
 Project: OFBiz
  Issue Type: Sub-task
  Components: specialpurpose/cmssite
Reporter: Vaibhav Jain
Assignee: Vaibhav Jain






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7315) Order Discount Code Report is not working

2016-07-01 Thread Rohit Koushal (JIRA)

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

Rohit Koushal updated OFBIZ-7315:
-
Affects Version/s: Release Branch 14.12
   Trunk
   Release Branch 15.12

> Order Discount Code Report is not working
> -
>
> Key: OFBIZ-7315
> URL: https://issues.apache.org/jira/browse/OFBIZ-7315
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
> Attachments: OrderDiscountCodeReport.patch
>
>
> Order Discount Code Report is not working
> Screen : 
> https://ofbiz-vm.apache.org:8443/ordermgr/control/OrderPurchaseReportOptions
> Section : Order Discount Code Report



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7611) Track userlogin for status change

2016-07-01 Thread Nicolas Malin (JIRA)

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

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

I update the patch with I my ideas.

If ok for you Nameet I finish the label message and add unit test.

> Track userlogin for status change
> -
>
> Key: OFBIZ-7611
> URL: https://issues.apache.org/jira/browse/OFBIZ-7611
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
>Reporter: Nameet Jain
>Assignee: Nicolas Malin
> Attachments: OFBIZ-7611.patch, OFBIZ-7611.patch
>
>
> Currently in OFBiz, 'changedByUserLoginId' field is missing from status 
> entities (like: ShipmentStatus). Using this field we can maintain the history 
> for each status change made by user.
> Update all respective service and events to ensure this field gets updated.
> Here is the list of entities with missing this field.
> 1. BudgetStatus
> 2. ContactListCommStatus
> 3. CustRequestStatus
> 4. ExampleStatus
> 5. FinAccountStatus
> 6. InventoryItemStatus
> 7. InvoiceStatus
> 8. PartyStatus
> 9. RequirementStatus
> 10. ShipmentStatus



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7515) Balance Sheet PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar updated OFBIZ-7515:

Affects Version/s: Release Branch 14.12
   Release Branch 15.12

> Balance Sheet PDF export fails
> --
>
> Key: OFBIZ-7515
> URL: https://issues.apache.org/jira/browse/OFBIZ-7515
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: BalanceSheet.png, OFBIZ-7515.patch
>
>
> Balance Sheet PDF export fails getting error attached in the screenshot.
> To replicate : 
> 1. Go to Organization GL Settings in accounting.
> 2. Under Reports we will find Balance sheet.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7515) Balance Sheet PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7515:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Balance Sheet PDF export fails
> --
>
> Key: OFBIZ-7515
> URL: https://issues.apache.org/jira/browse/OFBIZ-7515
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Trunk
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: BalanceSheet.png, OFBIZ-7515.patch
>
>
> Balance Sheet PDF export fails getting error attached in the screenshot.
> To replicate : 
> 1. Go to Organization GL Settings in accounting.
> 2. Under Reports we will find Balance sheet.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7514) Income Statement PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-7514.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01
   14.12.01

Committed changes into trunk at rev: 1750925
15.12 at rev: 1750932
14.12 at rev: 1750935

Thanks [~rohit.koushal] for your contribution.

> Income Statement PDF export fails
> -
>
> Key: OFBIZ-7514
> URL: https://issues.apache.org/jira/browse/OFBIZ-7514
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Fix For: 14.12.01, 15.12.01, Trunk
>
> Attachments: OFBIZ-7514.patch
>
>
> Income Statement PDF exported with empty data.
> To replicate : 
> 1. Go to  Organization GL Settings in accounting.
> 2. Under Reports we will find Income Statement report.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7514) Income Statement PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar updated OFBIZ-7514:

Affects Version/s: Release Branch 14.12
   Release Branch 15.12

> Income Statement PDF export fails
> -
>
> Key: OFBIZ-7514
> URL: https://issues.apache.org/jira/browse/OFBIZ-7514
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: OFBIZ-7514.patch
>
>
> Income Statement PDF exported with empty data.
> To replicate : 
> 1. Go to  Organization GL Settings in accounting.
> 2. Under Reports we will find Income Statement report.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7514) Income Statement PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-7514:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Income Statement PDF export fails
> -
>
> Key: OFBIZ-7514
> URL: https://issues.apache.org/jira/browse/OFBIZ-7514
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting, specialpurpose/birt
>Affects Versions: Trunk
>Reporter: Rohit Koushal
>Assignee: Arun Patidar
> Attachments: OFBIZ-7514.patch
>
>
> Income Statement PDF exported with empty data.
> To replicate : 
> 1. Go to  Organization GL Settings in accounting.
> 2. Under Reports we will find Income Statement report.
> 3. Submit the form and try to export data in PDF.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar commented on OFBIZ-6638:
-

Hi [~rohit.koushal]

Currently, I am not in the condition to give answer of your query. You can 
raise your concern on mailing list and take action accordingly.

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Fix For: Trunk, 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-6638) TrialBalance PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar closed OFBIZ-6638.
---
   Resolution: Fixed
Fix Version/s: Trunk
   15.12.01
   14.12.01

Committed changes in trunk at rev: 1750922
15.12 at rev: 1750923
14.12 at rev: 1750924

Thanks Rohit for your contribution.

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Fix For: 14.12.01, 15.12.01, Trunk
>
> Attachments: OFBIZ-6638.patch
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-6639) Birt issues in accounting reports

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar updated OFBIZ-6639:

Affects Version/s: Release Branch 14.12
   Trunk
   Release Branch 15.12

> Birt issues in accounting reports
> -
>
> Key: OFBIZ-6639
> URL: https://issues.apache.org/jira/browse/OFBIZ-6639
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting, specialpurpose/birt
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>
>  The followings are Birt issues
> https://ofbiz-vm.apache.org:8443/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/TrialBalance?organizationPartyId=Company
>  (PDF export)
> They work in stable demo, there is no Birt there
> http://demo-stable-ofbiz.apache.org/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> http://demo-stable-ofbiz.apache.org/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> Here is Arun's comment about that
> {quote}
> There are some report forms with hyper-link that are throwing error in pdf 
> export. We will have to find a way to use these form in both process ie 
> report rendering and pdf export
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-6638) TrialBalance PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar updated OFBIZ-6638:

Affects Version/s: Release Branch 14.12
   Release Branch 15.12

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Attachments: OFBIZ-6638.patch
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-6638) TrialBalance PDF export fails

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-6638:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
> Attachments: OFBIZ-6638.patch
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-6639) Birt issues in accounting reports

2016-07-01 Thread Arun Patidar (JIRA)

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

Arun Patidar reassigned OFBIZ-6639:
---

Assignee: Arun Patidar  (was: Rohit Koushal)

> Birt issues in accounting reports
> -
>
> Key: OFBIZ-6639
> URL: https://issues.apache.org/jira/browse/OFBIZ-6639
> Project: OFBiz
>  Issue Type: Bug
>  Components: accounting, specialpurpose/birt
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>
>  The followings are Birt issues
> https://ofbiz-vm.apache.org:8443/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> https://ofbiz-vm.apache.org:8443/accounting/control/TrialBalance?organizationPartyId=Company
>  (PDF export)
> They work in stable demo, there is no Birt there
> http://demo-stable-ofbiz.apache.org/accounting/control/IncomeStatement?organizationPartyId=Company
>  (PFD export)
> http://demo-stable-ofbiz.apache.org/accounting/control/BalanceSheet?organizationPartyId=Company
>  (PFD export)
> Here is Arun's comment about that
> {quote}
> There are some report forms with hyper-link that are throwing error in pdf 
> export. We will have to find a way to use these form in both process ie 
> report rendering and pdf export
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7669) SpecialPurpose/ebaystore: Correct all the checkboxes and radio buttons in all the ebaystore FTLs.

2016-07-01 Thread Mohammad Kathawala (JIRA)

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

Mohammad Kathawala updated OFBIZ-7669:
--
Attachment: OFBIZ-7669.patch

Added label tags for all the checkboxes and radio buttons in all the FTLs of 
ebaystore application i.e. all the FTLs related 
'specialpurpose/ebaystore/template'.
Attached patch.

> SpecialPurpose/ebaystore: Correct all the checkboxes and radio buttons in all 
> the ebaystore FTLs.
> -
>
> Key: OFBIZ-7669
> URL: https://issues.apache.org/jira/browse/OFBIZ-7669
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: ALL APPLICATIONS
>Affects Versions: Upcoming Branch
>Reporter: Mohammad Kathawala
>Assignee: Mohammad Kathawala
>Priority: Minor
> Attachments: OFBIZ-7669.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7700) File Not Found exception in export to ebay

2016-07-01 Thread Ankit Joshi (JIRA)

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

Ankit Joshi updated OFBIZ-7700:
---
Assignee: (was: Ankit Joshi)

> File Not Found exception in export to ebay
> --
>
> Key: OFBIZ-7700
> URL: https://issues.apache.org/jira/browse/OFBIZ-7700
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/ebay
>Affects Versions: Trunk
>Reporter: Ankit Joshi
> Attachments: OFBIZ-7700.patch
>
>
> Steps to regenerate -
> Navigate to ebay component and perform advanced search in category.
>  Here is the reference link -
> https://ofbiz-vm.apache.org:8443/ebay/control/keywordsearch 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7700) File Not Found exception in export to ebay

2016-07-01 Thread Ankit Joshi (JIRA)

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

Ankit Joshi updated OFBIZ-7700:
---
Attachment: OFBIZ-7700.patch

Issue was because of typo in the file name. Attached the patch with proper fix.

> File Not Found exception in export to ebay
> --
>
> Key: OFBIZ-7700
> URL: https://issues.apache.org/jira/browse/OFBIZ-7700
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/ebay
>Affects Versions: Trunk
>Reporter: Ankit Joshi
>Assignee: Ankit Joshi
> Attachments: OFBIZ-7700.patch
>
>
> Steps to regenerate -
> Navigate to ebay component and perform advanced search in category.
>  Here is the reference link -
> https://ofbiz-vm.apache.org:8443/ebay/control/keywordsearch 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7700) File Not Found exception in export to ebay

2016-07-01 Thread Ankit Joshi (JIRA)
Ankit Joshi created OFBIZ-7700:
--

 Summary: File Not Found exception in export to ebay
 Key: OFBIZ-7700
 URL: https://issues.apache.org/jira/browse/OFBIZ-7700
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/ebay
Affects Versions: Trunk
Reporter: Ankit Joshi
Assignee: Ankit Joshi


Steps to regenerate -
Navigate to ebay component and perform advanced search in category.

 Here is the reference link -
https://ofbiz-vm.apache.org:8443/ebay/control/keywordsearch 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7594) Unable to delete a survey in project component

2016-07-01 Thread Suraj Khurana (JIRA)

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

Suraj Khurana commented on OFBIZ-7594:
--

[~deepak.baghel] I think this is an existing behaviour, records won't get 
deleted only get expired.

Please correct me if I am wrong.
If it makes sense to you as well, this ticket can be discarded as well.

> Unable to delete a survey in project component
> --
>
> Key: OFBIZ-7594
> URL: https://issues.apache.org/jira/browse/OFBIZ-7594
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Trunk
>Reporter: Deepak Baghel
>Assignee: Deepak Baghel
>
> Step to regenerate 
> 1. Login into project component.
> 2. Go to the task section.
> 3. Find the task.
> 4. Go to the any of the task from the list.
> 5. Then go to surveys section
> 6. Try to delete the survey, if any exist.
> 7. Surveys are unable to delete.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7699) Invalid content was found starting with element 'xls'

2016-07-01 Thread Nameet Jain (JIRA)

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

Nameet Jain updated OFBIZ-7699:
---
Description: 
If found this in console logs:

XmlFileLoader: File 
file:/home/ofbizDemo/trunk/framework/common/widget/CommonScreens.xml process 
error. Line: 491. Error message: cvc-complex-type.2.4.d: Invalid content was 
found starting with element 'xls'. No child element is expected at this point.

  was:
If found this in console logs:

|UtilXml |E| XmlFileLoader: File 
file:/home/ofbizDemo/trunk/framework/common/widget/CommonScreens.xml process 
error. Line: 491. Error message: cvc-complex-type.2.4.d: Invalid content was 
found starting with element 'xls'. No child element is expected at this point.


> Invalid content was found starting with element 'xls'
> -
>
> Key: OFBIZ-7699
> URL: https://issues.apache.org/jira/browse/OFBIZ-7699
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Trunk
>Reporter: Nameet Jain
>Priority: Minor
>
> If found this in console logs:
> XmlFileLoader: File 
> file:/home/ofbizDemo/trunk/framework/common/widget/CommonScreens.xml process 
> error. Line: 491. Error message: cvc-complex-type.2.4.d: Invalid content was 
> found starting with element 'xls'. No child element is expected at this point.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7699) Invalid content was found starting with element 'xls'

2016-07-01 Thread Nameet Jain (JIRA)
Nameet Jain created OFBIZ-7699:
--

 Summary: Invalid content was found starting with element 'xls'
 Key: OFBIZ-7699
 URL: https://issues.apache.org/jira/browse/OFBIZ-7699
 Project: OFBiz
  Issue Type: Bug
Affects Versions: Trunk
Reporter: Nameet Jain
Priority: Minor


If found this in console logs:

|UtilXml |E| XmlFileLoader: File 
file:/home/ofbizDemo/trunk/framework/common/widget/CommonScreens.xml process 
error. Line: 491. Error message: cvc-complex-type.2.4.d: Invalid content was 
found starting with element 'xls'. No child element is expected at this point.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7611) Track userlogin for status change

2016-07-01 Thread Nameet Jain (JIRA)

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

Nameet Jain commented on OFBIZ-7611:


Sure :)

> Track userlogin for status change
> -
>
> Key: OFBIZ-7611
> URL: https://issues.apache.org/jira/browse/OFBIZ-7611
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
>Reporter: Nameet Jain
>Assignee: Nicolas Malin
> Attachments: OFBIZ-7611.patch
>
>
> Currently in OFBiz, 'changedByUserLoginId' field is missing from status 
> entities (like: ShipmentStatus). Using this field we can maintain the history 
> for each status change made by user.
> Update all respective service and events to ensure this field gets updated.
> Here is the list of entities with missing this field.
> 1. BudgetStatus
> 2. ContactListCommStatus
> 3. CustRequestStatus
> 4. ExampleStatus
> 5. FinAccountStatus
> 6. InventoryItemStatus
> 7. InvoiceStatus
> 8. PartyStatus
> 9. RequirementStatus
> 10. ShipmentStatus



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-6214) Have overview of questions in EditSurveyQuestions.ftl paginate properly

2016-07-01 Thread Yashwant Dhakad (JIRA)

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

Yashwant Dhakad updated OFBIZ-6214:
---
Attachment: OFBIZ-6214.patch

Here is the patch for this issue.

> Have  overview of questions in EditSurveyQuestions.ftl paginate properly
> 
>
> Key: OFBIZ-6214
> URL: https://issues.apache.org/jira/browse/OFBIZ-6214
> Project: OFBiz
>  Issue Type: Improvement
>  Components: content
>Affects Versions: Trunk
> Environment: Currently when having more than a fixed set of question 
> in a survey the remainder isn't shown. Nor can these questions be accessed.
> The pagination of EditSurveyQuestions.ftl doesn't do pagination.
>Reporter: Pierre Smits
>Assignee: Yashwant Dhakad
>  Labels: questions, survey
> Attachments: OFBIZ-6214.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7698) Remove un-used variables from Java and Groovy files.

2016-07-01 Thread Deepak Nigam (JIRA)
Deepak Nigam created OFBIZ-7698:
---

 Summary: Remove un-used variables from Java and Groovy files.
 Key: OFBIZ-7698
 URL: https://issues.apache.org/jira/browse/OFBIZ-7698
 Project: OFBiz
  Issue Type: Improvement
  Components: ALL COMPONENTS
Reporter: Deepak Nigam


In many files we have some unused variables which are overhead for the system, 
we can remove these variables.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7676) Forum group name is not showing up on forum group roles and purposes screens

2016-07-01 Thread Pranay Pandey (JIRA)

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

Pranay Pandey reassigned OFBIZ-7676:


Assignee: Pranay Pandey  (was: Mohammed Rehan Khan)

> Forum group name is not showing up on forum group roles and purposes screens
> 
>
> Key: OFBIZ-7676
> URL: https://issues.apache.org/jira/browse/OFBIZ-7676
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: Release Branch 13.07, Release Branch 14.12, Trunk, 
> Release Branch 15.12
>Reporter: Mohammed Rehan Khan
>Assignee: Pranay Pandey
>Priority: Trivial
> Attachments: OFBIZ-7676.patch, screenshot-1.png, screenshot-2.png
>
>
> Here are the link to access 'Forum Group Roles' and 'Forum Group Purposes' 
> screen.
> # 
> https://ofbiz-vm.apache.org:8443/content/control/forumGroupRoles?forumGroupId=WebStoreFORUM
> # 
> https://ofbiz-vm.apache.org:8443/content/control/forumGroupPurposes?forumGroupId=WebStoreFORUM



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7534) Migrate OFBiz from Apache Ant to Gradle build system

2016-07-01 Thread Taher Alkhateeb (JIRA)

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

Taher Alkhateeb commented on OFBIZ-7534:


Hi Jacques,

Ok, figured it out, just use "double quotes" instead of 'single quotes'

So gradlew "ofbiz --start"

I will update the README.md. Thank you for the valuable feedback.

> Migrate OFBiz from Apache Ant to Gradle build system
> 
>
> Key: OFBIZ-7534
> URL: https://issues.apache.org/jira/browse/OFBIZ-7534
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Upcoming Branch
>Reporter: Taher Alkhateeb
>Assignee: Taher Alkhateeb
>  Labels: ant, build-tools, gradle
> Attachments: ANT_GRADLE_COMPARISON.txt, OFBIZ-7534.patch, 
> OFBIZ-7534.patch, OFBIZ-7534.patch, build.gradle, gradle-wrapper.jar
>
>
> This is a major refactoring task referring to the [email 
> thread|http://ofbiz.markmail.org/message/vstt3wxuubmjgmqj?q=Important+Changes+to+Trunk+and+Use+of+Ant+%26+Gradle]
>  in which the community voted for the switch after a proposal from the PMC
> The purpose of this JIRA is to achieve the following objectives
> - Fully implement a working compiling system in Gradle that passes all tests
> - Remove all ant and maven build scripts from the system
> - update the documentation of the system to reflect these changes



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7697) Add UI labels for success / eror messages in ftl files

2016-07-01 Thread Deepak Nigam (JIRA)
Deepak Nigam created OFBIZ-7697:
---

 Summary: Add UI labels for success / eror messages in ftl files
 Key: OFBIZ-7697
 URL: https://issues.apache.org/jira/browse/OFBIZ-7697
 Project: OFBiz
  Issue Type: Improvement
Reporter: Deepak Nigam






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7696) Add UI labels for success / eror messages in XML files

2016-07-01 Thread Deepak Nigam (JIRA)
Deepak Nigam created OFBIZ-7696:
---

 Summary: Add UI labels for success / eror messages in XML files
 Key: OFBIZ-7696
 URL: https://issues.apache.org/jira/browse/OFBIZ-7696
 Project: OFBiz
  Issue Type: Improvement
  Components: ALL COMPONENTS
Affects Versions: Trunk
Reporter: Deepak Nigam






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7695) Add UI labels for success / eror messages in java and groovy files

2016-07-01 Thread Deepak Nigam (JIRA)
Deepak Nigam created OFBIZ-7695:
---

 Summary: Add UI labels for success / eror messages in java and 
groovy files
 Key: OFBIZ-7695
 URL: https://issues.apache.org/jira/browse/OFBIZ-7695
 Project: OFBiz
  Issue Type: Improvement
  Components: ALL COMPONENTS
Affects Versions: Trunk
Reporter: Deepak Nigam






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7694) Support of Internationlization by adding UI labels for error / success messages

2016-07-01 Thread Deepak Nigam (JIRA)
Deepak Nigam created OFBIZ-7694:
---

 Summary: Support of Internationlization by adding UI labels for 
error / success messages
 Key: OFBIZ-7694
 URL: https://issues.apache.org/jira/browse/OFBIZ-7694
 Project: OFBiz
  Issue Type: Improvement
  Components: ALL COMPONENTS
Affects Versions: Trunk
Reporter: Deepak Nigam


At many places in the system we have hard-coded success / error messages, we 
can add UI lables for these so that user can see messages in corresponding 
language.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7693) Unable to access JIRA

2016-07-01 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya closed OFBIZ-7693.
--
Resolution: Invalid

Please discard it, Was planning to create this issue on INFRA but mistakenly 
created it here. Extremely sorry for the inconvenience caused. 

> Unable to access JIRA
> -
>
> Key: OFBIZ-7693
> URL: https://issues.apache.org/jira/browse/OFBIZ-7693
> Project: OFBiz
>  Issue Type: Bug
>Reporter: Ashish Vijaywargiya
>Assignee: Ashish Vijaywargiya
>Priority: Blocker
>
> Dear ASF Team,
> I am writing this email on behalf of HotWax Systems Team India. Our team 
> members are unable to access jira. Can you please help us on this? 
> Here is our IP address from where outer traffic gets generated:
> 111.118.250.178
> Here is the output of traceroute command output:
> ashish@dell-precision-m90:~$ traceroute issues.apache.org
> traceroute to issues.apache.org (140.211.11.138), 30 hops max, 60 byte packets
>  1  111.118.250.177 (111.118.250.177)  0.284 ms  0.258 ms  0.478 ms
>  2  10.182.85.93 (10.182.85.93)  1.719 ms  1.708 ms  1.675 ms
>  3  static-129-147-1.rpnspl.com (150.129.147.1)  2.661 ms  2.656 ms  2.646 ms
>  4  static-129-144-1.rpnspl.com (150.129.144.1)  3.360 ms  3.101 ms  3.079 ms
>  5  14.141.63.141.static-Mumbai.vsnl.net.in (14.141.63.141)  37.582 ms  
> 37.045 ms  37.563 ms
>  6  * * *
>  7  ix-ae-0-100.tcore1.MLV-Mumbai.as6453.net (180.87.38.5)  64.522 ms  63.494 
> ms  63.207 ms
>  8  if-ae-5-6.tcore1.WYN-Marseille.as6453.net (180.87.38.126)  122.896 ms  
> 125.172 ms  125.156 ms
>  9  if-ae-8-1600.tcore1.PYE-Paris.as6453.net (80.231.217.6)  125.624 ms  
> 123.692 ms  123.643 ms
> 10  if-ae-2-2.tcore1.PVU-Paris.as6453.net (80.231.154.17)  123.358 ms  
> 125.107 ms  125.840 ms
> 11  80.231.153.66 (80.231.153.66)  126.840 ms  123.588 ms  123.299 ms
> 12  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  262.705 ms  264.452 ms  
> 263.515 ms
> 13  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  263.720 ms  261.770 ms  
> 261.521 ms
> 14  UNIVERSITY.edge2.Seattle3.Level3.net (4.59.234.70)  260.237 ms  260.028 
> ms  262.729 ms
> 15  corv-car1-gw.nero.net (207.98.64.39)  264.701 ms  264.267 ms  262.533 ms
> 16  proxy1-us-west.apache.org (140.211.11.138)  264.741 ms  267.497 ms  
> 265.774 ms
> If you need any other details then please let me know, I will help you guys 
> quick on this. It will be of great help if you guys could assist us quick on 
> this. All our team members here in India are blocked to access jira. 
> Thanks!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (OFBIZ-7693) Unable to access JIRA

2016-07-01 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya reassigned OFBIZ-7693:
--

Assignee: Ashish Vijaywargiya

> Unable to access JIRA
> -
>
> Key: OFBIZ-7693
> URL: https://issues.apache.org/jira/browse/OFBIZ-7693
> Project: OFBiz
>  Issue Type: Bug
>Reporter: Ashish Vijaywargiya
>Assignee: Ashish Vijaywargiya
>Priority: Blocker
>
> Dear ASF Team,
> I am writing this email on behalf of HotWax Systems Team India. Our team 
> members are unable to access jira. Can you please help us on this? 
> Here is our IP address from where outer traffic gets generated:
> 111.118.250.178
> Here is the output of traceroute command output:
> ashish@dell-precision-m90:~$ traceroute issues.apache.org
> traceroute to issues.apache.org (140.211.11.138), 30 hops max, 60 byte packets
>  1  111.118.250.177 (111.118.250.177)  0.284 ms  0.258 ms  0.478 ms
>  2  10.182.85.93 (10.182.85.93)  1.719 ms  1.708 ms  1.675 ms
>  3  static-129-147-1.rpnspl.com (150.129.147.1)  2.661 ms  2.656 ms  2.646 ms
>  4  static-129-144-1.rpnspl.com (150.129.144.1)  3.360 ms  3.101 ms  3.079 ms
>  5  14.141.63.141.static-Mumbai.vsnl.net.in (14.141.63.141)  37.582 ms  
> 37.045 ms  37.563 ms
>  6  * * *
>  7  ix-ae-0-100.tcore1.MLV-Mumbai.as6453.net (180.87.38.5)  64.522 ms  63.494 
> ms  63.207 ms
>  8  if-ae-5-6.tcore1.WYN-Marseille.as6453.net (180.87.38.126)  122.896 ms  
> 125.172 ms  125.156 ms
>  9  if-ae-8-1600.tcore1.PYE-Paris.as6453.net (80.231.217.6)  125.624 ms  
> 123.692 ms  123.643 ms
> 10  if-ae-2-2.tcore1.PVU-Paris.as6453.net (80.231.154.17)  123.358 ms  
> 125.107 ms  125.840 ms
> 11  80.231.153.66 (80.231.153.66)  126.840 ms  123.588 ms  123.299 ms
> 12  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  262.705 ms  264.452 ms  
> 263.515 ms
> 13  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  263.720 ms  261.770 ms  
> 261.521 ms
> 14  UNIVERSITY.edge2.Seattle3.Level3.net (4.59.234.70)  260.237 ms  260.028 
> ms  262.729 ms
> 15  corv-car1-gw.nero.net (207.98.64.39)  264.701 ms  264.267 ms  262.533 ms
> 16  proxy1-us-west.apache.org (140.211.11.138)  264.741 ms  267.497 ms  
> 265.774 ms
> If you need any other details then please let me know, I will help you guys 
> quick on this. It will be of great help if you guys could assist us quick on 
> this. All our team members here in India are blocked to access jira. 
> Thanks!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7693) Unable to access JIRA

2016-07-01 Thread Ashish Vijaywargiya (JIRA)
Ashish Vijaywargiya created OFBIZ-7693:
--

 Summary: Unable to access JIRA
 Key: OFBIZ-7693
 URL: https://issues.apache.org/jira/browse/OFBIZ-7693
 Project: OFBiz
  Issue Type: Bug
Reporter: Ashish Vijaywargiya
Priority: Blocker


Dear ASF Team,

I am writing this email on behalf of HotWax Systems Team India. Our team 
members are unable to access jira. Can you please help us on this? 

Here is our IP address from where outer traffic gets generated:
111.118.250.178

Here is the output of traceroute command output:
ashish@dell-precision-m90:~$ traceroute issues.apache.org

traceroute to issues.apache.org (140.211.11.138), 30 hops max, 60 byte packets

 1  111.118.250.177 (111.118.250.177)  0.284 ms  0.258 ms  0.478 ms

 2  10.182.85.93 (10.182.85.93)  1.719 ms  1.708 ms  1.675 ms

 3  static-129-147-1.rpnspl.com (150.129.147.1)  2.661 ms  2.656 ms  2.646 ms

 4  static-129-144-1.rpnspl.com (150.129.144.1)  3.360 ms  3.101 ms  3.079 ms

 5  14.141.63.141.static-Mumbai.vsnl.net.in (14.141.63.141)  37.582 ms  37.045 
ms  37.563 ms

 6  * * *

 7  ix-ae-0-100.tcore1.MLV-Mumbai.as6453.net (180.87.38.5)  64.522 ms  63.494 
ms  63.207 ms

 8  if-ae-5-6.tcore1.WYN-Marseille.as6453.net (180.87.38.126)  122.896 ms  
125.172 ms  125.156 ms

 9  if-ae-8-1600.tcore1.PYE-Paris.as6453.net (80.231.217.6)  125.624 ms  
123.692 ms  123.643 ms

10  if-ae-2-2.tcore1.PVU-Paris.as6453.net (80.231.154.17)  123.358 ms  125.107 
ms  125.840 ms

11  80.231.153.66 (80.231.153.66)  126.840 ms  123.588 ms  123.299 ms

12  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  262.705 ms  264.452 ms  
263.515 ms

13  ae-2-52.edge2.Seattle3.Level3.net (4.69.147.171)  263.720 ms  261.770 ms  
261.521 ms

14  UNIVERSITY.edge2.Seattle3.Level3.net (4.59.234.70)  260.237 ms  260.028 ms  
262.729 ms

15  corv-car1-gw.nero.net (207.98.64.39)  264.701 ms  264.267 ms  262.533 ms

16  proxy1-us-west.apache.org (140.211.11.138)  264.741 ms  267.497 ms  265.774 
ms

If you need any other details then please let me know, I will help you guys 
quick on this. It will be of great help if you guys could assist us quick on 
this. All our team members here in India are blocked to access jira. 

Thanks!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Closed] (OFBIZ-7484) The UI of payment section distorts when there is a billing account present for a customer while placing a sales order

2016-07-01 Thread Divesh Dutta (JIRA)

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

Divesh Dutta closed OFBIZ-7484.
---

> The UI of payment section distorts when there is a billing account present 
> for a customer while placing a sales order
> -
>
> Key: OFBIZ-7484
> URL: https://issues.apache.org/jira/browse/OFBIZ-7484
> Project: OFBiz
>  Issue Type: Improvement
>  Components: order
>Reporter: Mohammad Kathawala
>Assignee: Divesh Dutta
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7484.patch, ScreenShot2.png, Screenshot1.png
>
>
> Steps to generate:
> 1) Go to order entry process and select a customer having a billing account
> 2) Add items and continue to payment screen through Finalize Order or Quick 
> Finalize Order
> 3) Due to the select box of billing account, the UI distorts
> Please see the attached screenshots for reference.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (OFBIZ-7484) The UI of payment section distorts when there is a billing account present for a customer while placing a sales order

2016-07-01 Thread Divesh Dutta (JIRA)

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

Divesh Dutta resolved OFBIZ-7484.
-
Resolution: Fixed

> The UI of payment section distorts when there is a billing account present 
> for a customer while placing a sales order
> -
>
> Key: OFBIZ-7484
> URL: https://issues.apache.org/jira/browse/OFBIZ-7484
> Project: OFBiz
>  Issue Type: Improvement
>  Components: order
>Reporter: Mohammad Kathawala
>Assignee: Divesh Dutta
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-7484.patch, ScreenShot2.png, Screenshot1.png
>
>
> Steps to generate:
> 1) Go to order entry process and select a customer having a billing account
> 2) Add items and continue to payment screen through Finalize Order or Quick 
> Finalize Order
> 3) Due to the select box of billing account, the UI distorts
> Please see the attached screenshots for reference.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7484) The UI of payment section distorts when there is a billing account present for a customer while placing a sales order

2016-07-01 Thread Divesh Dutta (JIRA)

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

Divesh Dutta updated OFBIZ-7484:

Fix Version/s: (was: Trunk)
   Upcoming Branch

> The UI of payment section distorts when there is a billing account present 
> for a customer while placing a sales order
> -
>
> Key: OFBIZ-7484
> URL: https://issues.apache.org/jira/browse/OFBIZ-7484
> Project: OFBiz
>  Issue Type: Improvement
>  Components: order
>Reporter: Mohammad Kathawala
>Assignee: Divesh Dutta
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7484.patch, ScreenShot2.png, Screenshot1.png
>
>
> Steps to generate:
> 1) Go to order entry process and select a customer having a billing account
> 2) Add items and continue to payment screen through Finalize Order or Quick 
> Finalize Order
> 3) Due to the select box of billing account, the UI distorts
> Please see the attached screenshots for reference.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7484) The UI of payment section distorts when there is a billing account present for a customer while placing a sales order

2016-07-01 Thread Divesh Dutta (JIRA)

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

Divesh Dutta commented on OFBIZ-7484:
-

Patch is committed in revision number 1750888 in trunk. Thanks [~Mohammad K] 
for suggesting this improvement and giving patch for it. 

> The UI of payment section distorts when there is a billing account present 
> for a customer while placing a sales order
> -
>
> Key: OFBIZ-7484
> URL: https://issues.apache.org/jira/browse/OFBIZ-7484
> Project: OFBiz
>  Issue Type: Improvement
>  Components: order
>Reporter: Mohammad Kathawala
>Assignee: Divesh Dutta
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-7484.patch, ScreenShot2.png, Screenshot1.png
>
>
> Steps to generate:
> 1) Go to order entry process and select a customer having a billing account
> 2) Add items and continue to payment screen through Finalize Order or Quick 
> Finalize Order
> 3) Due to the select box of billing account, the UI distorts
> Please see the attached screenshots for reference.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-7611) Track userlogin for status change

2016-07-01 Thread Nicolas Malin (JIRA)

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

Nicolas Malin commented on OFBIZ-7611:
--

Oh nice Nameet,

I will continue, I have some idea in my brain ;)

> Track userlogin for status change
> -
>
> Key: OFBIZ-7611
> URL: https://issues.apache.org/jira/browse/OFBIZ-7611
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: Trunk
>Reporter: Nameet Jain
>Assignee: Nicolas Malin
> Attachments: OFBIZ-7611.patch
>
>
> Currently in OFBiz, 'changedByUserLoginId' field is missing from status 
> entities (like: ShipmentStatus). Using this field we can maintain the history 
> for each status change made by user.
> Update all respective service and events to ensure this field gets updated.
> Here is the list of entities with missing this field.
> 1. BudgetStatus
> 2. ContactListCommStatus
> 3. CustRequestStatus
> 4. ExampleStatus
> 5. FinAccountStatus
> 6. InventoryItemStatus
> 7. InvoiceStatus
> 8. PartyStatus
> 9. RequirementStatus
> 10. ShipmentStatus



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7692) Enforce noninstantiability to AuthHelper class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7692:


 Summary: Enforce noninstantiability to AuthHelper class
 Key: OFBIZ-7692
 URL: https://issues.apache.org/jira/browse/OFBIZ-7692
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.
- Make the following protected static variables as private
{code}
protected static List authenticators = new 
ArrayList();
protected static boolean authenticatorsLoaded = false;
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7691) Enforce noninstantiability to GeoWorker class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7691:


 Summary: Enforce noninstantiability to GeoWorker class
 Key: OFBIZ-7691
 URL: https://issues.apache.org/jira/browse/OFBIZ-7691
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7690) Enforce noninstantiability to PreferenceWorker class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7690:


 Summary: Enforce noninstantiability to PreferenceWorker class
 Key: OFBIZ-7690
 URL: https://issues.apache.org/jira/browse/OFBIZ-7690
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.
- Make the following public static final variables as private
{code}
public static final String ADMIN_PERMISSION = "USERPREF_ADMIN";
public static final String LOGINID_PARAMETER_NAME = "userPrefLoginId";
public static final String DEFAULT_UID = "_NA_";
{code}

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7689) Enforce noninstantiability to PeriodWorker class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7689:


 Summary: Enforce noninstantiability to PeriodWorker class
 Key: OFBIZ-7689
 URL: https://issues.apache.org/jira/browse/OFBIZ-7689
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7688) Enforce noninstantiability to StatusWorker class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7688:


 Summary: Enforce noninstantiability to StatusWorker class
 Key: OFBIZ-7688
 URL: https://issues.apache.org/jira/browse/OFBIZ-7688
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7687) Enforce noninstantiability to KeywordSearchUtil class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7687:


 Summary: Enforce noninstantiability to KeywordSearchUtil class
 Key: OFBIZ-7687
 URL: https://issues.apache.org/jira/browse/OFBIZ-7687
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.
- Make the following public static variables as private
{code}
public static Set thesaurusRelsToInclude = new HashSet();
public static Set thesaurusRelsForReplace = new HashSet();
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7686) Enforce noninstantiability to EntityEcaUtil class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7686:


 Summary: Enforce noninstantiability to EntityEcaUtil class
 Key: OFBIZ-7686
 URL: https://issues.apache.org/jira/browse/OFBIZ-7686
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.
- Make the following protected static methods as private
{code}
protected static Callable 
createEcaLoaderCallable(final ResourceHandler handler)
{code}

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7685) Enforce noninstantiability to RecurrenceUtil class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7685:


 Summary: Enforce noninstantiability to RecurrenceUtil class
 Key: OFBIZ-7685
 URL: https://issues.apache.org/jira/browse/OFBIZ-7685
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.

No variables needs to be change for this class.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-7684) Enforce noninstantiability to ServiceConfigUtil class

2016-07-01 Thread Rishi Solanki (JIRA)
Rishi Solanki created OFBIZ-7684:


 Summary: Enforce noninstantiability to ServiceConfigUtil class
 Key: OFBIZ-7684
 URL: https://issues.apache.org/jira/browse/OFBIZ-7684
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: Trunk
Reporter: Rishi Solanki
Priority: Minor


- Make class as final.
- Add a private constructor.
- Make the following public static variables as private
{code}
public static final String engine = "default";
public static final String SERVICE_ENGINE_XML_FILENAME = 
"serviceengine.xml";
{code}
- Add public static method as getServiceEngineXmlFileName(), getEngine() and 
use them in following class
{code}
ServiceEcaUtil.java
ServiceGroupReader.java
DispatchContext.java
JobPoller.java
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OFBIZ-7063) Shipping charges reset to ZERO when update purchase order item quantity

2016-07-01 Thread Pawan Verma (JIRA)

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

Pawan Verma updated OFBIZ-7063:
---
Attachment: OFBIZ-7063.patch

Attaching Patch for this issue. This patch will also fix issue OFBIZ-7064.

> Shipping charges reset to ZERO when update purchase order item quantity
> ---
>
> Key: OFBIZ-7063
> URL: https://issues.apache.org/jira/browse/OFBIZ-7063
> Project: OFBiz
>  Issue Type: Bug
>  Components: order
>Affects Versions: Release Branch 14.12, Trunk
>Reporter: Akash Jain
> Attachments: OFBIZ-7063.patch
>
>
> Following are the steps:
> -- Place PO with some shipping amount
> -- Edit order item quantity
> Expected Result: Shipping amount should not be update
> Actual Result: Shipping amount becomes ZERO



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)