|
|
@ -749,5 +749,25 @@ where a.ID IN (" + keyValue.TrimEnd(',') + ") and a.WorkPoint in ('" + WorkPoin |
|
|
|
}; |
|
|
|
return Content(JsonData.ToJson()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//领料申请退料
|
|
|
|
[HttpGet] |
|
|
|
[HandlerAjaxOnly] |
|
|
|
public ActionResult GetGridJsonLLSQTL(Pagination pagination, string queryJson) |
|
|
|
{ |
|
|
|
DataTable ListData = App.GetGridJsonLLSQTL(queryJson, ref pagination); |
|
|
|
var JsonData = new |
|
|
|
|
|
|
|
{ |
|
|
|
total = pagination.total, |
|
|
|
page = pagination.page, |
|
|
|
records = pagination.records, |
|
|
|
rows = ListData, |
|
|
|
}; |
|
|
|
return Content(JsonData.ToJson()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |