Commit 294bfa0c by 宋祥

1.采购收货BUG修复

parent 2ed3b447
$(function () { $(function () {
var inventRecordBoxBlockId = __eiInfo.getBlock("invent_record_box_block_id").getMappedRows(); var inventRecordBoxBlockId = __eiInfo.getBlock("invent_record_box_block_id").getMappedRows();
IPLATUI.EFGrid = { IPLATUI.EFGrid = {
"result": { "result": {
exportGrid: false, // 隐藏右侧自定义导出按钮 exportGrid: false, // 隐藏右侧自定义导出按钮
...@@ -7,16 +8,15 @@ $(function () { ...@@ -7,16 +8,15 @@ $(function () {
pageSize: 20, pageSize: 20,
pageSizes: [20, 50, 70, 100], pageSizes: [20, 50, 70, 100],
}, },
columns: [ columns: [{
{
field: "inventCode", field: "inventCode",
template: function (item) { template: function (item) {
let template = item.inventCode; let template = item.inventCode;
if(item.inventCode){ if (item.inventCode) {
for(let i=0;i<inventRecordBoxBlockId.length;i++){ for (let i = 0; i < inventRecordBoxBlockId.length; i++) {
if(item.inventCode === inventRecordBoxBlockId[i]['valueField']){ if (item.inventCode === inventRecordBoxBlockId[i]['valueField']) {
template = inventRecordBoxBlockId[i]['valueField']; template = inventRecordBoxBlockId[i]['valueField'];
}else{ } else {
template = item.inventCode; template = item.inventCode;
} }
} }
...@@ -49,22 +49,20 @@ $(function () { ...@@ -49,22 +49,20 @@ $(function () {
filter: "contains" filter: "contains"
}); });
} }
}, }, {
{
field: "primaryId", field: "primaryId",
template: function (item) { template: function (item) {
item['primaryId'] =$("#inqu_status-0-primaryId").val(); item['primaryId'] = $("#inqu_status-0-primaryId").val();
return $("#inqu_status-0-primaryId").val(); return $("#inqu_status-0-primaryId").val();
} }
} }],
],
beforeEdit: function (e) { beforeEdit: function (e) {
var status = $("#status").val(); var status = $("#status").val();
if(status != '0'){ if (status != '0') {
e.preventDefault(); e.preventDefault();
} }
var source = $("#source").val(); var source = $("#source").val();
if(source === '0'){ if (source === '0') {
//选择合同的明细不能修改存货信息 //选择合同的明细不能修改存货信息
for (let i = 0; i < e.sender.columns.length; i++) { for (let i = 0; i < e.sender.columns.length; i++) {
//指定的列不让修改 //指定的列不让修改
...@@ -77,7 +75,6 @@ $(function () { ...@@ -77,7 +75,6 @@ $(function () {
} }
} }
} }
}, },
loadComplete: function (grid) { loadComplete: function (grid) {
// 此grid对象 // 此grid对象
...@@ -170,23 +167,23 @@ $(window).load(function () { ...@@ -170,23 +167,23 @@ $(window).load(function () {
* @param coefficient * @param coefficient
*/ */
let calAmount = function (item) { let calAmount = function (item) {
let price = item.price;
//计算方式为重量乘单价 //计算方式为重量乘单价
if(item.calculationMethod == 1){ if (item.calculationMethod == 1) {
if(item.receiveWeight && item.price){ let receiveWeight = item.receiveWeight;
if (!isBlank(receiveWeight) && !isBlank(price)) {
// 重量*单价金额 // 重量*单价金额
let totalAmount = item.receiveWeight * item.price; let totalAmount = parseFloat(receiveWeight) * parseFloat(price);
resultGrid.setCellValue(item, 'amount', totalAmount) resultGrid.setCellValue(item, 'amount', totalAmount)
} }
}else{ } else {
if(item.receiveQty && item.price){ let receiveQty = item.receiveQty;
if(item.receiveQty && item.price){ if (!isBlank(receiveQty) && !isBlank(price)) {
// 重量*单价金额 // 数量*单价金额
let totalAmount = item.receiveQty * item.price; let totalAmount = parseFloat(receiveQty) * parseFloat(price);
resultGrid.setCellValue(item, 'amount', totalAmount) resultGrid.setCellValue(item, 'amount', totalAmount)
} }
} }
}
} }
/** /**
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
sumType="page"/> sumType="page"/>
<EF:EFColumn ename="receiveUnitWeight" cname="收货单重" enable="false" width="120" align="right" format="{0:N3}" <EF:EFColumn ename="receiveUnitWeight" cname="收货单重" enable="false" width="120" align="right" format="{0:N3}"
hidden="true"/> hidden="true"/>
<EF:EFComboColumn ename="calculationMethod" cname="计算方式" enable="true" width="100" align="center" required="true"> <EF:EFComboColumn ename="calculationMethod" cname="计算方式" enable="true" width="120" align="center" required="true">
<EF:EFCodeOption codeName="hggp.cg.calculationMethod" /> <EF:EFCodeOption codeName="hggp.cg.calculationMethod" />
</EF:EFComboColumn> </EF:EFComboColumn>
<EF:EFColumn ename="price" cname="单价" width="120" align="right" format="{0:C3}" required="true"/> <EF:EFColumn ename="price" cname="单价" width="120" align="right" format="{0:C3}" required="true"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment