|
|
|
@ -13,6 +13,7 @@ using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Method
|
|
|
|
|
{
|
|
|
|
@ -63,6 +64,17 @@ namespace DS.WMS.Core.Op.Method
|
|
|
|
|
|
|
|
|
|
var entity = tenantDb.Insertable(data).ExecuteReturnEntity();
|
|
|
|
|
|
|
|
|
|
if (req.CtnInfo.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
foreach (var item in req.CtnInfo)
|
|
|
|
|
{
|
|
|
|
|
var ctn = item.Adapt<SeaExportBillManageCtn>();
|
|
|
|
|
ctn.Pid = entity.Id;
|
|
|
|
|
tenantDb.Insertable(ctn).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DataResult.Successed("添加成功!", entity.Id, MultiLanguageConst.DataCreateSuccess);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
@ -71,6 +83,27 @@ namespace DS.WMS.Core.Op.Method
|
|
|
|
|
|
|
|
|
|
info = req.Adapt(info);
|
|
|
|
|
|
|
|
|
|
if (req.CtnInfo.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
var ctnList = tenantDb.Queryable<SeaExportBillManageCtn>().Where(x => x.Pid == req.Id).ToList();
|
|
|
|
|
foreach (var item in req.CtnInfo)
|
|
|
|
|
{
|
|
|
|
|
if (item.Id == 0)
|
|
|
|
|
{
|
|
|
|
|
var ctn = item.Adapt<SeaExportBillManageCtn>();
|
|
|
|
|
ctn.Pid = info.Id;
|
|
|
|
|
tenantDb.Insertable(ctn).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var ctn = ctnList.First(x => x.Id == item.Id);
|
|
|
|
|
ctn = item.Adapt(ctn);
|
|
|
|
|
tenantDb.Updateable(ctn).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tenantDb.Updateable(info).IgnoreColumns(ignoreAllNullColumns: true).EnableDiffLogEvent().ExecuteCommand();
|
|
|
|
|
return DataResult.Successed("更新成功!", MultiLanguageConst.DataUpdateSuccess);
|
|
|
|
|
}
|
|
|
|
@ -89,5 +122,58 @@ namespace DS.WMS.Core.Op.Method
|
|
|
|
|
.First();
|
|
|
|
|
return DataResult<SeaExportBillManageRes>.Success(data, MultiLanguageConst.DataQuerySuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提单箱信息列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public DataResult<List<SeaExportBillManageCtnRes>> GetBillManageCtnList(PageRequest request)
|
|
|
|
|
{
|
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
|
//序列化查询条件
|
|
|
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
|
|
|
var data = tenantDb.Queryable<SeaExportBillManageCtn>()
|
|
|
|
|
.Where(whereList)
|
|
|
|
|
.Select<SeaExportBillManageCtnRes>().ToQueryPage(request.PageCondition);
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 批量删除提单
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="req">主表Ids</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public DataResult BatchDelBillManage(IdModel req)
|
|
|
|
|
{
|
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
|
var list = tenantDb.Queryable<SeaExportBillManage>().Where(x => req.Ids.Contains(x.Id)).ToList();
|
|
|
|
|
if (list.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
var ctns = tenantDb.Queryable<SeaExportBillManageCtn>().Where(x => req.Ids.Contains(x.Pid)).ToList();
|
|
|
|
|
if (ctns.Count > 0) {
|
|
|
|
|
tenantDb.Deleteable(ctns).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
tenantDb.Deleteable(list).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
return DataResult.Successed("删除成功!", MultiLanguageConst.DataDelSuccess);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 批量删除提单箱信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="req">主表Id及箱信息Ids</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public DataResult BatchDelBillManageCtn(IdModel req)
|
|
|
|
|
{
|
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
|
var info = tenantDb.Queryable<SeaExportBillManage>().Where(x => x.Id ==long.Parse(req.Id)).First();
|
|
|
|
|
if (info.IsNull())
|
|
|
|
|
return DataResult.Failed("提单信息不存在", MultiLanguageConst.ShippingBillManageNotExist);
|
|
|
|
|
var list = tenantDb.Queryable<SeaExportBillManageCtn>().Where(x => x.Pid == long.Parse(req.Id) && req.Ids.Contains(x.Id)).ToList();
|
|
|
|
|
if (list.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
tenantDb.Deleteable(list).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
return DataResult.Successed("删除成功!", MultiLanguageConst.DataDelSuccess);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|