This commit is contained in:
PastSaid
2024-03-18 11:42:45 +08:00
parent 08d8878eef
commit c31957eb64
56 changed files with 1485 additions and 123 deletions

View File

@@ -1,4 +1,6 @@
using EastChanger.STK_Inventory;
using EastChanger.STK_StockCountGain;
using EastChanger.STK_StockCountLoss;
using Kingdee.BOS;
using Kingdee.BOS.Contracts;
using Kingdee.BOS.Core;
@@ -33,9 +35,14 @@ namespace EastChanger
service = new STKInventoryService(ctx);
break;
case "STK_MISCELLANEOUS"://其他入库单
break;
case "STK_MisDelivery"://其他出库单
break;
case "STK_StockCountGain"://盘盈单
service = new STKStockCountGainService(ctx);
break;
case "STK_StockCountLoss"://盘亏单
service = new STKStockCountLossService(ctx);
break;
}
@@ -43,7 +50,7 @@ namespace EastChanger
continue;
Logger.Info(schedule.Name, $"{service.ModuleCnName}数据同步start...");
service.HandleSyncData(null, null);
service.HandleSyncData(null, null, 0);
Logger.Info(schedule.Name, $"{service.ModuleCnName}数据同步end...");
}
}