Browse Source

HFE参数调整

callm 5 years ago
parent
commit
df41e1d507

+ 2 - 0
UAS-出货标签管理(贸易版)/ExportExcel.cs

@@ -138,6 +138,8 @@ namespace UAS_LabelMachine
                         es_field1 += SQL1_.Rows[i]["es_filed"].ToString() + ",";
                     }
                 }
+                //生成导出数据
+                LogicHandler.GenHFEData(inoutno);
                 //分页信息的DataTable
                 string datasql = "";
                 LogicHandler.GetDataSQL(inoutno, es_field1.Substring(0, es_field1.Length - 1), Mount.Checked ? "QTY" : "Rate", out datasql);

File diff suppressed because it is too large
+ 244 - 129
UAS-出货标签管理(贸易版)/PublicMethod/ExcelHandler.cs


+ 7 - 1
UAS-出货标签管理(贸易版)/PublicMethod/LogicHandler.cs

@@ -485,8 +485,14 @@ namespace UAS_LabelMachine.PublicMethod
         public static void GetDataSQL(string iInoutno,string iText,string iNumOrRate,out string oSQL) {
             oSQL = "";
             string[] param = new string[] { iInoutno, iText, iNumOrRate, oSQL };
-            dh.CallProcedure("SP_GETDATASQL", ref param);
+            dh.CallProcedure("SP_GETDATASQL1", ref param);
             oSQL = param[3];
         }
+
+        public static void GenHFEData(string iInoutno)
+        {
+            string[] param = new string[] { iInoutno};
+            dh.CallProcedure("sp_InsertHFE", ref param);
+        }
     }
 }

Some files were not shown because too many files changed in this diff