|
@@ -149,10 +149,11 @@ let zmhs_obj = {
|
|
|
let coeList = [];
|
|
let coeList = [];
|
|
|
if(selected&&selected.sourceType == "ration"){
|
|
if(selected&&selected.sourceType == "ration"){
|
|
|
let ration = selected.data;
|
|
let ration = selected.data;
|
|
|
|
|
+ let assList = this.getAssList(node); //2019-01-23 新需求,将辅助定额合并到一个表显示 -- 20191206
|
|
|
|
|
+ // this.assFirstIndex = coeList.length;//没改前这里要记录辅助定额的起始下标,现在调整顺序后,默认就是0
|
|
|
coeList = ration_coe.getCoeByRationID(ration.ID);
|
|
coeList = ration_coe.getCoeByRationID(ration.ID);
|
|
|
_.remove(coeList,{"coeID":-1})//2018-12-24 新需求,把自定义乘系数分离出来,这里排除自定义乘系数行
|
|
_.remove(coeList,{"coeID":-1})//2018-12-24 新需求,把自定义乘系数分离出来,这里排除自定义乘系数行
|
|
|
- this.assFirstIndex = coeList.length;//辅助定额的起始下标
|
|
|
|
|
- coeList = coeList.concat(this.getAssList(node)) //2019-01-23 新需求,将辅助定额合并到一个表显示
|
|
|
|
|
|
|
+ coeList = assList.concat(coeList)
|
|
|
}
|
|
}
|
|
|
this.coeSheet.setRowCount(0);
|
|
this.coeSheet.setRowCount(0);
|
|
|
sheetCommonObj.showData(this.coeSheet, this.coeSetting,coeList);
|
|
sheetCommonObj.showData(this.coeSheet, this.coeSetting,coeList);
|