仓库管理:出货计划:新增修改

This commit is contained in:
qianhao.xu 2024-03-26 15:03:49 +08:00
parent 4bf469a5c4
commit 6386aef7cf
6 changed files with 16 additions and 8 deletions

View File

@ -14,9 +14,9 @@
// "Conn": "Data Source=localhost;User ID=root;Password=123456;Initial Catalog=ZrAdmin;", // "Conn": "Data Source=localhost;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
// //
//"Conn": "Data Source=47.116.122.230;Port=3307;User ID=root;Password=123456;Initial Catalog=ZrAdmin;", "Conn": "Data Source=47.116.122.230;Port=3307;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
// //
"Conn": "Data Source=192.168.60.251;Port=3306;User ID=root;Password=123456;Initial Catalog=ZrAdmin;", // "Conn": "Data Source=192.168.60.251;Port=3306;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
// //
//"Conn": "Data Source=192.168.0.36;Port=3306;User ID=root;Password=123456;Initial Catalog=ZrAdmin;", //"Conn": "Data Source=192.168.0.36;Port=3306;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
"Type": 0, // MySql = 0, SqlServer = 1, Oracle = 3PgSql = 4, "Type": 0, // MySql = 0, SqlServer = 1, Oracle = 3PgSql = 4,
@ -28,7 +28,7 @@
// //
"CodeGenDbConfig": { "CodeGenDbConfig": {
//{dbName} //{dbName}
"Conn": "Data Source=192.168.0.36;Port=3306;User ID=root;Password=123456;Initial Catalog={dbName};", "Conn": "Data Source=47.116.122.230;Port=3307;User ID=root;Password=123456;Initial Catalog={dbName};",
"DbType": 0, "DbType": 0,
"IsAutoCloseConnection": true, "IsAutoCloseConnection": true,
"DbName": "ZrAdmin" // "DbName": "ZrAdmin" //

View File

@ -44,7 +44,7 @@ namespace ZR.Model.MES.wms.Dto
/// </summary> /// </summary>
public class WmGoodsNowProductionDto public class WmGoodsNowProductionDto
{ {
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; } public string Id { get; set; }

View File

@ -49,22 +49,22 @@ namespace ZR.Model.MES.wms.Dto
/// </summary> /// </summary>
public class WmGoodsOutProductionDto public class WmGoodsOutProductionDto
{ {
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; } public string Id { get; set; }
public string FkNowProductionId { get; set; } public string FkNowProductionId { get; set; }
public string FkOutOrderId { get; set; } public string FkOutOrderId { get; set; }
[Required(ErrorMessage = "箱子编号MES不能为空")]
public string PackageCode { get; set; } public string PackageCode { get; set; }
[Required(ErrorMessage = "箱子编号(客户)不能为空")]
public string PackageCodeClient { get; set; } public string PackageCodeClient { get; set; }
public string PackageCodeOriginal { get; set; } public string PackageCodeOriginal { get; set; }
[Required(ErrorMessage = "库位编号不能为空")]
public string LocationCode { get; set; } public string LocationCode { get; set; }
public string Partnumber { get; set; } public string Partnumber { get; set; }

View File

@ -60,6 +60,10 @@ namespace ZR.Service.mes.wms
/// <returns></returns> /// <returns></returns>
public WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction model) public WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction model)
{ {
if (string.IsNullOrEmpty(model.Id))
{
model.Id = SnowFlakeSingle.Instance.NextId().ToString();//也可以在程序中直接获取ID
}
return Context.Insertable(model).ExecuteReturnEntity(); return Context.Insertable(model).ExecuteReturnEntity();
} }

View File

@ -62,6 +62,10 @@ namespace ZR.Service.mes.wms
/// <returns></returns> /// <returns></returns>
public WmGoodsOutRecord AddWmGoodsOutProduction(WmGoodsOutRecord model) public WmGoodsOutRecord AddWmGoodsOutProduction(WmGoodsOutRecord model)
{ {
if (string.IsNullOrEmpty(model.Id))
{
model.Id= SnowFlakeSingle.Instance.NextId().ToString();//也可以在程序中直接获取ID
}
return Context.Insertable(model).ExecuteReturnEntity(); return Context.Insertable(model).ExecuteReturnEntity();
} }