Browse Source

[CI SKIP]

master
wanggang 1 year ago
parent
commit
c4f1e89bdc
  1. 3
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/settle/inventory.js

3
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/settle/inventory.js

@ -28,6 +28,9 @@ export default {
: `确认选中的${rows.length}行数据客户已收票吗?`;
const data = rows.map((o) => o.billNum);
const url = config.edit.approvalUrl;
if (item.path === "reject") {
url = config.edit.rejectUrl;
}
await appListRef.value.onClick(async () => await request(url, data, { method: "POST" }), message, true);
}
} else if (item.path === "export-group") {

Loading…
Cancel
Save