svn commit: r1053754 - in /ofbiz/trunk/applications/accounting: config/AccountingUiLabels.xml servicedef/services_paymentgateway.xml webapp/accounting/WEB-INF/controller.xml widget/PaymentGatewayConfigForms.xml widget/PaymentGatewayConfigScreens.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1053754 - in /ofbiz/trunk/applications/accounting: config/AccountingUiLabels.xml servicedef/services_paymentgateway.xml webapp/accounting/WEB-INF/controller.xml widget/PaymentGatewayConfigForms.xml widget/PaymentGatewayConfigScreens.xml

jaz-3
Author: jaz
Date: Wed Dec 29 21:55:59 2010
New Revision: 1053754

URL: http://svn.apache.org/viewvc?rev=1053754&view=rev
Log:
finished the eway integration screens

Modified:
    ofbiz/trunk/applications/accounting/config/AccountingUiLabels.xml
    ofbiz/trunk/applications/accounting/servicedef/services_paymentgateway.xml
    ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml
    ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigForms.xml
    ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigScreens.xml

Modified: ofbiz/trunk/applications/accounting/config/AccountingUiLabels.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/config/AccountingUiLabels.xml?rev=1053754&r1=1053753&r2=1053754&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/config/AccountingUiLabels.xml (original)
+++ ofbiz/trunk/applications/accounting/config/AccountingUiLabels.xml Wed Dec 29 21:55:59 2010
@@ -15236,6 +15236,9 @@
         <value xml:lang="it">Aggiorna configurazione gateway pagamento CyberSource</value>
         <value xml:lang="zh_TW">更新CyberSource的支付閘道配置</value>
     </property>
+    <property key="PageTitleUpdatePaymentGatewayConfigEway">
+        <value xml:lang="en">Update Payment Gateway Config eWay</value>        
+    </property>    
     <property key="PageTitleUpdatePaymentGatewayConfigPayflowPro">
         <value xml:lang="de">Bezahl-Schnittstelle Payflow Pro aktualisieren</value>
         <value xml:lang="en">Update Payment Gateway Config Payflow Pro</value>

Modified: ofbiz/trunk/applications/accounting/servicedef/services_paymentgateway.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_paymentgateway.xml?rev=1053754&r1=1053753&r2=1053754&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_paymentgateway.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_paymentgateway.xml Wed Dec 29 21:55:59 2010
@@ -84,4 +84,9 @@ under the License.
         <auto-attributes entity-name="PaymentGatewaySecurePay" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="PaymentGatewaySecurePay" include="nonpk" mode="IN" optional="true"/>
     </service>
+    
+    <service name="updatePaymentGatewayConfigEway" engine="entity-auto" invoke="update" default-entity-name="PaymentGatewayEway" auth="true">
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>    
 </services>

Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml?rev=1053754&r1=1053753&r2=1053754&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml Wed Dec 29 21:55:59 2010
@@ -545,6 +545,12 @@ under the License.
         <response name="success" type="view" value="EditPaymentGatewayConfig"/>
         <response name="error" type="view" value="EditPaymentGatewayConfig"/>
     </request-map>
+    <request-map uri="UpdatePaymentGatewayConfigEway">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="updatePaymentGatewayConfigEway"/>
+        <response name="success" type="view" value="EditPaymentGatewayConfig"/>
+        <response name="error" type="view" value="EditPaymentGatewayConfig"/>
+    </request-map>
     <request-map uri="FindPaymentGatewayConfigTypes">
         <security https="true" auth="true"/>
         <response name="success" type="view" value="FindPaymentGatewayConfigTypes"/>

Modified: ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigForms.xml?rev=1053754&r1=1053753&r2=1053754&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigForms.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigForms.xml Wed Dec 29 21:55:59 2010
@@ -315,7 +315,7 @@ under the License.
         </field>
     </form>
     
-    <form name="EditPaymentGatewayConfigEway" type="single" target="UpdatePaymentGatewayConfigClearCommerce" default-map-name="paymentGatewayClearCommerce" header-row-style="header-row" default-table-style="basic-table">
+    <form name="EditPaymentGatewayConfigEway" type="single" target="UpdatePaymentGatewayConfigEway" default-map-name="paymentGatewayEway" header-row-style="header-row" default-table-style="basic-table">
         <auto-fields-entity entity-name="PaymentGatewayEway" default-field-type="edit"/>
         <field name="paymentGatewayConfigId"><hidden/></field>
         <field name="testMode">

Modified: ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigScreens.xml?rev=1053754&r1=1053753&r2=1053754&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/PaymentGatewayConfigScreens.xml Wed Dec 29 21:55:59 2010
@@ -216,7 +216,7 @@ under the License.
                                 <not><if-empty field="paymentGatewayEway"/></not>
                             </condition>
                             <widgets>
-                                <screenlet title="${uiLabelMap.PageTitleUpdatePaymentGatewayConfigClearCommerce}">
+                                <screenlet title="${uiLabelMap.PageTitleUpdatePaymentGatewayConfigEway}">
                                     <include-form name="EditPaymentGatewayConfigEway" location="component://accounting/widget/PaymentGatewayConfigForms.xml"/>
                                 </screenlet>
                             </widgets>