Commit b0db90cc authored by jiaorz's avatar jiaorz

Merge branch 'master-invoice-modular' into dev

parents 6144df2b 01a45e82
......@@ -803,7 +803,7 @@ public class OrderAccountBiz extends BaseBiz<OrderAccountMapper,OrderAccount> {
if (list != null && list.size() > 0) {
list.parallelStream().forEach(result -> {
if(result.getAccountAmount() != null) {
bigDecimal.add(result.getAccountAmount());
bigDecimal.add(new BigDecimal(result.getAccountAmount().toString()));
}
});
}
......
......@@ -511,6 +511,9 @@ public class BaseOrderController extends CommonBaseController implements UserRes
return baseOrderBiz.updateBaseOrder(baseOrder);
}
public static void main(String[] args) {
BigDecimal bigDecimal = new BigDecimal("0");
System.out.println(bigDecimal.add(new BigDecimal(1)));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment