Browse Source

[feat]销售管理:客户报价修改客户报价物料字段含税单价(RMB)。

dev
zhangsiqi 5 months ago
parent
commit
a6892ec3bc
  1. 3
      ruoyi-admin/src/main/resources/templates/system/customerQuote/add.html
  2. 3
      ruoyi-admin/src/main/resources/templates/system/customerQuote/edit.html
  3. 2
      ruoyi-admin/src/main/resources/templates/system/customerQuote/taskYwgzVerify.html

3
ruoyi-admin/src/main/resources/templates/system/customerQuote/add.html

@ -363,6 +363,7 @@
{ title: '物料的含税单价(美元)',field: 'materialUsd',align: 'center',}, { title: '物料的含税单价(美元)',field: 'materialUsd',align: 'center',},
{ title: '物料的含税总价(美元)',field: 'materialUsdSum', align: 'center',}, { title: '物料的含税总价(美元)',field: 'materialUsdSum', align: 'center',},
{ title: '物料的不含税总价(美元)',field: 'materialNoUsdSum',align: 'center',}, { title: '物料的不含税总价(美元)',field: 'materialNoUsdSum',align: 'center',},
{ title: '物料的含税总价(RMB)',field: 'materialRmb',align: 'center',},
{ title: '物料的含税总价(RMB)',field: 'materialNoRmbSum',align: 'center',}, { title: '物料的含税总价(RMB)',field: 'materialNoRmbSum',align: 'center',},
{title: '物料的不含税总价(RMB)',field: 'materialRmbSum',align: 'center',}, {title: '物料的不含税总价(RMB)',field: 'materialRmbSum',align: 'center',},
{field: 'createBy', align: 'center',title: '录入人',visible: false}, {field: 'createBy', align: 'center',title: '录入人',visible: false},
@ -497,8 +498,6 @@
} }
}) })
layer.close(index); layer.close(index);
var enterpriseSum = $("#enterpriseSum_add").val();
$("#enterpriseSum_add").val((enterpriseSum==null?0:enterpriseSum) + 1);
} }
function insertRow() { function insertRow() {
if ($("#customerCode").val() == null || $("#customerCode").val() == '') { if ($("#customerCode").val() == null || $("#customerCode").val() == '') {

3
ruoyi-admin/src/main/resources/templates/system/customerQuote/edit.html

@ -426,6 +426,7 @@
countTax: '', countTax: '',
usdTax: '', usdTax: '',
materialSole: "", materialSole: "",
materialRmb: "",
materialNum: "", materialNum: "",
materialNoRmb: "", materialNoRmb: "",
materialNoUsd: "", materialNoUsd: "",
@ -455,8 +456,6 @@
field: 'id', field: 'id',
values: rowData.id values: rowData.id
}) })
let enterpriseSum = $("#enterpriseSum_edit").val();
$("#enterpriseSum_edit").val((enterpriseSum==null?0:enterpriseSum) - rowData.materialNum);
} }
$("input[name='pricingDate']").datetimepicker({ $("input[name='pricingDate']").datetimepicker({
format: "yyyy-mm-dd", format: "yyyy-mm-dd",

2
ruoyi-admin/src/main/resources/templates/system/customerQuote/taskYwgzVerify.html

@ -477,8 +477,6 @@
field: 'id', field: 'id',
values: rowData.id values: rowData.id
}) })
let enterpriseSum = $("#enterpriseSum_edit").val();
$("#enterpriseSum_edit").val((enterpriseSum==null?0:enterpriseSum) - rowData.materialNum);
} }
$("input[name='pricingDate']").datetimepicker({ $("input[name='pricingDate']").datetimepicker({
format: "yyyy-mm-dd", format: "yyyy-mm-dd",

Loading…
Cancel
Save