UpstreamSendMaterial.cs
2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using Hh.Mes.Common.log;
using System;
using Hh.Mes.Pojo.System;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.EnumEntitys;
using Hh.Mes.POJO.ApiEntity;
using Hh.Mes.POJO.Response;
using static Microsoft.AspNetCore.Hosting.Internal.HostingApplication;
namespace Hh.Mes.Service.ApiService
{
public partial class UpstreamService
{
public dynamic SendMaterial(MaterialEntity entity)
{
var response = new ResponseUpstream<string>(entity.plmeid);
return ExceptionsHelp.Instance.ExecuteT(() =>
{
int resultCount = 0;
var material = new base_material
{
keys = Guid.NewGuid(),
plmeId = entity.plmeid,
factoryCode = entity.factory_code,
materialCode = entity.mater_code,
materialName = entity.mater_name,
unitCode = entity.unit,
crux = entity.crux == "1" ? "true" : "false",
weight = entity.weight,
specifications = entity.format,
procurement = entity.procurement_attribute,
isDelete = AddOrUpdateFlag
};
if (entity.type == EnumAction.I.ToString())
{
if (base.Context.Queryable<base_material>().Any(x => x.materialCode == material.materialCode && x.isDelete == AddOrUpdateFlag))
return response.ResponseError($"【MOM】物料信息[{nameof(material.materialCode)}]“{material.materialCode}”已存在,请勿重复发送!");
material.createTime = DateTime.Now;
material.createBy = SystemVariable.DefaultCreated;
resultCount = base.Context.Insertable(material).ExecuteCommand();
}
else if (entity.type == EnumAction.U.ToString())
{
material.updateTime = DateTime.Now;
material.updateBy = SystemVariable.DefaultCreated;
resultCount = base.Context.Updateable(material)
.IgnoreColumns(it => new { it.keys, it.createBy, it.createTime })
.Where(x => x.materialCode == material.materialCode && x.isDelete == AddOrUpdateFlag)
.ExecuteCommand();
}
else if (entity.type == EnumAction.D.ToString())
{
material.isDelete = DeleteFlag;
resultCount = Context.Updateable(material).UpdateColumns(x => new { x.isDelete })
.Where(x => x.materialCode == material.materialCode && x.isDelete == AddOrUpdateFlag)
.ExecuteCommand();
}
return resultCount > 0 ? response.ResponseSuccess() : response.ResponseError();
});
}
}
}