|
@@ -608,6 +608,8 @@ const clickSettlement = (row) => {
|
|
|
...row,
|
|
|
grossGrofit: row.grossProfit,
|
|
|
grossRofitMargin: row.grossProfitMargin,
|
|
|
+ contractCurrency: row.currency,
|
|
|
+ purchaseCurrency: "CNY",
|
|
|
settlementStatus: 1,
|
|
|
};
|
|
|
proxy.post("/saleStatement/settlement", data).then(() => {
|
|
@@ -624,6 +626,8 @@ const clickCancelSettlement = (row) => {
|
|
|
...row,
|
|
|
grossGrofit: row.grossProfit,
|
|
|
grossRofitMargin: row.grossProfitMargin,
|
|
|
+ contractCurrency: row.currency,
|
|
|
+ purchaseCurrency: "CNY",
|
|
|
settlementStatus: 0,
|
|
|
})
|
|
|
.then(() => {
|