wanshenmean
4 天以前 ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b
Code/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/LocationStatusChangeRecordService.cs
@@ -1,16 +1,60 @@
using WIDESEA_Core.BaseRepository;
using WIDESEA_Common.LocationEnum;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IRecordService;
using WIDESEA_Model.Models;
namespace WIDESEA_RecordService
{
    /// <summary>
    /// 货位状态变更记录服务实现类
    /// </summary>
    public partial class LocationStatusChangeRecordService : ServiceBase<Dt_LocationStatusChangeRecord, IRepository<Dt_LocationStatusChangeRecord>>, ILocationStatusChangeRecordService
    {
        public LocationStatusChangeRecordService(IRepository<Dt_LocationStatusChangeRecord> BaseDal) : base(BaseDal)
        /// <summary>
        /// 构造函数
        /// </summary>
        public LocationStatusChangeRecordService(IRepository<Dt_LocationStatusChangeRecord> baseDal) : base(baseDal)
        {
        }
        /// <summary>
        /// 获取货位状态变更记录仓储接口
        /// </summary>
        public IRepository<Dt_LocationStatusChangeRecord> Repository => BaseDal;
        /// <summary>
        /// 记录货位状态变更。
        /// </summary>
        public async Task<bool> AddChangeRecordAsync(
            Dt_LocationInfo beforeLocation,
            Dt_LocationInfo afterLocation,
            LocationChangeType changeType,
            int? taskNum = null,
            string? orderNo = null,
            int? orderId = null,
            string? remark = null)
        {
            if (beforeLocation == null || afterLocation == null)
                return false;
            if (beforeLocation.LocationStatus == afterLocation.LocationStatus)
                return true;
            Dt_LocationStatusChangeRecord record = new Dt_LocationStatusChangeRecord
            {
                LocationId = afterLocation.Id,
                LocationCode = afterLocation.LocationCode,
                BeforeStatus = beforeLocation.LocationStatus,
                AfterStatus = afterLocation.LocationStatus,
                ChangeType = (int)changeType,
                OrderId = orderId,
                OrderNo = orderNo,
                TaskNum = taskNum,
                Remark = remark
            };
            return await BaseDal.AddDataAsync(record) > 0;
        }
    }
}