SVN r1148
SVN-Revision: r1148
This commit is contained in:
@@ -431,7 +431,10 @@ namespace Lskj.Model
|
||||
///打印按钮交互条件
|
||||
/// </summary>
|
||||
public string PrintingConditions;
|
||||
|
||||
/// <summary>
|
||||
///新增保存时检查单据号
|
||||
/// </summary>
|
||||
public bool SaveVerifyBillNo;
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -439,7 +442,7 @@ namespace Lskj.Model
|
||||
/// </summary>
|
||||
/// <param name="rowItem">The row item.</param>
|
||||
///
|
||||
|
||||
//p_systembilltype
|
||||
public BillModel(DataRow rowItem)
|
||||
{
|
||||
if (rowItem == null) return;
|
||||
@@ -521,4 +524,5 @@ namespace Lskj.Model
|
||||
this.RefreshSelectedDetail = rowItem.Table.Columns.Contains("RefreshSelectedDetail") ? "1".Equals(rowItem["RefreshSelectedDetail"] + "") : false;
|
||||
this.InitialRefreshId = rowItem.Table.Columns.Contains("InitialRefreshId") ? rowItem["InitialRefreshId"] + "" : "";
|
||||
this.IgnoreAllocated = rowItem.Table.Columns.Contains("IgnoreAllocated") ? "1".Equals(rowItem["IgnoreAllocated"] + "") : false;
|
||||
this.BillSourceControlName = rowItem.Table.Col
|
||||
this.BillSourceControlName = rowItem.Table.Columns.Contains("BillSourceControlName") ? rowItem["BillSourceControlName"] + "" : "";
|
||||
if (!string.IsNullOrWhiteSpace(this.BillSource
|
||||
Reference in New Issue
Block a user