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
deb60fab
Commit
deb60fab
authored
Apr 10, 2025
by
1650842865
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
放行条空车,不到胡总审批,只到部门经理
parent
ba831e34
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletion
+19
-1
nonProdApplyNext.jsp
...n/webapp/biz/topsun/sap/nonProdApply/nonProdApplyNext.jsp
+6
-1
sapPermitDetail.js
.../src/main/webapp/biz/topsun/sap/permit/sapPermitDetail.js
+6
-0
sapPermitDetail.jsp
...src/main/webapp/biz/topsun/sap/permit/sapPermitDetail.jsp
+1
-0
SapPermit.java
...n/java/com/huigou/topsun/sap/permit/domain/SapPermit.java
+6
-0
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyNext.jsp
View file @
deb60fab
...
...
@@ -129,7 +129,12 @@
<!--x:inputC name="magrv" label="包装物料组" labelCol="1" fieldCol="2"/-->
<x:inputC
name=
"maktxEn"
label=
"英语品名"
labelCol=
"1"
fieldCol=
"2"
/>
<c:if
test=
"
${
applyType
==
1
}
"
>
<x:inputC
name=
"meinsName"
label=
"基本计量单位"
labelCol=
"1"
fieldCol=
"2"
wrapper=
"select"
readonly=
"true"
required=
"true"
/>
</c:if>
<c:if
test=
"
${
applyType
!=
1
}
"
>
<x:inputC
name=
"meinsName"
label=
"基本计量单位"
labelCol=
"1"
fieldCol=
"2"
wrapper=
"select"
required=
"true"
/>
</c:if>
<x:hidden
name=
"meins"
/>
<x:selectC
name=
"raube"
label=
"存储条件"
required=
"true"
labelCol=
"1"
fieldCol=
"2"
dictionary=
"raube"
/>
<x:inputC
name=
"brgew"
label=
"毛重"
labelCol=
"1"
fieldCol=
"2"
/>
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/permit/sapPermitDetail.js
View file @
deb60fab
...
...
@@ -134,6 +134,12 @@ function loadGrid() {
var
lifnrName
=
item
.
record
.
lifnrName
;
$
(
"#company"
).
val
(
lifnrName
);
}
//如果是空车,不用胡总审核
if
(
item
.
column
.
name
==
"belongings"
){
if
(
item
.
value
.
indexOf
(
"空车"
)
>
-
1
){
$
(
"#isEmptyCar"
).
val
(
"Y"
);
}
}
return
item
;
}
});
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/permit/sapPermitDetail.jsp
View file @
deb60fab
...
...
@@ -24,6 +24,7 @@
<x:hidden
name=
"positionName"
/>
<x:hidden
name=
"personMemberId"
/>
<x:hidden
name=
"personMemberName"
/>
<x:hidden
name=
"isEmptyCar"
/>
<div
class=
"hg-form-cols"
>
<c:if
test=
"
${
statusId
==
3
}
"
>
...
...
topsun/src/main/java/com/huigou/topsun/sap/permit/domain/SapPermit.java
View file @
deb60fab
...
...
@@ -64,6 +64,12 @@ public class SapPermit extends FlowBillAbstractEntity {
@Column
(
name
=
"car_no"
)
private
String
carNo
;
/**
* 是否空车
*/
@Column
(
name
=
"is_empty_car"
)
private
String
isEmptyCar
;
@Override
protected
String
getCodeRuleId
()
{
return
"sapPermit"
;
...
...
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