Commit eda0cbc4 LN

1053BUG修改:工单详情导出的和显示的不一致

1 个父辈 ed542779
...@@ -419,7 +419,14 @@ public class OrderController { ...@@ -419,7 +419,14 @@ public class OrderController {
data.add(v); data.add(v);
} }
} }
String exception=orderItem.getOutNum()<orderItem.getNeedNum()?MessageUtils.getText("smfcore.order.yes",locale,"是"):""; boolean exc=false;
if(orderItem.getOutNum()<orderItem.getNeedNum()){
exc=true;
}
if(orderItem.getOutReelCount()<orderItem.getOutReelCount()){
exc=true;
}
String exception=exc?MessageUtils.getText("smfcore.order.yes",locale,"是"):"";
data.add(exception); data.add(exception);
dataList.add(data); dataList.add(data);
} }
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!