Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-bpm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
鲁鑫
topsun-bpm
Commits
fb45877d
Commit
fb45877d
authored
Jun 21, 2024
by
刘学辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
物料主数据字段调整
parent
ba29060e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
7 deletions
+20
-7
nonProdApplyMRP.js
...ain/webapp/biz/topsun/sap/nonProdApply/nonProdApplyMRP.js
+1
-2
nonProdApplyMRP.jsp
...in/webapp/biz/topsun/sap/nonProdApply/nonProdApplyMRP.jsp
+2
-3
nonProdApplyProduce.js
...webapp/biz/topsun/sap/nonProdApply/nonProdApplyProduce.js
+11
-0
nonProdApplyProduce.jsp
...ebapp/biz/topsun/sap/nonProdApply/nonProdApplyProduce.jsp
+2
-1
NonProdApplyDeptApplicationImpl.java
...ply/application/impl/NonProdApplyDeptApplicationImpl.java
+4
-1
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyMRP.js
View file @
fb45877d
...
...
@@ -175,8 +175,7 @@ function bindEvent(){
if
(
$
(
'#vint2'
).
val
()
==
''
){
$
(
'#vint2'
).
val
(
"999"
);
}
if
(
$
(
'#vrmod'
).
val
()
==
''
)
{
if
(
$
(
'#vrmod'
).
val
()
==
''
){
//消耗模式
$
(
'#vrmod'
).
val
(
"2"
);
}
$
(
'#lgproName'
).
searchbox
({
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyMRP.jsp
View file @
fb45877d
...
...
@@ -116,10 +116,9 @@
<x:selectC
name=
"vrmod"
label=
"消耗模式"
labelCol=
"1"
fieldCol=
"2"
dictionary=
"vrmod"
/>
<x:inputC
name=
"vint1"
label=
"逆推消耗期间"
labelCol=
"1"
fieldCol=
"2"
mask=
"99999"
/>
<x:inputC
name=
"vint2"
label=
"顺推消耗期间"
labelCol=
"1"
fieldCol=
"2"
mask=
"99999"
/>
<x:inputC
name=
"miskz"
label=
"综合MRP"
labelCol=
"1"
fieldCol=
"2"
/>
<x:inputC
name=
"perkz"
label=
"期间标识"
labelCol=
"1"
fieldCol=
"2"
/>
<x:selectC
name=
"miskz"
label=
"综合MRP"
labelCol=
"1"
fieldCol=
"2"
dictionary=
"MISKZ"
/>
<x:selectC
name=
"perkz"
label=
"期间标识"
labelCol=
"1"
fieldCol=
"2"
dictionary=
"perkz"
/>
</div>
</div>
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyProduce.js
View file @
fb45877d
...
...
@@ -175,6 +175,17 @@ function bindEvent(){
$
(
'#ausme'
).
val
(
data
.
MSEHI
);
$
(
'#ausmeName'
).
val
(
data
.
MSEHL
);
}
});
//"T024F
//alert($('#werks').val());
$
(
'#fevor'
).
searchbox
({
type
:
"system"
,
name
:
"dictionary"
,
getParam
:
function
(
item
)
{
return
{
fieldName
:
"T024F"
,
filterValue
:
$
(
'#werks'
).
val
()}
},
onChange
:
function
(
value
,
data
)
{
$
(
'#fevor'
).
val
(
data
.
FEVOR
);
// $('#fevorName').val(data.LGOBE);
}
});
}
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyProduce.jsp
View file @
fb45877d
...
...
@@ -17,6 +17,7 @@
<form
class=
"hg-form"
method=
"post"
action=
""
id=
"submitForm"
>
<x:hidden
name=
"active"
/>
<!--状态-->
<x:hidden
name=
"meId"
/>
<!--状态-->
<x:hidden
name=
"werks"
/>
<div
style=
"float: right; margin-right: 10px;display: none;"
class=
"btn-group"
id=
"buttonBox"
>
<button
id=
"save"
title=
""
type=
"button"
onclick=
"saveForm(0)"
class=
"btn btn-gray"
><i
class=
"fa fa-save"
></i>
保存
...
...
@@ -79,7 +80,7 @@
<x:inputC
name=
"umrenProd"
label=
"转换分母"
labelCol=
"1"
fieldCol=
"3"
/>
<x:inputC
name=
"umrezProd"
label=
"转换分子"
labelCol=
"1"
fieldCol=
"3"
/>
<x:selectC
name=
"sfcpf"
label=
"生产计划参数文件"
labelCol=
"2"
fieldCol=
"2"
dictionary=
"sfcpf"
/>
<x:inputC
name=
"fevor"
label=
"生产主管"
labelCol=
"1"
fieldCol=
"2"
/>
<x:inputC
name=
"fevor"
label=
"生产主管"
labelCol=
"1"
fieldCol=
"2"
wrapper=
"select"
/>
</div>
</div>
...
...
topsun/src/main/java/com/huigou/topsun/sap/nonProdApply/application/impl/NonProdApplyDeptApplicationImpl.java
View file @
fb45877d
...
...
@@ -330,7 +330,10 @@ public class NonProdApplyDeptApplicationImpl extends BaseApplication implements
}
//存储分区标识默认001
sapVO
.
setLgbkz
(
"001"
);
sapVO
.
setMbrsh
(
"M"
);
//行业默认M
sapVO
.
setMbrsh
(
"M"
);
//行业默认M
if
(
"0"
.
equals
(
sapVO
.
getPerkz
())){
//期间标识
sapVO
.
setPerkz
(
""
);
}
//销售单位转换
if
(
StringUtil
.
isNotBlank
(
sapVO
.
getVrkme
())){
Map
<
String
,
Object
>
unitsaleMap
=
new
HashMap
<>();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment