hao.jin
3 years ago
13 changed files with 232 additions and 19 deletions
@ -0,0 +1,21 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
using System.Data; |
||||
|
using PDAForm.Comm; |
||||
|
|
||||
|
namespace PDAForm.PDABiz |
||||
|
{ |
||||
|
public class F_VerifyBill |
||||
|
{ |
||||
|
public static DataSet GetBarCode(string VDA) |
||||
|
{ |
||||
|
string Cmd = "GetBarCode"; |
||||
|
string Pars = VDA; |
||||
|
|
||||
|
MyCommand command = new MyCommand(Cmd, Pars); |
||||
|
return F_Message.ServiceMessage(command.GetCommand()); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,25 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
using System.Data; |
||||
|
using Gm_WMS.DataAccess.DataService; |
||||
|
using Stone.Common; |
||||
|
|
||||
|
namespace Stone.DataService.Biz.Info |
||||
|
{ |
||||
|
public class F_VerifyBill |
||||
|
{ |
||||
|
|
||||
|
public static DataSet GetBarCodeByVDA(Command cmd) |
||||
|
{ |
||||
|
string VDA = cmd.Pars[0]; |
||||
|
string sql = "select BarCode from t_VerifyBill where 1= 1 " + |
||||
|
" and PackageNo1 = '" + VDA + "'" + |
||||
|
" or PackageNo2 = '" + VDA + "'" + |
||||
|
" order by Id desc"; |
||||
|
LocalDBService db = new LocalDBService(); |
||||
|
return db.Exec_DataSet(sql); |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue