|
|
@@ -166,14 +166,15 @@ class CompleRatoinDao {
|
|
|
}
|
|
|
if(!gUtil) gUtil = gljUtil;
|
|
|
let gljDatas = gUtil.sortRationGLJ(stdGljs.concat(comGljs));
|
|
|
- for(let glj of gljDatas){
|
|
|
- hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
- }
|
|
|
- hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.jobContent && ration.jobContent.toString().trim() !== ''){
|
|
|
hintsArr.push(`工作内容:`);
|
|
|
hintsArr = hintsArr.concat(ration.jobContent.split('\n'));
|
|
|
+ hintsArr.push("");
|
|
|
}
|
|
|
+ for(let glj of gljDatas){
|
|
|
+ hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
+ }
|
|
|
+ hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.annotation && ration.annotation.toString().trim() !== ''){
|
|
|
hintsArr.push(`附注:`);
|
|
|
hintsArr = hintsArr.concat(ration.annotation.split('\n'));
|
|
|
@@ -243,14 +244,15 @@ class CompleRatoinDao {
|
|
|
}
|
|
|
if(!gUtil) gUtil = gljUtil;
|
|
|
let gljDatas = gUtil.sortRationGLJ(stdGljs);
|
|
|
- for(let glj of gljDatas){
|
|
|
- hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
- }
|
|
|
- hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.jobContent && ration.jobContent.toString().trim() !== ''){
|
|
|
hintsArr.push(`工作内容:`);
|
|
|
hintsArr = hintsArr.concat(ration.jobContent.split('\n'));
|
|
|
+ hintsArr.push("");
|
|
|
}
|
|
|
+ for(let glj of gljDatas){
|
|
|
+ hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
+ }
|
|
|
+ hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.annotation && ration.annotation.toString().trim() !== ''){
|
|
|
hintsArr.push(`附注:`);
|
|
|
hintsArr = hintsArr.concat(ration.annotation.split('\n'));
|