Compare commits
No commits in common. "41784dc32879be70a60e05b16df4f5530d510ba2" and "b6f019de22ae17101864573a3f7a7515a21e56c5" have entirely different histories.
41784dc328
...
b6f019de22
|
@ -101,8 +101,8 @@ public class EntCostSplitBillPlugin extends AbstractBillPlugIn {
|
|||
// 存在成本中心时,按照成本中心+成本项+二级分类去重
|
||||
uniqueKey = "COSTCENTER_" + costCompanyName + "_" + (costType != null ? costType.toString() : "") + "_" + (secType != null ? secType.toString() : "");
|
||||
} else {
|
||||
// 如果既没有工序也没有成本中心,则按照成本项+二级分类去重
|
||||
uniqueKey = "NONE_" + (costType != null ? costType.toString() : "") + "_" + (secType != null ? secType.toString() : "");
|
||||
// 如果既没有工序也没有成本中心,则不进行汇总,使用唯一ID
|
||||
uniqueKey = "NONE_" + rptAssistBalanceGx.getString("id");
|
||||
}
|
||||
|
||||
DynamicObject existingEntry = summaryMap.get(uniqueKey);
|
||||
|
|
Loading…
Reference in New Issue