Browse Source

PTD003 日期篩選優化

PTD
vick_wang419@hotmail.com.tw 1 year ago
parent
commit
5005ca15fd
  1. 2
      AMESCoreStudio.WebApi/Controllers/AMES/WipInfosController.cs

2
AMESCoreStudio.WebApi/Controllers/AMES/WipInfosController.cs

@ -3490,7 +3490,7 @@ and b.item_no = '{0}' and a.barcode_no = '{1}'", kp_no, barcode_no);
result.Success = false; result.Success = false;
return result; return result;
} }
strSQL += $" And a.CreateDate Between '{dateStart}' And '{dateEnd}'"; strSQL += $" And a.CreateDate Between '{dateStart + " 00:00:00"}' And '{dateEnd + " 23:59:59"}'";
} }
//排序:ZProductTrans.CreateDate DESC //排序:ZProductTrans.CreateDate DESC

Loading…
Cancel
Save