Files
iMES_Net/iMES.Warehouse/Services/Warehouse/Partial/Ware_OutWareHouseBillService.cs

133 lines
5.8 KiB
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
/*
*Ware_OutWareHouseBill类的业务代码应在此处编写
*使repository.EF/Dapper等信息
*使repository.DbContextBeginTransaction
*使DBServerProvider.
*使UserContext.Current操作
*Ware_OutWareHouseBillService对增ServiceFunFilter
*/
using iMES.Core.BaseProvider;
using iMES.Core.Extensions.AutofacManager;
using iMES.Entity.DomainModels;
using System.Linq;
using iMES.Core.Utilities;
using System.Linq.Expressions;
using iMES.Core.Extensions;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.AspNetCore.Http;
using iMES.Warehouse.IRepositories;
using System;
using iMES.Custom.IRepositories;
using iMES.Warehouse.Repositories;
using System.Collections.Generic;
using iMES.Core.Enums;
using iMES.Custom.Services;
namespace iMES.Warehouse.Services
{
public partial class Ware_OutWareHouseBillService
{
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IWare_OutWareHouseBillRepository _repository;//访问数据库
private readonly IBase_NumberRuleRepository _numberRuleRepository;//自定义编码规则访问数据库
[ActivatorUtilitiesConstructor]
public Ware_OutWareHouseBillService(
IWare_OutWareHouseBillRepository dbRepository,
IBase_NumberRuleRepository numberRuleRepository,
IHttpContextAccessor httpContextAccessor
)
: base(dbRepository)
{
_httpContextAccessor = httpContextAccessor;
_numberRuleRepository = numberRuleRepository;
_repository = dbRepository;
//多租户会用到这init代码其他情况可以不用
//base.Init(dbRepository);
}
WebResponseContent webResponse = new WebResponseContent();
/// <summary>
/// 新建
/// </summary>
/// <param name="saveDataModel"></param>
/// <returns></returns>
public override WebResponseContent Add(SaveModel saveDataModel)
{
//此处saveModel是从前台提交的原生数据可对数据进修改过滤
AddOnExecuting = (Ware_OutWareHouseBill outWareHouseBill, object list) =>
{
if (string.IsNullOrWhiteSpace(outWareHouseBill.OutWareHouseBillCode))
outWareHouseBill.OutWareHouseBillCode = GetOutWareHouseBillCode();
//如果返回false,后面代码不会再执行
if (repository.Exists(x => x.OutWareHouseBillCode == outWareHouseBill.OutWareHouseBillCode))
{
return webResponse.Error("出库单编号已存在");
}
return webResponse.OK();
};
return base.Add(saveDataModel);
}
public override object GetDetailPage(PageDataOptions pageData)
{
var query = Ware_OutWareHouseBillListRepository.Instance.IQueryablePage<Ware_OutWareHouseBillList>(
pageData.Page,
pageData.Rows,
out int count,
x => x.OutWareHouseBill_Id == pageData.Value.GetInt(),
orderBy: x => new Dictionary<object, QueryOrderBy>() { { x.CreateDate, QueryOrderBy.Desc } }
);
PageGridData<Ware_OutWareHouseBillList> detailGrid = new PageGridData<Ware_OutWareHouseBillList>();
detailGrid.rows = query.ToList();
detailGrid.total = count;
//获取当前库存数量
List<Base_Product> storeList = Base_ProductService.GetStoreNumber();
for (int i = 0; i < detailGrid.rows.Count; i++)
{
if (storeList.Exists(x => x.Product_Id == detailGrid.rows[i].Product_Id))
{
detailGrid.rows[i].InventoryQty = storeList.Find(x => x.Product_Id == detailGrid.rows[i].Product_Id).InventoryQty;
}
else
{
detailGrid.rows[i].InventoryQty = 0;
}
}
return detailGrid;
}
/// <summary>
/// 自动生成工序编号
/// </summary>
/// <returns></returns>
public string GetOutWareHouseBillCode()
{
DateTime dateNow = (DateTime)DateTime.Now.ToString("yyyy-MM-dd").GetDateTime();
//查询当天最新的订单号
string defectItemCode = repository.FindAsIQueryable(x => x.CreateDate > dateNow && x.OutWareHouseBillCode.Length>8)
.OrderByDescending(x => x.OutWareHouseBillCode)
.Select(s => s.OutWareHouseBillCode)
.FirstOrDefault();
Base_NumberRule numberRule = _numberRuleRepository.FindAsIQueryable(x => x.FormCode == "OutStoreForm")
.OrderByDescending(x => x.CreateDate)
.FirstOrDefault();
if (numberRule != null)
{
string rule = numberRule.Prefix + DateTime.Now.ToString(numberRule.SubmitTime.Replace("hh", "HH"));
if (string.IsNullOrEmpty(defectItemCode))
{
rule += "1".PadLeft(numberRule.SerialNumber, '0');
}
else
{
rule += (defectItemCode.Substring(defectItemCode.Length - numberRule.SerialNumber).GetInt() + 1).ToString("0".PadLeft(numberRule.SerialNumber, '0'));
}
return rule;
}
else //如果自定义序号配置项不存在,则使用日期生成
{
return DateTime.Now.ToString("yyyyMMddHHmmssffff");
}
}
}
}