Commit 3f11253a by 纪旭 韦

修复了核算单元及组别的保存功能

parent 68927268
...@@ -864,6 +864,7 @@ public bool BatchSaveAccounting(int allotId, SaveCollectData request) ...@@ -864,6 +864,7 @@ public bool BatchSaveAccounting(int allotId, SaveCollectData request)
{ {
var json = JsonHelper.Serialize(item); var json = JsonHelper.Serialize(item);
var data = JsonHelper.Deserialize<cof_accounting>(json); var data = JsonHelper.Deserialize<cof_accounting>(json);
data.AllotId = allotId;
if (!unitType.Contains(data?.UnitType) && !string.IsNullOrEmpty(data?.UnitType)) return false; if (!unitType.Contains(data?.UnitType) && !string.IsNullOrEmpty(data?.UnitType)) return false;
if (getAccounts != null) if (getAccounts != null)
......
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