Commit a440c2f2 authored by 1650842865's avatar 1650842865

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

parent aceaea43
...@@ -1415,7 +1415,10 @@ function bindEvent_mrp(){ ...@@ -1415,7 +1415,10 @@ function bindEvent_mrp(){
$('#lgproName').searchbox({ $('#lgproName').searchbox({
type: "system", name: "dictionary", type: "system", name: "dictionary",
getParam: function (item) { getParam: function (item) {
return {fieldName: "LGORT"} return {
fieldName: "LGORT",
filterValue:$('#werks').val()
}
}, },
onChange: function (value, data) { onChange: function (value, data) {
$('#lgpro').val(data.LGORT); $('#lgpro').val(data.LGORT);
...@@ -1425,7 +1428,10 @@ function bindEvent_mrp(){ ...@@ -1425,7 +1428,10 @@ function bindEvent_mrp(){
$('#lgfsbName').searchbox({ $('#lgfsbName').searchbox({
type: "system", name: "dictionary", type: "system", name: "dictionary",
getParam: function (item) { getParam: function (item) {
return {fieldName: "LGORT"} return {
fieldName: "LGORT",
filterValue:$('#werks').val()
}
}, },
onChange: function (value, data) { onChange: function (value, data) {
$('#lgfsb').val(data.LGORT); $('#lgfsb').val(data.LGORT);
......
...@@ -49,6 +49,4 @@ public interface NonProdApplyDeptApplication { ...@@ -49,6 +49,4 @@ public interface NonProdApplyDeptApplication {
//保存待办消息 //保存待办消息
void saveBsnMessageData(NonProdApplyBaseInfo baseInfo,Map<String,Object> backMap); 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 { ...@@ -140,15 +140,6 @@ public class NonProdApplyNextController extends CommonController {
return toResult(map); 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