change - 老发泡线执行计划添加MES工单编号,根据MES工单编号更新工单完工信息

dev
wenjy 1 year ago
parent 66a2337f11
commit f9c82fce1d

@ -1631,6 +1631,11 @@
SAP订单编码 SAP订单编码
</summary> </summary>
</member> </member>
<member name="P:Admin.Core.Model.BoxFoamPlan.PlanCode">
<summary>
MES计划编号
</summary>
</member>
<member name="P:Admin.Core.Model.BoxFoamPlan.PlanAmount"> <member name="P:Admin.Core.Model.BoxFoamPlan.PlanAmount">
<summary> <summary>
计划数量 计划数量

@ -30,6 +30,13 @@ namespace Admin.Core.Model
/// </summary> /// </summary>
[SugarColumn(ColumnName = "ORDER_CODE")] [SugarColumn(ColumnName = "ORDER_CODE")]
public string OrderCode { get; set; } public string OrderCode { get; set; }
/// <summary>
/// MES计划编号
/// </summary>
[SugarColumn(ColumnName = "PLAN_CODE")]
public string PlanCode { get; set; }
/// <summary> /// <summary>
/// 计划数量 /// 计划数量
/// </summary> /// </summary>

@ -28,7 +28,10 @@ namespace Admin.Core.Service.Service_New
private readonly ISysUserInfoServices _sysUserInfoServices; private readonly ISysUserInfoServices _sysUserInfoServices;
private readonly IBaseSpaceInfoServices _baseSpaceInfoServices; private readonly IBaseSpaceInfoServices _baseSpaceInfoServices;
public RecordBoxFoamFixtureComplateServices(IBaseRepository<RecordBoxFoamFixtureComplate> dal, IOldBoxFoamTypeServices boxFoamTypeServices, IBoxFoamPlanServices boxFoamPlanServices, IBoxFoamDataServices oldBoxFoamDataServices, ISysUserInfoServices sysUserInfoServices, IBaseSpaceInfoServices baseSpaceInfoServices)
private readonly IProductPlanInfoServices _productPlanInfoServices;
public RecordBoxFoamFixtureComplateServices(IBaseRepository<RecordBoxFoamFixtureComplate> dal, IOldBoxFoamTypeServices boxFoamTypeServices, IBoxFoamPlanServices boxFoamPlanServices, IBoxFoamDataServices oldBoxFoamDataServices, ISysUserInfoServices sysUserInfoServices, IBaseSpaceInfoServices baseSpaceInfoServices, IProductPlanInfoServices productPlanInfoServices)
{ {
this._dal = dal; this._dal = dal;
base.BaseDal = dal; base.BaseDal = dal;
@ -37,6 +40,7 @@ namespace Admin.Core.Service.Service_New
_oldBoxFoamDataServices = oldBoxFoamDataServices; _oldBoxFoamDataServices = oldBoxFoamDataServices;
_sysUserInfoServices = sysUserInfoServices; _sysUserInfoServices = sysUserInfoServices;
_baseSpaceInfoServices = baseSpaceInfoServices; _baseSpaceInfoServices = baseSpaceInfoServices;
_productPlanInfoServices = productPlanInfoServices;
} }
/// <summary> /// <summary>
@ -133,6 +137,9 @@ namespace Admin.Core.Service.Service_New
if (planResult) if (planResult)
{ {
Console.WriteLine($"生产计划更新成功:{boxPlan.CompleteAmount}"); Console.WriteLine($"生产计划更新成功:{boxPlan.CompleteAmount}");
//更新MES计划
UpdateMesPlanInfo(boxPlan.PlanCode, item.RealOutPut);
} }
else else
{ {
@ -308,5 +315,31 @@ namespace Admin.Core.Service.Service_New
return result; return result;
} }
/// <summary>
/// 更新MES计划信息
/// </summary>
private void UpdateMesPlanInfo(string planCode,int complateAmount)
{
if (string.IsNullOrEmpty(planCode))
{
return;
}
var planInfo = _productPlanInfoServices.GetProductPlanByPlanCode(planCode).Result;
if(planInfo != null)
{
if(planInfo.PlanAmount > planInfo.CompleteAmount)
{
planInfo.CompleteAmount = planInfo.CompleteAmount + complateAmount;
if(planInfo.PlanAmount >= planInfo.CompleteAmount)
{
planInfo.EndTime = DateTime.Now;
}
_productPlanInfoServices.UpdateProductPlanInfo(planInfo);
}
}
}
} }
} }

@ -111,6 +111,7 @@ namespace Aucma.Core.OldBoxFoam.ViewModels
plan.UpdateTime = DateTime.Now; plan.UpdateTime = DateTime.Now;
plan.CreateTime = DateTime.Now; plan.CreateTime = DateTime.Now;
plan.OrderCode = _planInfo.OrderCode; plan.OrderCode = _planInfo.OrderCode;
plan.PlanCode = _planInfo.PlanCode;
plan.ShiftType = 1; plan.ShiftType = 1;
var result = _boxFoamPlanServices.AddAsync(plan).Result; var result = _boxFoamPlanServices.AddAsync(plan).Result;
if (result>=0) if (result>=0)

@ -189,6 +189,7 @@
<Border Grid.Column="0" BorderBrush="White" BorderThickness="1" > <Border Grid.Column="0" BorderBrush="White" BorderThickness="1" >
<TextBlock x:Name="spaceCodeText" Text="{Binding Local}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/> <TextBlock x:Name="spaceCodeText" Text="{Binding Local}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border> </Border>
<TextBlock x:Name="ObjId" Text="{Binding ObjId}" FontSize="18" Foreground="Transparent" />
<Grid Grid.Column="1" > <Grid Grid.Column="1" >
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="3*"/> <ColumnDefinition Width="3*"/>
@ -205,7 +206,7 @@
</Border> </Border>
<Border Grid.Column="1" Grid.Row="0" BorderBrush="White" BorderThickness="1" > <Border Grid.Column="1" Grid.Row="0" BorderBrush="White" BorderThickness="1" >
<Button Command="{Binding DataContext.SubmitCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}" CommandParameter="{Binding Text, ElementName=spaceCodeText}" Background="Transparent"> <Button Command="{Binding DataContext.SubmitCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}" CommandParameter="{Binding Text, ElementName=ObjId}" Background="Transparent">
<TextBlock Text="{Binding MaterialName}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Left" /> <TextBlock Text="{Binding MaterialName}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Left" />
</Button> </Button>
<!--<TextBlock x:Name="spaceCodeText2" Text="{Binding MaterialName}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>--> <!--<TextBlock x:Name="spaceCodeText2" Text="{Binding MaterialName}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>-->

Loading…
Cancel
Save