Commit 87fcd575 by 王昆

gsb

parent afe1214a
...@@ -179,6 +179,7 @@ class SaasOrderService extends ServiceBase { ...@@ -179,6 +179,7 @@ class SaasOrderService extends ServiceBase {
let saas_id = this.trim(params.saas_id); let saas_id = this.trim(params.saas_id);
let merchant_id = this.trim(params.merchant_id); let merchant_id = this.trim(params.merchant_id);
let product_id = this.trim(params.product_id); let product_id = this.trim(params.product_id);
let channel_id = this.trim(params.channel_id);
let merchant_app_user_id = this.trim(params.merchant_app_user_id); let merchant_app_user_id = this.trim(params.merchant_app_user_id);
let price = Number(params.price || 0); let price = Number(params.price || 0);
let bminfo = params.bminfo; let bminfo = params.bminfo;
...@@ -186,6 +187,7 @@ class SaasOrderService extends ServiceBase { ...@@ -186,6 +187,7 @@ class SaasOrderService extends ServiceBase {
let order = { let order = {
saas_id: saas_id, saas_id: saas_id,
merchant_id: merchant_id, merchant_id: merchant_id,
channel_id: channel_id,
product_id: product_id, product_id: product_id,
merchant_app_user_id: merchant_app_user_id, merchant_app_user_id: merchant_app_user_id,
price: price, price: price,
......
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