|
@@ -120,7 +120,7 @@ module.exports = app => {
|
|
|
if (tender.data.measureType === measureType.gcl.value) ledgerColumn.push('deal_qty', 'deal_tp');
|
|
|
if (tender.info.display.ledger.dgnQty) ledgerColumn.push('dgn_qty1', 'dgn_qty2');
|
|
|
if (tender.info.display.ledger.clQty) ledgerColumn.push('sjcl_qty', 'qtcl_qty', 'sjcl_expr', 'qtcl_expr', 'sjcl_tp', 'qtcl_tp', 'quantity', 'total_price');
|
|
|
- const posColumn = ['id', 'tid', 'lid', 'name', 'position', 'porder', 'sjcl_qty', 'sjcl_expr', 'add_stage_order'];
|
|
|
+ const posColumn = ['id', 'tid', 'lid', 'name', 'position', 'porder', 'sgfh_qty', 'sgfh_expr', 'add_stage_order', 'drawing_code'];
|
|
|
if (tender.info.display.ledger.clQty) posColumn.push('sjcl_qty', 'qtcl_qty', 'sjcl_expr', 'qtcl_expr', 'quantity');
|
|
|
for (const field of sjsRela.ledgerCol) {
|
|
|
if (field.show) {
|
|
@@ -128,6 +128,7 @@ module.exports = app => {
|
|
|
posColumn.push(field.field);
|
|
|
}
|
|
|
}
|
|
|
+ console.log(posColumn);
|
|
|
return [ledgerColumn, posColumn];
|
|
|
}
|
|
|
|