|
@@ -143,6 +143,7 @@ let quantityEditObj = {
|
|
|
quantityEXP = quantityEXP?quantityEXP.toUpperCase():'';//非空判断
|
|
|
quantityEXP =replaceAll('(','(',quantityEXP);//转换中文左右符号
|
|
|
quantityEXP =replaceAll(')',')',quantityEXP);
|
|
|
+ quantityEXP = quantityEXP.replace(/[\s\r\n]/g, "")//去掉空格回车换行等字符
|
|
|
let value = me.evalQuantityExp(quantityEXP,node);
|
|
|
if(value!=='evalError'){
|
|
|
if(node.data.hasOwnProperty('isFromDetail')&&node.data.isFromDetail==1){
|