材料管理修改(打印修改,出库单已审核已完成不计算匹配率)材料匹配修改,焊接任务单修改
This commit is contained in:
+169
-1
@@ -100350,6 +100350,16 @@ namespace Model
|
||||
|
||||
private string _WeldingWire;
|
||||
|
||||
private string _CreateMan;
|
||||
|
||||
private string _AuditMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate;
|
||||
|
||||
private string _AuditMan2;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate2;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -100394,6 +100404,16 @@ namespace Model
|
||||
partial void OnWeldingRodChanged();
|
||||
partial void OnWeldingWireChanging(string value);
|
||||
partial void OnWeldingWireChanged();
|
||||
partial void OnCreateManChanging(string value);
|
||||
partial void OnCreateManChanged();
|
||||
partial void OnAuditManChanging(string value);
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnAuditDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnAuditMan2Changing(string value);
|
||||
partial void OnAuditMan2Changed();
|
||||
partial void OnAuditDate2Changing(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDate2Changed();
|
||||
#endregion
|
||||
|
||||
public HJGL_WeldTask()
|
||||
@@ -100801,6 +100821,106 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="VarChar(50)")]
|
||||
public string CreateMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CreateMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CreateMan != value))
|
||||
{
|
||||
this.OnCreateManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CreateMan = value;
|
||||
this.SendPropertyChanged("CreateMan");
|
||||
this.OnCreateManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan", DbType="VarChar(50)")]
|
||||
public string AuditMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan != value))
|
||||
{
|
||||
this.OnAuditManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan = value;
|
||||
this.SendPropertyChanged("AuditMan");
|
||||
this.OnAuditManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate != value))
|
||||
{
|
||||
this.OnAuditDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate = value;
|
||||
this.SendPropertyChanged("AuditDate");
|
||||
this.OnAuditDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan2", DbType="VarChar(50)")]
|
||||
public string AuditMan2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan2 != value))
|
||||
{
|
||||
this.OnAuditMan2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan2 = value;
|
||||
this.SendPropertyChanged("AuditMan2");
|
||||
this.OnAuditMan2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate2", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate2 != value))
|
||||
{
|
||||
this.OnAuditDate2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate2 = value;
|
||||
this.SendPropertyChanged("AuditDate2");
|
||||
this.OnAuditDate2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -102357,7 +102477,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification", DbType="NVarChar(500)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification", DbType="NVarChar(50)")]
|
||||
public string Rectification
|
||||
{
|
||||
get
|
||||
@@ -261114,6 +261234,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _WarehouseDate;
|
||||
|
||||
private string _AuditMan2;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate2;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -261150,6 +261274,10 @@ namespace Model
|
||||
partial void OnWarehouseManChanged();
|
||||
partial void OnWarehouseDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnWarehouseDateChanged();
|
||||
partial void OnAuditMan2Changing(string value);
|
||||
partial void OnAuditMan2Changed();
|
||||
partial void OnAuditDate2Changing(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDate2Changed();
|
||||
#endregion
|
||||
|
||||
public Tw_OutputMaster()
|
||||
@@ -261477,6 +261605,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan2", DbType="VarChar(50)")]
|
||||
public string AuditMan2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan2 != value))
|
||||
{
|
||||
this.OnAuditMan2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan2 = value;
|
||||
this.SendPropertyChanged("AuditMan2");
|
||||
this.OnAuditMan2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate2", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate2 != value))
|
||||
{
|
||||
this.OnAuditDate2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate2 = value;
|
||||
this.SendPropertyChanged("AuditDate2");
|
||||
this.OnAuditDate2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user