Commit ed2f286e by gxfeng

ModifySubmitTransferMaterail接口调整

parent 9014d37f
...@@ -328,6 +328,9 @@ class TradetransferService extends ServiceBase { ...@@ -328,6 +328,9 @@ class TradetransferService extends ServiceBase {
obj.transfer_cert_url = buildurl(obj.transfer_cert_url) obj.transfer_cert_url = buildurl(obj.transfer_cert_url)
obj.notarization_url = buildurl(obj.notarization_url) obj.notarization_url = buildurl(obj.notarization_url)
obj.user_type = obj.user_type == "person" ? 2 : 1; obj.user_type = obj.user_type == "person" ? 2 : 1;
obj.buyer_proxy = buildurl(obj.buyer_proxy)
obj.seller_businesslicense_en = buildurl(obj.seller_businesslicense_en)
obj.buyer_businesslicense_en = buildurl(obj.buyer_businesslicense_en)
var sobj = { var sobj = {
action: "ModifySubmitTransferMaterail", action: "ModifySubmitTransferMaterail",
reqbody: { reqbody: {
...@@ -340,6 +343,7 @@ class TradetransferService extends ServiceBase { ...@@ -340,6 +343,7 @@ class TradetransferService extends ServiceBase {
SellerIdCard: obj.seller_idcard, SellerIdCard: obj.seller_idcard,
SellerProxy: obj.seller_proxy, SellerProxy: obj.seller_proxy,
SellerApply: obj.seller_apply, SellerApply: obj.seller_apply,
AssigneeProxy: obj.buyer_proxy,
Complete: true, Complete: true,
Name: obj.buyer_name, Name: obj.buyer_name,
Addr: obj.buyer_address, Addr: obj.buyer_address,
...@@ -347,7 +351,9 @@ class TradetransferService extends ServiceBase { ...@@ -347,7 +351,9 @@ class TradetransferService extends ServiceBase {
CardNo: obj.cardno, CardNo: obj.cardno,
ContactName: obj.contact_name, ContactName: obj.contact_name,
ContactMobile: parseInt(obj.contact_mobile), ContactMobile: parseInt(obj.contact_mobile),
ContactEmail: obj.contact_email ContactEmail: obj.contact_email,
SellerBusinessLicenseTranslation: obj.seller_businesslicense_en,
BuyerBusinessLicenseTranslation: obj.buyer_businesslicense_en
} }
} }
var result = await this.aliclient(sobj, 'POST') var result = await this.aliclient(sobj, 'POST')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment