|
@@ -138,6 +138,7 @@ $(document).ready(() => {
|
|
|
{title: '本期计量数量|合同', colSpan: '3|1', rowSpan: '1|1', field: 'contract_qty', hAlign: 2, width: 120, type: 'Number'},
|
|
|
{title: '|数量变更', colSpan: '|1', rowSpan: '|1', field: 'qc_qty', hAlign: 2, width: 120, type: 'Number'},
|
|
|
{title: '|小计', colSpan: '|1', rowSpan: '|1', field: 'gather_qty', hAlign: 2, width: 120, type: 'Number'},
|
|
|
+ {title: '本期完成金额', colSpan: '1', rowSpan: '2', field: 'gather_tp', hAlign: 2, width: 150, type: 'Number'},
|
|
|
{title: '本期价差', colSpan: '1', rowSpan: '2', field: 'total_jiacha', hAlign:3, width: 150, type: 'Number'}
|
|
|
],
|
|
|
emptyRows: 0,
|
|
@@ -153,10 +154,8 @@ $(document).ready(() => {
|
|
|
gclGatherModel.loadPosData(pos, curPosData);
|
|
|
let gclGatherData = gclGatherModel.gatherGclData().filter(item => {
|
|
|
return item.qc_qty || item.contract_qty
|
|
|
- })
|
|
|
-
|
|
|
-
|
|
|
- calculateJiaCha(gclGatherData)
|
|
|
+ });
|
|
|
+ calculateJiaCha(gclGatherData);
|
|
|
// let gclGatherData = gclGatherModel.gatherGclData()
|
|
|
// 获取项目节数据
|
|
|
function loadLeafXmjData(iGclRow) {
|