|
@@ -692,7 +692,9 @@ export default {
|
|
|
for (let j = 0; j < i; j++) {
|
|
|
if (
|
|
|
this.tableData[i].saleRemark === this.tableData[j].saleRemark &&
|
|
|
- this.tableData[i].receiveName === this.tableData[j].receiveName
|
|
|
+ this.tableData[i].receiveName === this.tableData[j].receiveName &&
|
|
|
+ this.tableData[i].saleOrderReceiveCustomer ===
|
|
|
+ this.tableData[j].saleOrderReceiveCustomer
|
|
|
) {
|
|
|
this.tableData[i].saleOrderNo = this.tableData[j].saleOrderNo;
|
|
|
break;
|
|
@@ -704,8 +706,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- console.log(this.tableData);
|
|
|
- debugger;
|
|
|
// this.tableData = this.tableData.sort(this.compare("saleOrderNo"));
|
|
|
// debugger;
|
|
|
//需要遍历数组,以销售订单编号为分类
|