Browse Source

1.修正直通率

PTD
Marvin 2 years ago
parent
commit
9a78da2d10
  1. 2
      AMESCoreStudio.Web/Controllers/QRSController.cs
  2. 4
      AMESCoreStudio.Web/Views/QRS/QRS014C.cshtml

2
AMESCoreStudio.Web/Controllers/QRSController.cs

@ -9426,7 +9426,7 @@ namespace AMESCoreStudio.Web.Controllers
#region 醫療
wipStation = await _pcsApi.GetWipStation4QRS014GroupM(itemNO, dateStart, dateEnd, modelNO, werksNo, dateType);
wipStation = await _pcsApi.GetWipStation4QRS014GroupMByWeek(itemNO, dateStart, dateEnd, modelNO, werksNo, dateType);
if (wipStation.DataTotal > 0)
{
DataTable dtRate = new DataTable();

4
AMESCoreStudio.Web/Views/QRS/QRS014C.cshtml

@ -153,8 +153,8 @@
var xAxisData = new Array();
var yieldData = new Array();
$.each(response, function (i, item) {
yieldData[idx] = item["week"];
xAxisData[idx] = item["month"];
yieldData[idx] = item["yield"];
xAxisData[idx] = item["week"];
idx = idx + 1;
});

Loading…
Cancel
Save