Commit a440c2f2 authored by 1650842865's avatar 1650842865

物料创建储存点根据工厂筛选

parent aceaea43
......@@ -1415,7 +1415,10 @@ function bindEvent_mrp(){
$('#lgproName').searchbox({
type: "system", name: "dictionary",
getParam: function (item) {
return {fieldName: "LGORT"}
return {
fieldName: "LGORT",
filterValue:$('#werks').val()
}
},
onChange: function (value, data) {
$('#lgpro').val(data.LGORT);
......@@ -1425,7 +1428,10 @@ function bindEvent_mrp(){
$('#lgfsbName').searchbox({
type: "system", name: "dictionary",
getParam: function (item) {
return {fieldName: "LGORT"}
return {
fieldName: "LGORT",
filterValue:$('#werks').val()
}
},
onChange: function (value, data) {
$('#lgfsb').val(data.LGORT);
......
......@@ -49,6 +49,4 @@ public interface NonProdApplyDeptApplication {
//保存待办消息
void saveBsnMessageData(NonProdApplyBaseInfo baseInfo,Map<String,Object> backMap);
//领导确认
Map<String,Object> confirmNonProdApplyDept(SDO sdo);
}
\ No newline at end of file
......@@ -140,15 +140,6 @@ public class NonProdApplyNextController extends CommonController {
return toResult(map);
}
/**
* 领导确认和回退
*/
public String confirmSapNonProdApplyDept() {
SDO sdo = this.getSDO();
Map<String, Object> map = nonProdApplyDeptApplication.confirmNonProdApplyDept(sdo);
return toResult(map);
}
/**
* 分发表单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment