Browse Source

读取WMS点修补状态,1是入库,0是出库

master
周红军 6 days ago
parent
commit
466c9b96da
  1. 2
      PaintingPC/Function.cs

2
PaintingPC/Function.cs

@ -1985,7 +1985,7 @@ namespace PaintingPC
{
try
{
string wmsSql = $"select * from TM_BJBMPT_POINT_REPAIR where BarCode='{barcode}' and RepaitType='0'";//0:入库 1:出库
string wmsSql = $"select * from TM_BJBMPT_POINT_REPAIR where BarCode='{barcode}' and RepaitType='1'";//1:入库 0:出库
string wmsSqlConnString = ConfigurationManager.ConnectionStrings["WmsSqlConnString"].ToString();
DataTable pointRepairTable = SqlHelper.GetDataDateTable(wmsSqlConnString, CommandType.Text, wmsSql, null);

Loading…
Cancel
Save