forked from PHOENIX-MEDIA/Magento-CashOnDelivery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request PHOENIX-MEDIA#33 from tawfekov/master
add cod_fee , base_cod_fee attributes to webservices
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions xmlns:typens="urn:{{var wsdl.name}}" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
name="{{var wsdl.name}}" targetNamespace="urn:{{var wsdl.name}}"> | ||
<types> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento"> | ||
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" | ||
schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/> | ||
<complexType name="salesOrderEntity"> | ||
<all> | ||
<element name="cod_fee" type="xsd:string" minOccurs="0"/> | ||
<element name="base_cod_fee" type="xsd:string" minOccurs="0"/> | ||
</all> | ||
</complexType> | ||
</schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wsdl:definitions xmlns:typens="urn:{{var wsdl.name}}" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" | ||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
name="{{var wsdl.name}}" | ||
targetNamespace="urn:{{var wsdl.name}}"> | ||
<wsdl:types> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:{{var wsdl.name}}"> | ||
<xsd:complexType name="salesOrderEntity"> | ||
<xsd:sequence> | ||
<xsd:element name="cod_fee" type="xsd:string" minOccurs="0" /> | ||
<xsd:element name="base_cod_fee" type="xsd:string" minOccurs="0" /> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
</wsdl:types> | ||
</wsdl:definitions> |