|
|
@@ -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);
|
|
|
+ }
|
|
|
}
|
|
|
}
|