Re: svn commit: r1761130 - in /ofbiz/trunk: applications/order/servicedef/services_request.xml framework/common/ofbiz-component.xml framework/common/servicedef/services_method.xml

2016-09-19 Thread Michael Brohl

Thanks, Arun!

Michael

Am 19.09.16 um 10:08 schrieb Arun Patidar:

Good catch Michael. Thanks for reporting.

Correct issues are OFBIZ-8132, OFBIZ-8133 and OFBIZ-8134. I am updating
commit log message.






smime.p7s
Description: S/MIME Cryptographic Signature


Re: svn commit: r1761130 - in /ofbiz/trunk: applications/order/servicedef/services_request.xml framework/common/ofbiz-component.xml framework/common/servicedef/services_method.xml

2016-09-19 Thread Arun Patidar
Good catch Michael. Thanks for reporting.

Correct issues are OFBIZ-8132, OFBIZ-8133 and OFBIZ-8134. I am updating
commit log message.

-- 
Thanks & Regards
---
Arun Patidar
Manager,Enterprise Software Development
HotWax Mediawww.hotwaxsystems.com


On Sun, Sep 18, 2016 at 2:17 AM, Michael Brohl 
wrote:

> Arun,
>
> are you sure about the referenced Jira issues? At least OFBIZ-8033 is
> another issue which I just committed.
>
> Can you please review and correct, it seems that the issues get the commit
> attached which is not correct.
>
> Thanks and regards,
>
> Michael
>
>
> Am 17.09.16 um 08:51 schrieb arunpati...@apache.org:
>
> Author: arunpatidar
>> Date: Sat Sep 17 06:51:07 2016
>> New Revision: 1761130
>>
>> URL: http://svn.apache.org/viewvc?rev=1761130=rev
>> Log:
>> Implemented: Added CRUD services for CustRequestType, CustRequestTypeAttr
>> and CustomMethod entity.
>> (OFBIZ-8032) (OFBIZ-8033)(OFBIZ-8034)
>>
>> Thanks: Amit Gadaley for the contribution.
>>
>> Added:
>>  ofbiz/trunk/framework/common/servicedef/services_method.xml
>> Modified:
>>  ofbiz/trunk/applications/order/servicedef/services_request.xml
>>  ofbiz/trunk/framework/common/ofbiz-component.xml
>>
>> Modified: ofbiz/trunk/applications/order/servicedef/services_request.xml
>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/
>> servicedef/services_request.xml?rev=1761130=1761129=
>> 1761130=diff
>> 
>> ==
>> --- ofbiz/trunk/applications/order/servicedef/services_request.xml
>> (original)
>> +++ ofbiz/trunk/applications/order/servicedef/services_request.xml Sat
>> Sep 17 06:51:07 2016
>> @@ -255,5 +255,33 @@ under the License.
>>   Delete a CustRequestResolution record
>>   
>>   
>> +> invoke="create" default-entity-name="CustRequestType" auth="true">
>> +Create a CustRequestType record
>> +
>> +
>> +
>> +> invoke="update" default-entity-name="CustRequestType" auth="true">
>> +Update a CustRequestType record
>> +
>> +
>> +
>> +> invoke="delete" default-entity-name="CustRequestType" auth="true">
>> +Delete a CustRequestType record
>> +
>> +
>> +> invoke="create" default-entity-name="CustRequestTypeAttr" auth="true">
>> +Create a CustRequestTypeAttr record
>> +
>> +
>> +
>> +> invoke="update" default-entity-name="CustRequestTypeAttr" auth="true">
>> +Update a CustRequestTypeAttr record
>> +
>> +
>> +
>> +> invoke="delete" default-entity-name="CustRequestTypeAttr" auth="true">
>> +Delete a CustRequestTypeAttr record
>> +
>> +
>>   
>>
>> Modified: ofbiz/trunk/framework/common/ofbiz-component.xml
>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/of
>> biz-component.xml?rev=1761130=1761129=1761130=diff
>> 
>> ==
>> --- ofbiz/trunk/framework/common/ofbiz-component.xml (original)
>> +++ ofbiz/trunk/framework/common/ofbiz-component.xml Sat Sep 17 06:51:07
>> 2016
>> @@ -65,6 +65,7 @@ under the License.
>>   > location="servicedef/services.xml"/>
>>   > location="servicedef/services_cdyne.xml"/>
>>   > location="servicedef/services_email.xml"/>
>> +> location="servicedef/services_method.xml"/>
>>   > location="servicedef/services_geo.xml"/>
>>   > location="servicedef/services_qrcode.xml"/>
>>   > location="servicedef/services_security.xml"/>
>>
>> Added: ofbiz/trunk/framework/common/servicedef/services_method.xml
>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/se
>> rvicedef/services_method.xml?rev=1761130=auto
>> 
>> ==
>> --- ofbiz/trunk/framework/common/servicedef/services_method.xml (added)
>> +++ ofbiz/trunk/framework/common/servicedef/services_method.xml Sat Sep
>> 17 06:51:07 2016
>> @@ -0,0 +1,42 @@
>> +
>> +
>> +
>> +http://www.w3.org/2001/XMLSchema-instance;
>> +xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/
>> services.xsd">
>> +OFBiz Method Services
>> +OFBiz
>> +1.0
>> +
>> +> invoke="create" default-entity-name="CustomMethod" auth="true">
>> +Create a Custom Method
>> +
>> +
>> +
>> +> invoke="update" default-entity-name="CustomMethod" auth="true">
>> +Update a Custom Method
>> +
>> +
>> +
>> +> invoke="delete" default-entity-name="CustomMethod" auth="true">
>> +Delete a Custom Method
>> +
>> +
>> +
>> +
>>
>>
>>
>
>


Re: svn commit: r1761130 - in /ofbiz/trunk: applications/order/servicedef/services_request.xml framework/common/ofbiz-component.xml framework/common/servicedef/services_method.xml

2016-09-17 Thread Michael Brohl

Arun,

are you sure about the referenced Jira issues? At least OFBIZ-8033 is 
another issue which I just committed.


Can you please review and correct, it seems that the issues get the 
commit attached which is not correct.


Thanks and regards,

Michael


Am 17.09.16 um 08:51 schrieb arunpati...@apache.org:

Author: arunpatidar
Date: Sat Sep 17 06:51:07 2016
New Revision: 1761130

URL: http://svn.apache.org/viewvc?rev=1761130=rev
Log:
Implemented: Added CRUD services for CustRequestType, CustRequestTypeAttr and 
CustomMethod entity.
(OFBIZ-8032) (OFBIZ-8033)(OFBIZ-8034)

Thanks: Amit Gadaley for the contribution.

Added:
 ofbiz/trunk/framework/common/servicedef/services_method.xml
Modified:
 ofbiz/trunk/applications/order/servicedef/services_request.xml
 ofbiz/trunk/framework/common/ofbiz-component.xml

Modified: ofbiz/trunk/applications/order/servicedef/services_request.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_request.xml?rev=1761130=1761129=1761130=diff
==
--- ofbiz/trunk/applications/order/servicedef/services_request.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_request.xml Sat Sep 17 
06:51:07 2016
@@ -255,5 +255,33 @@ under the License.
  Delete a CustRequestResolution record
  
  
+
+Create a CustRequestType record
+
+
+
+
+Update a CustRequestType record
+
+
+
+
+Delete a CustRequestType record
+
+
+
+Create a CustRequestTypeAttr record
+
+
+
+
+Update a CustRequestTypeAttr record
+
+
+
+
+Delete a CustRequestTypeAttr record
+
+
  
  


Modified: ofbiz/trunk/framework/common/ofbiz-component.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/ofbiz-component.xml?rev=1761130=1761129=1761130=diff
==
--- ofbiz/trunk/framework/common/ofbiz-component.xml (original)
+++ ofbiz/trunk/framework/common/ofbiz-component.xml Sat Sep 17 06:51:07 2016
@@ -65,6 +65,7 @@ under the License.
  
  
  
+
  
  
  

Added: ofbiz/trunk/framework/common/servicedef/services_method.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services_method.xml?rev=1761130=auto
==
--- ofbiz/trunk/framework/common/servicedef/services_method.xml (added)
+++ ofbiz/trunk/framework/common/servicedef/services_method.xml Sat Sep 17 
06:51:07 2016
@@ -0,0 +1,42 @@
+
+
+
+http://www.w3.org/2001/XMLSchema-instance;
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd;>
+OFBiz Method Services
+OFBiz
+1.0
+
+
+Create a Custom Method
+
+
+
+
+Update a Custom Method
+
+
+
+
+Delete a Custom Method
+
+
+
+







smime.p7s
Description: S/MIME Cryptographic Signature