//Detail Table
  public static void AddColumns(ref DataTable table)
  {
   table.Columns.Add("BusinessType",typeof(string));
   table.Columns.Add("BusinessUnit",typeof(string));
   table.Columns.Add("SourceCode",typeof(string));
   table.Columns.Add("UserName",typeof(string));
   table.Columns.Add("SONO",typeof(string));
   table.Columns.Add("CustomerCode_Market",typeof(string));
   table.Columns.Add("Customer_Plantid",typeof(string));
   table.Columns.Add("InvoiceNo",typeof(string));
   table.Columns.Add("OCNO_PLNo",typeof(string));
   table.Columns.Add("ItemNo",typeof(string));   
   table.Columns.Add("PCS",typeof(string));
   table.Columns.Add("CTNS",typeof(string));
   table.Columns.Add("CBM",typeof(string));
   table.Columns.Add("KGS",typeof(string));
   table.Columns.Add("ClosingDate",typeof(string));
   table.Columns.Add("JobNO",typeof(string));
   table.Columns.Add("DestinationID",typeof(string));
   table.Columns.Add("Status",typeof(string));
   

  }

  public static void updColumns(ref DataTable table)
  {
   table.Columns.Add("BusinessType",typeof(string));
   table.Columns.Add("BusinessUnit",typeof(string));
   table.Columns.Add("SourceCode",typeof(string));
   table.Columns.Add("UserName",typeof(string));
   table.Columns.Add("SONO",typeof(string));
   table.Columns.Add("CustomerCode_Market",typeof(string));
   table.Columns.Add("Customer_Plantid",typeof(string));
   table.Columns.Add("InvoiceNo",typeof(string));
   table.Columns.Add("OCNO_PLNo",typeof(string));
   table.Columns.Add("ItemNo",typeof(string));   
   table.Columns.Add("PCS",typeof(string));
   table.Columns.Add("CTNS",typeof(string));
   table.Columns.Add("CBM",typeof(string));
   table.Columns.Add("KGS",typeof(string));
   table.Columns.Add("ClosingDate",typeof(string));
   table.Columns.Add("JobNO",typeof(string));
   table.Columns.Add("DestinationID",typeof(string));
   table.Columns.Add("FID",typeof(string));
   table.Columns.Add("Status",typeof(string));

  }

相关文章:

  • 2022-12-23
  • 2022-03-06
  • 2021-12-14
  • 2021-08-28
  • 2021-09-03
  • 2022-12-23
  • 2021-07-18
  • 2022-01-20
猜你喜欢
  • 2022-12-23
  • 2022-03-07
  • 2021-11-29
  • 2022-12-23
  • 2021-05-22
  • 2021-11-21
  • 2021-07-01
相关资源
相似解决方案