Commit 280b6153 authored by youjie's avatar youjie

no message

parent 1fe241a3
...@@ -1970,9 +1970,9 @@ ...@@ -1970,9 +1970,9 @@
this.msg.OrderID = this.orderObj.OrderID ? this.orderObj.OrderID : 0; this.msg.OrderID = this.orderObj.OrderID ? this.orderObj.OrderID : 0;
this.OrderSource = this.msg.OrderSource = this.orderObj.OrderSource ? this.orderObj.OrderSource : 0; this.OrderSource = this.msg.OrderSource = this.orderObj.OrderSource ? this.orderObj.OrderSource : 0;
// 用房手配费 房费送客手数料
if(this.orderObj.Money&&this.orderObj.CostType if(this.orderObj.Money&&this.orderObj.CostType
&&this.orderObj.Money2&&this.orderObj.CostType2 &&this.orderObj.Money2&&this.orderObj.CostType2){
&&this.msg.detailList.length==0){
let orderObjMoney = this.$commonUtils.addCommas(Math.round(this.orderObj.Money * 100) / 100); let orderObjMoney = this.$commonUtils.addCommas(Math.round(this.orderObj.Money * 100) / 100);
let orderObjMoney2 = this.$commonUtils.addCommas(Math.round(this.orderObj.Money2 * 100) / 100); let orderObjMoney2 = this.$commonUtils.addCommas(Math.round(this.orderObj.Money2 * 100) / 100);
let obj = { let obj = {
...@@ -2015,7 +2015,10 @@ ...@@ -2015,7 +2015,10 @@
} }
this.msg.detailList.push(obj) this.msg.detailList.push(obj)
this.msg.detailList.push(obj2) this.msg.detailList.push(obj2)
}else{ }
if(this.orderObj.Money&&this.orderObj.CostType
&&!this.orderObj.Money2&&!this.orderObj.CostType2){
this.msg.CostTypeId = this.orderObj.CostType ? this.orderObj.CostType : ''; this.msg.CostTypeId = this.orderObj.CostType ? this.orderObj.CostType : '';
this.detailList.CostTypeId = this.orderObj.CostType ? this.orderObj.CostType : ''; this.detailList.CostTypeId = this.orderObj.CostType ? this.orderObj.CostType : '';
this.detailList.UnitPrice = this.orderObj.Money ? this.orderObj.Money : 0; this.detailList.UnitPrice = this.orderObj.Money ? this.orderObj.Money : 0;
......
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