采购入库修改

This commit is contained in:
2024-08-21 14:49:06 +08:00
parent 3ab02675d7
commit 75d3148560
6 changed files with 270 additions and 7 deletions

View File

@@ -908,6 +908,13 @@ namespace Tnb.ProductionMgr
}
Log.Information($"基础数据同步结果:{result}");
BasSyncRecord basSyncRecord = new BasSyncRecord()
{
msg = result,
create_time = DateTime.Now
};
await _db.Insertable(basSyncRecord).ExecuteCommandAsync();
return result;
}