Commit 413c7597 by jianshuqin

修复BUG:财务系统出纳付款单回调失败

parent 4128bf4b
......@@ -418,7 +418,8 @@ public abstract class AbstractCostService implements CostService {
return;
}
//只保存香港百伦
if (costDomain.getCompanyValue() == 2) {
Integer companyValue = costDomain.getCompanyValue();
if (companyValue != null && companyValue == 2) {
//xgbl代表香港百伦
String companyCode = "xgbl";
......
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