You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
667 B
26 lines
667 B
3 years ago
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|