焊接材料管理修改

This commit is contained in:
2024-09-28 16:59:44 +08:00
parent 4686441406
commit a7205a984d
35 changed files with 924 additions and 152 deletions
@@ -38,6 +38,7 @@ namespace FineUIPro.Web.HJGL.PreDesign
txtStackingPosition.Text = model.StackingPosition;
txtContactName.Text = model.ContactName;
txtContactPhone.Text = model.ContactPhone;
txtTrainNumber.Text = model.TrainNumber;
if (model.State== HJGL_PackagingmanageService.state_0)
{
btnSave.Hidden = false;
@@ -93,7 +94,8 @@ namespace FineUIPro.Web.HJGL.PreDesign
table.StackingPosition = txtStackingPosition.Text;
table.State = 0;
table.ContactName = txtContactName.Text;
table.ContactPhone = txtContactPhone.Text;
table.ContactPhone = txtContactPhone.Text;
table.TrainNumber=txtTrainNumber.Text;
BLL.HJGL_PackagingmanageService.AddHJGL_PackagingManage(table);
}
else
@@ -108,6 +110,7 @@ namespace FineUIPro.Web.HJGL.PreDesign
table.State = 0;
table.ContactName = txtContactName.Text;
table.ContactPhone =txtContactPhone.Text;
table.TrainNumber = txtTrainNumber.Text;
}
BLL.HJGL_PackagingmanageService.UpdateHJGL_PackagingManage(table);
}