Commit beda3663 by 孙亚楠

dd

parent ce9fe6a2
...@@ -122,7 +122,11 @@ class OorderService extends ServiceBase { ...@@ -122,7 +122,11 @@ class OorderService extends ServiceBase {
await this.formateSource([order]); await this.formateSource([order]);
await this.formateProduct([order]); await this.formateProduct([order]);
this.handleDate(order, ["created_at", "sign_time"], "YYYY-MM-DD HH:mm:ss", -8); this.handleDate(order, ["created_at", "sign_time","assign_time"], "YYYY-MM-DD HH:mm:ss", -8);
this.handleDate(businessmen, ["tax_reg_day","created_at" ], "YYYY-MM-DD HH:mm:ss", -8);
orderDeliver.deliver_divide = system.f2y(orderDeliver.deliver_divide);
orderInfo.capital = system.f2y(orderInfo.capital);
result.order = order; result.order = order;
result.regInfo = orderInfo; result.regInfo = orderInfo;
......
...@@ -883,10 +883,11 @@ class OorderstatusService extends ServiceBase { ...@@ -883,10 +883,11 @@ class OorderstatusService extends ServiceBase {
} }
let _obusinessmenProperty = {}; let _obusinessmenProperty = {};
_obusinessmenProperty.common_tax_ladder = this.trim(params.common_tax_ladder); _obusinessmenProperty.common_tax_ladder = JSON.stringify(this.trim(params.common_tax_ladder));
_obusinessmenProperty.common_other_ladder = this.trim(params.common_other_ladder); _obusinessmenProperty.common_other_ladder = JSON.stringify(this.trim(params.common_other_ladder));
_obusinessmenProperty.special_tax_ladder = this.trim(params.special_tax_ladder); _obusinessmenProperty.special_tax_ladder = JSON.stringify(this.trim(params.special_tax_ladder));
_obusinessmenProperty.special_other_ladder = this.trim(params.special_other_ladder); _obusinessmenProperty.special_other_ladder = JSON.stringify(this.trim(params.special_other_ladder));
_obusinessmenProperty.add_value_up_type = this.trim(params.add_value_up_type); _obusinessmenProperty.add_value_up_type = this.trim(params.add_value_up_type);
_obusinessmenProperty.tax_up_type = this.trim(params.tax_up_type); _obusinessmenProperty.tax_up_type = this.trim(params.tax_up_type);
......
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