|
@@ -298,7 +298,7 @@ const sourceList = ref({
|
|
|
keyword: "",
|
|
|
settlementStatus: "",
|
|
|
userId: "",
|
|
|
- isArrival:'1',
|
|
|
+ isArrival: "1",
|
|
|
},
|
|
|
});
|
|
|
const loading = ref(false);
|
|
@@ -605,7 +605,9 @@ const submitChangeForm = () => {
|
|
|
};
|
|
|
const clickSettlement = (row) => {
|
|
|
const data = {
|
|
|
- id: row.contractId,
|
|
|
+ ...row,
|
|
|
+ grossGrofit: row.grossProfit,
|
|
|
+ grossRofitMargin: row.grossProfitMargin,
|
|
|
settlementStatus: 1,
|
|
|
};
|
|
|
proxy.post("/saleStatement/settlement", data).then(() => {
|