This commit is contained in:
jl
2025-06-24 15:35:29 +08:00
parent 81ef9284b7
commit 7ed7a8cd88
33 changed files with 3955 additions and 98 deletions

View File

@ -14,7 +14,7 @@ namespace Epost.DAL
public DataTable GetSkuInfoList(string sku)
{
string sql = string.Format(" SELECT * FROM skuinfo WHERE (CHARINDEX('{0}',location)>0) or sku='{1}'",
string sql = string.Format(" SELECT top 1 * FROM orders WHERE (CHARINDEX('{0}',barcode)>0) or sku='{1}'",
sku, sku);