[jira] [Closed] (OFBIZ-4106) deleteCustomerTaxAuthInfo page called from /ecommerce/control/viewprofile

2016-10-10 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux closed OFBIZ-4106.
--
   Resolution: Fixed
 Assignee: Jacques Le Roux
Fix Version/s: Release Branch 13.07
   Release Branch 14.12
   Release Branch 15.12
   Upcoming Branch

This had finally been fixed by removing the possibility of creating "Tax 
Identifications and Exemptions". Because users would actually need to have the  
ACCOUNTING_CREATE or ACCOUNTING_ADMIN permissions to do so (or higher admin 
permissions) and opening the accounting (or total) admin right to a customer 
seems not secure to me.

Moreover the same exists in party and it needs admin rights in both places, so 
does not make sense in ecommerce. 

Done in 
trunk r1764158+r1764176+r1764178
R15.12, R14.12, R13.07 r1764179


> deleteCustomerTaxAuthInfo page called from /ecommerce/control/viewprofile
> -
>
> Key: OFBIZ-4106
> URL: https://issues.apache.org/jira/browse/OFBIZ-4106
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: specialpurpose/ecommerce
>Affects Versions: Release 09.04
> Environment: Linux x64 Debian AMD64
>Reporter: MichaƂ Cukierman
>Assignee: Jacques Le Roux
> Fix For: Upcoming Branch, Release Branch 15.12, Release Branch 
> 14.12, Release Branch 13.07
>
> Attachments: Zaznaczenie_001.png
>
>
> Steps to reproduce:
> 1) Login to ecommerce app
> 2) View the profile
> 3) Add some  entries uder Tax Identification and Exemption
> 4) Try to delete previously added value



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


[jira] [Assigned] (OFBIZ-8321) Labels cache clearing no longer works

2016-10-10 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux reassigned OFBIZ-8321:
--

Assignee: Jacques Le Roux

> Labels cache clearing no longer works
> -
>
> Key: OFBIZ-8321
> URL: https://issues.apache.org/jira/browse/OFBIZ-8321
> Project: OFBiz
>  Issue Type: Bug
>  Components: ALL APPLICATIONS
>Affects Versions: Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
> Fix For: Upcoming Branch
>
>
> While working on OFBIZ-7798 I noticed an issue with labels cache clearing. It 
> still works correctly in R15.12, I did not test between.
> To test it, load a page with a label, change the label in file, clear all 
> caches in webtools, the new label value should appear, it does not.



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


[jira] [Commented] (OFBIZ-8321) Labels cache clearing no longer works

2016-10-10 Thread Jacques Le Roux (JIRA)

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

Jacques Le Roux commented on OFBIZ-8321:


This is related with OFBIZ-7937. A simple solution is to exclude all labels 
files. I propose this, there should not be any *Labels*.xml in config dirs 
which would not be a labels files.

{code}
Index: build.gradle
===
--- build.gradle(revision 1763752)
+++ build.gradle(working copy)
@@ -192,6 +192,15 @@
 excludedJavaSources.add 
'org/apache/ofbiz/order/thirdparty/taxware/TaxwareServices.java'
 excludedJavaSources.add 
'org/apache/ofbiz/order/thirdparty/taxware/TaxwareUTL.java'

+def excludedLabelsFiles = []
+excludedLabelsFiles.add '*Labels*.xml'
+excludedLabelsFiles.add 'conditional.xml'
+excludedLabelsFiles.add 'DefaultMessages.xml'
+excludedLabelsFiles.add 'EmailPassword.xml'
+
+
+
+
 sourceSets {
 main {
 java {
@@ -203,6 +212,7 @@
 srcDirs += getDirectoryInActiveComponentsIfExists('config')
 srcDirs += getDirectoryInActiveComponentsIfExists('dtd')
 exclude excludedJavaSources
+exclude excludedLabelsFiles
 }
 }
{code}

BTW It seems to me it would be better to rename
conditional.xml to conditionalLabels.xml
DefaultMessages.xml to DefaultMessagesLabels.xml
EmailPassword.xml to EmailPasswordLabels.xml
I'd do so in few days if nobody disagree


Also Pierre already proposed at OFBIZ-7893 to exclude:
+exclude ('*.xml')
+exclude ('*.txt')
+exclude ('*.jks')
+exclude ('README')

I see really no reason to not exclude text and readme files. For *.xml I'd be 
more cautious, for instance what about axis2.xml and DefaultBarcode.xml? Are 
they usefull in ofbiz.jar? It seems not to me but would be better to check, and 
not only those.

For *.jks I guess it's ok to exclude, I'll anyway check this when I'll 
implement OFBIZ-7928 which should be hopefully soon.

I like to be able to dynamically changes properties by clearing their cache. So 
I'd also exclude them, but we need to check if nothing would break. For 
instance the properties files in 
framework/start/src/main/java/org/apache/ofbiz/base/start should not be 
excluded I guess. For the others I see no reasons to not exclude.

I'm also curious about why
srcDirs += getDirectoryInActiveComponentsIfExists('dtd')
was added in http://svn.apache.org/viewvc?view=revision=1761440.
I guess for a good reason, and anyway it's not a big deal (apart bloating 
ofbiz.jar) since I see no reasons to dynamically changes these files while 
running OFBiz, so more curious than anything else here.



> Labels cache clearing no longer works
> -
>
> Key: OFBIZ-8321
> URL: https://issues.apache.org/jira/browse/OFBIZ-8321
> Project: OFBiz
>  Issue Type: Bug
>  Components: ALL APPLICATIONS
>Affects Versions: Trunk
>Reporter: Jacques Le Roux
> Fix For: Upcoming Branch
>
>
> While working on OFBIZ-7798 I noticed an issue with labels cache clearing. It 
> still works correctly in R15.12, I did not test between.
> To test it, load a page with a label, change the label in file, clear all 
> caches in webtools, the new label value should appear, it does not.



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


[jira] [Updated] (OFBIZ-8367) Convert removeMimeType service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8367:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeMimeType service from simple to entity-auto
> -
>
> Key: OFBIZ-8367
> URL: https://issues.apache.org/jira/browse/OFBIZ-8367
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8367.patch
>
>
> Convert removeMimeType service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8362) Convert createMetaDataPredicate service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8362:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createMetaDataPredicate service from simple to entity-auto
> --
>
> Key: OFBIZ-8362
> URL: https://issues.apache.org/jira/browse/OFBIZ-8362
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8362.patch
>
>
> Convert createMetaDataPredicate service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8366) Convert updateMimeType service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8366:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateMimeType service from simple to entity-auto
> -
>
> Key: OFBIZ-8366
> URL: https://issues.apache.org/jira/browse/OFBIZ-8366
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8366.patch
>
>
> Convert updateMimeType service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8359) Convert createFileExtension service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8359:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createFileExtension service from simple to entity-auto
> --
>
> Key: OFBIZ-8359
> URL: https://issues.apache.org/jira/browse/OFBIZ-8359
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8359.patch
>
>
> Convert createFileExtension service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8356) Convert updateCharacterSet service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8356:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateCharacterSet service from simple to entity-auto
> -
>
> Key: OFBIZ-8356
> URL: https://issues.apache.org/jira/browse/OFBIZ-8356
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8356.patch
>
>
> Convert updateCharacterSet service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8363) Convert updateMetaDataPredicate service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8363:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateMetaDataPredicate service from simple to entity-auto
> --
>
> Key: OFBIZ-8363
> URL: https://issues.apache.org/jira/browse/OFBIZ-8363
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8363.patch
>
>
> Convert updateMetaDataPredicate service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8360) Convert updateFileExtension service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8360:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateFileExtension service from simple to entity-auto
> --
>
> Key: OFBIZ-8360
> URL: https://issues.apache.org/jira/browse/OFBIZ-8360
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8360.patch
>
>
> Convert updateFileExtension service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8355) Convert createCharacterSet service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8355:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createCharacterSet service from simple to entity-auto
> -
>
> Key: OFBIZ-8355
> URL: https://issues.apache.org/jira/browse/OFBIZ-8355
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8355.patch
>
>
> Convert createCharacterSet service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8365) Convert createMimeType service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8365:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createMimeType service from simple to entity-auto
> -
>
> Key: OFBIZ-8365
> URL: https://issues.apache.org/jira/browse/OFBIZ-8365
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8365.patch
>
>
> Convert createMimeType service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8369) Convert updateMimeTypeHtmlTemplate service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8369:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateMimeTypeHtmlTemplate service from simple to entity-auto
> -
>
> Key: OFBIZ-8369
> URL: https://issues.apache.org/jira/browse/OFBIZ-8369
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8369.patch
>
>
> Convert updateMimeTypeHtmlTemplate service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8371) Convert updateElectronicText service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8371:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateElectronicText service from simple to entity-auto
> ---
>
> Key: OFBIZ-8371
> URL: https://issues.apache.org/jira/browse/OFBIZ-8371
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8371.patch
>
>
> Convert updateElectronicText service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8375) Convert removeContactMechAttribute service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8375:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeContactMechAttribute service from simple to entity-auto
> -
>
> Key: OFBIZ-8375
> URL: https://issues.apache.org/jira/browse/OFBIZ-8375
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8375.patch
>
>
> Convert removeContactMechAttribute service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8374) Convert updateContactMechAttribute service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8374:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateContactMechAttribute service from simple to entity-auto
> -
>
> Key: OFBIZ-8374
> URL: https://issues.apache.org/jira/browse/OFBIZ-8374
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8374.patch
>
>
> Convert updateContactMechAttribute service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8373) Convert createContactMechAttribute service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8373:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createContactMechAttribute service from simple to entity-auto
> -
>
> Key: OFBIZ-8373
> URL: https://issues.apache.org/jira/browse/OFBIZ-8373
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8373.patch
>
>
> Convert createContactMechAttribute service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8361) Convert removeFileExtension service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8361:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeFileExtension service from simple to entity-auto
> --
>
> Key: OFBIZ-8361
> URL: https://issues.apache.org/jira/browse/OFBIZ-8361
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8361.patch
>
>
> Convert removeFileExtension service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8379) Convert updateGlAccountOrganization service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8379:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateGlAccountOrganization service from simple to entity-auto
> --
>
> Key: OFBIZ-8379
> URL: https://issues.apache.org/jira/browse/OFBIZ-8379
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8379.patch
>
>
> Convert updateGlAccountOrganization service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8386) Convert updatePartyGlAccount service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8386:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updatePartyGlAccount service from simple to entity-auto
> ---
>
> Key: OFBIZ-8386
> URL: https://issues.apache.org/jira/browse/OFBIZ-8386
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8386.patch
>
>
> Convert updatePartyGlAccount service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8377) Convert updateGlAccount service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8377:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateGlAccount service from simple to entity-auto
> --
>
> Key: OFBIZ-8377
> URL: https://issues.apache.org/jira/browse/OFBIZ-8377
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8377.patch
>
>
> Convert updateGlAccount service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8384) Convert deleteGlReconciliation service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8384:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteGlReconciliation service from simple to entity-auto
> -
>
> Key: OFBIZ-8384
> URL: https://issues.apache.org/jira/browse/OFBIZ-8384
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8384.patch
>
>
> Convert deleteGlReconciliation service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8380) Convert deleteGlAccountOrganization service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8380:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteGlAccountOrganization service from simple to entity-auto
> --
>
> Key: OFBIZ-8380
> URL: https://issues.apache.org/jira/browse/OFBIZ-8380
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8380.patch
>
>
> Convert deleteGlAccountOrganization service from simple to entity-auto



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


[jira] [Updated] (OFBIZ-8388) Convert removeAddressMatchMap service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8388:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeAddressMatchMap service from simple to entity-auto
> 
>
> Key: OFBIZ-8388
> URL: https://issues.apache.org/jira/browse/OFBIZ-8388
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: party
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8388.patch
>
>
> Convert removeAddressMatchMap service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8385) Convert createPartyGlAccount service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8385:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createPartyGlAccount service from simple to entity-auto
> ---
>
> Key: OFBIZ-8385
> URL: https://issues.apache.org/jira/browse/OFBIZ-8385
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8385.patch
>
>
> Convert createPartyGlAccount service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8381) Convert createGlJournal service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8381:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createGlJournal service from simple to entity-auto
> --
>
> Key: OFBIZ-8381
> URL: https://issues.apache.org/jira/browse/OFBIZ-8381
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8381.patch
>
>
> Convert createGlJournal service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8378) Convert deleteGlAccount service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8378:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteGlAccount service from simple to entity-auto
> --
>
> Key: OFBIZ-8378
> URL: https://issues.apache.org/jira/browse/OFBIZ-8378
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8378.patch
>
>
> Convert deleteGlAccount service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8294) Convert updateDataCategory service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8294:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateDataCategory service from simple to entity-auto
> -
>
> Key: OFBIZ-8294
> URL: https://issues.apache.org/jira/browse/OFBIZ-8294
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
> Attachments: OFBIZ-8294.patch
>
>
> Convert updateDataCategory service from simple to entity-auto as it is simply 
> update data category.



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


[jira] [Updated] (OFBIZ-8350) Convert updateDataResourceType service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8350:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateDataResourceType service from simple to entity-auto
> -
>
> Key: OFBIZ-8350
> URL: https://issues.apache.org/jira/browse/OFBIZ-8350
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8350.patch
>
>
> Convert updateDataResourceType service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8357) Convert removeCharacterSet service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8357:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeCharacterSet service from simple to entity-auto
> -
>
> Key: OFBIZ-8357
> URL: https://issues.apache.org/jira/browse/OFBIZ-8357
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8357.patch
>
>
> Convert removeCharacterSet service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8346) Convert updateDataResourceRole service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8346:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateDataResourceRole service from simple to entity-auto
> -
>
> Key: OFBIZ-8346
> URL: https://issues.apache.org/jira/browse/OFBIZ-8346
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8346.patch
>
>
> Convert updateDataResourceRole service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8349) Convert createDataResourceType service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8349:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createDataResourceType service from simple to entity-auto
> -
>
> Key: OFBIZ-8349
> URL: https://issues.apache.org/jira/browse/OFBIZ-8349
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: content
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8349.patch
>
>
> Convert createDataResourceType service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8389) Convert createReturnItemBilling service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8389:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createReturnItemBilling service from simple to entity-auto
> --
>
> Key: OFBIZ-8389
> URL: https://issues.apache.org/jira/browse/OFBIZ-8389
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: order
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8389.patch
>
>
> Convert createReturnItemBilling service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8392) Convert createVendorProduct service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8392:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createVendorProduct service from simple to entity-auto
> --
>
> Key: OFBIZ-8392
> URL: https://issues.apache.org/jira/browse/OFBIZ-8392
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8392.patch
>
>
> Convert createVendorProduct service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8394) Convert unassignPartyFromWorkEffort service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8394:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert unassignPartyFromWorkEffort service from simple to entity-auto
> --
>
> Key: OFBIZ-8394
> URL: https://issues.apache.org/jira/browse/OFBIZ-8394
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8394.patch
>
>
> Convert unassignPartyFromWorkEffort service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8398) Convert removeWorkEffortGoodStandard service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8398:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeWorkEffortGoodStandard service from simple to entity-auto
> ---
>
> Key: OFBIZ-8398
> URL: https://issues.apache.org/jira/browse/OFBIZ-8398
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8398.patch
>
>
> Convert removeWorkEffortGoodStandard service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8396) Convert removeWorkEffortAssoc service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8396:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert removeWorkEffortAssoc service from simple to entity-auto
> 
>
> Key: OFBIZ-8396
> URL: https://issues.apache.org/jira/browse/OFBIZ-8396
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8396.patch
>
>
> Convert removeWorkEffortAssoc service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8395) Convert updateWorkEffortAssoc service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8395:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateWorkEffortAssoc service from simple to entity-auto
> 
>
> Key: OFBIZ-8395
> URL: https://issues.apache.org/jira/browse/OFBIZ-8395
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8395.patch
>
>
> Convert updateWorkEffortAssoc service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8401) Convert deleteWorkEffortSkillStandard service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8401:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteWorkEffortSkillStandard service from simple to entity-auto
> 
>
> Key: OFBIZ-8401
> URL: https://issues.apache.org/jira/browse/OFBIZ-8401
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8401.patch
>
>
> Convert deleteWorkEffortSkillStandard service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8397) Convert updateWorkEffortGoodStandard service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8397:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateWorkEffortGoodStandard service from simple to entity-auto
> ---
>
> Key: OFBIZ-8397
> URL: https://issues.apache.org/jira/browse/OFBIZ-8397
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8397.patch
>
>
> Convert updateWorkEffortGoodStandard service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8399) Convert createWorkEffortSkillStandard service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8399:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert createWorkEffortSkillStandard service from simple to entity-auto
> 
>
> Key: OFBIZ-8399
> URL: https://issues.apache.org/jira/browse/OFBIZ-8399
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8399.patch
>
>
> Convert createWorkEffortSkillStandard service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8405) Convert deleteWorkEffortInventoryProduced service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8405:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteWorkEffortInventoryProduced service from simple to entity-auto
> 
>
> Key: OFBIZ-8405
> URL: https://issues.apache.org/jira/browse/OFBIZ-8405
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8405.patch
>
>
> Convert deleteWorkEffortInventoryProduced service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8403) Convert deleteWorkEffortInventoryProduced service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8403:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert deleteWorkEffortInventoryProduced service from simple to entity-auto
> 
>
> Key: OFBIZ-8403
> URL: https://issues.apache.org/jira/browse/OFBIZ-8403
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8403.patch
>
>
> Convert deleteWorkEffortInventoryProduced service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8406) Convert updateWorkEffortSurveyAppl service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8406:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updateWorkEffortSurveyAppl service from simple to entity-auto
> -
>
> Key: OFBIZ-8406
> URL: https://issues.apache.org/jira/browse/OFBIZ-8406
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: workeffort
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8406.patch
>
>
> Convert updateWorkEffortSurveyAppl service from simple to entity-auto.



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


[jira] [Updated] (OFBIZ-8407) Convert updatePayPalPaymentMethod service from simple to entity-auto

2016-10-10 Thread Deepak Dixit (JIRA)

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

Deepak Dixit updated OFBIZ-8407:

Issue Type: Sub-task  (was: Improvement)
Parent: OFBIZ-8408

> Convert updatePayPalPaymentMethod service from simple to entity-auto
> 
>
> Key: OFBIZ-8407
> URL: https://issues.apache.org/jira/browse/OFBIZ-8407
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk
>Reporter: Pawan Verma
>Priority: Minor
> Attachments: OFBIZ-8407.patch
>
>
> Convert updatePayPalPaymentMethod service from simple to entity-auto.



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