| | |
| | | public interface IStockQuantityChangeRecordService : IService<Dt_StockQuantityChangeRecord> |
| | | { |
| | | IStockQuantityChangeRecordRepository Repository { get; } |
| | | |
| | | void AddStockChangeRecord(Dt_StockInfo stockInfo, List<Dt_StockInfoDetail> stockInfoDetails, float beforeQuantity, float totalQuantity, StockChangeTypeEnum changeType, int? taskNum = null); |
| | | |
| | | void AddStockChangeRecord(Dt_StockInfo stockInfo, List<Dt_StockInfoDetail> residueDetailList, List<Dt_StockInfoDetail> updateDetails, List<Dt_StockInfoDetail> deleteDetails, StockChangeTypeEnum changeType, int? taskNum = null); |
| | | /// <summary> |
| | | /// å·æåå¨åºåè®°å½ |
| | | /// </summary> |
| | | /// <param name="stockInfo">åºå</param> |
| | | /// <param name="beforeQuantity">åå¨ååºå</param> |
| | | /// <param name="changeQuantity">åå¨åºå</param> |
| | | /// <param name="changeType">åå¨ç±»å</param> |
| | | /// <param name="taskNum">ä»»å¡å·</param> |
| | | /// <param name="orderNo">åæ®ç¼å·</param> |
| | | void AddStockChangeRecord(Dt_StockInfo stockInfo, decimal beforeQuantity, decimal changeQuantity, StockChangeTypeEnum changeType, int? taskNum = 0, string orderNo = ""); |
| | | /// <summary> |
| | | /// æåè¾
æåºåè®°å½ |
| | | /// </summary> |
| | | /// <param name="proStockInfo">åºå</param> |
| | | /// <param name="beforeQuantity">åå¨ååºå</param> |
| | | /// <param name="changeQuantity">åå¨åºå</param> |
| | | /// <param name="changeType">åå¨ç±»å</param> |
| | | /// <param name="taskNum">ä»»å¡å·</param> |
| | | /// <param name="orderNo"></param> |
| | | /// <exception cref="Exception"></exception> |
| | | void AddStockChangeRecord(Dt_ProStockInfo proStockInfo, decimal beforeQuantity, decimal changeQuantity, StockChangeTypeEnum changeType, int? taskNum = null, string orderNo = ""); |
| | | } |
| | | } |