|
@@ -1010,7 +1010,7 @@ $(document).ready(() => {
|
|
|
// $('#tj_stage_' + ms.order).children('td').eq(1).text(ms.ex_tp ? ZhCalc.round(ms.ex_tp, materialExponentDecimal.tp) : '');
|
|
// $('#tj_stage_' + ms.order).children('td').eq(1).text(ms.ex_tp ? ZhCalc.round(ms.ex_tp, materialExponentDecimal.tp) : '');
|
|
|
// $('#tj_stage_' + ms.order).children('td').eq(2).text(ms.ex_tax_tp ? ZhCalc.round(ms.ex_tax_tp, materialExponentDecimal.tp) : '');
|
|
// $('#tj_stage_' + ms.order).children('td').eq(2).text(ms.ex_tax_tp ? ZhCalc.round(ms.ex_tax_tp, materialExponentDecimal.tp) : '');
|
|
|
stage_datas.push({
|
|
stage_datas.push({
|
|
|
- order: ' 第' + ms.order + '期',
|
|
|
|
|
|
|
+ order: (exponent_nodes ? ' ' : '') + ' 第' + ms.order + '期',
|
|
|
ex_tp: ms.ex_tp ? ZhCalc.round(ms.ex_tp, materialExponentDecimal.tp) : 0,
|
|
ex_tp: ms.ex_tp ? ZhCalc.round(ms.ex_tp, materialExponentDecimal.tp) : 0,
|
|
|
ex_tax_tp: ms.ex_tax_tp ? ZhCalc.round(ms.ex_tax_tp, materialExponentDecimal.tp) : 0,
|
|
ex_tax_tp: ms.ex_tax_tp ? ZhCalc.round(ms.ex_tax_tp, materialExponentDecimal.tp) : 0,
|
|
|
tip: !exponent_nodes ? '第' + ms.order + '期价差:' + (ms.ex_expr ? ms.ex_expr : '') : '',
|
|
tip: !exponent_nodes ? '第' + ms.order + '期价差:' + (ms.ex_expr ? ms.ex_expr : '') : '',
|
|
@@ -1019,7 +1019,7 @@ $(document).ready(() => {
|
|
|
const mnList = _.filter(materialExponentNodeData, { ms_id: ms.id });
|
|
const mnList = _.filter(materialExponentNodeData, { ms_id: ms.id });
|
|
|
for (const mn of mnList) {
|
|
for (const mn of mnList) {
|
|
|
stage_datas.push({
|
|
stage_datas.push({
|
|
|
- order: ' ' + mn.name + '(' + mn.code + ')',
|
|
|
|
|
|
|
+ order: ' ' + ' ' + mn.name + '(' + mn.code + ')',
|
|
|
ex_tp: mn.ex_tp ? ZhCalc.round(mn.ex_tp, materialExponentDecimal.tp) : 0,
|
|
ex_tp: mn.ex_tp ? ZhCalc.round(mn.ex_tp, materialExponentDecimal.tp) : 0,
|
|
|
ex_tax_tp: mn.ex_tax_tp ? ZhCalc.round(mn.ex_tax_tp, materialExponentDecimal.tp) : 0,
|
|
ex_tax_tp: mn.ex_tax_tp ? ZhCalc.round(mn.ex_tax_tp, materialExponentDecimal.tp) : 0,
|
|
|
tip: mn.name + '(' + mn.code + ')' + '价差:' + (mn.ex_expr ? mn.ex_expr : ''),
|
|
tip: mn.name + '(' + mn.code + ')' + '价差:' + (mn.ex_expr ? mn.ex_expr : ''),
|