Browse Source

1.修改iRepair查询2,工单的变数为id

PTD
Marvin 2 years ago
parent
commit
7299b2f459
  1. 6
      AMESCoreStudio.Web/Controllers/QRSController.cs
  2. 2
      AMESCoreStudio.Web/Views/QRS/QRS018.cshtml

6
AMESCoreStudio.Web/Controllers/QRSController.cs

@ -1633,11 +1633,11 @@ namespace AMESCoreStudio.Web.Controllers
return View();
}
public IActionResult QRS018A(string wipNO)
public IActionResult QRS018A(string id)
{
ViewData["Title"] = "查詢條件 - 工單號碼 : " + wipNO;
ViewData["Title"] = "查詢條件 - 工單號碼 : " + id;
ViewBag.WIP_NO = wipNO;
ViewBag.WIP_NO = id;
return View();
}

2
AMESCoreStudio.Web/Views/QRS/QRS018.cshtml

@ -131,7 +131,7 @@
{
var wipNO = $("#wipNO").val();
var query = "?wipNO=" + wipNO;
var query = "?id=" + wipNO;
hg.open('iRepair查詢2', '/QRS/QRS018A' + query, '', '', true);
};

Loading…
Cancel
Save