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
58e41ff4
Commit
58e41ff4
authored
May 22, 2025
by
1650842865
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工序外协的LOSS需要按百分比显示;费用报销优化
parent
cfa2c4d8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
processQuotedPriceDetail.js
...topsun/sap/processQuotedPrice/processQuotedPriceDetail.js
+1
-1
processQuotedPriceList.js
...z/topsun/sap/processQuotedPrice/processQuotedPriceList.js
+1
-1
processQuotedPriceNumber.js
...topsun/sap/processQuotedPrice/processQuotedPriceNumber.js
+2
-2
ProcessQuotedPriceItemApplicationImpl.java
...plication/impl/ProcessQuotedPriceItemApplicationImpl.java
+5
-0
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/processQuotedPrice/processQuotedPriceDetail.js
View file @
58e41ff4
...
...
@@ -337,7 +337,7 @@ function loadClickItemGrid() {
{
display
:
"运输费"
,
name
:
"freight"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"包装费"
,
name
:
"packMoney"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"最低消费"
,
name
:
"minimum"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"loss数"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"loss数
百分比
"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
],
dataAction
:
"server"
,
url
:
web_app
.
name
+
'/processQuotedPrice/queryProcessQuotedPriceItemNumbers.ajax'
,
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/processQuotedPrice/processQuotedPriceList.js
View file @
58e41ff4
...
...
@@ -211,7 +211,7 @@ function showItemNumber(row,panel){
{
display
:
"运输费"
,
name
:
"freight"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
,},
{
display
:
"包装费"
,
name
:
"packMoney"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
,},
{
display
:
"最低消费"
,
name
:
"minimum"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"loss数"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
{
display
:
"loss数
百分比
"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
},
],
dataAction
:
'local'
,
checkbox
:
false
,
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/processQuotedPrice/processQuotedPriceNumber.js
View file @
58e41ff4
...
...
@@ -98,9 +98,9 @@ function loadItemNumberGrid() {
}
},
{
display
:
"loss数"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
,
display
:
"loss数
百分比
"
,
name
:
"lossNumber"
,
width
:
100
,
minWidth
:
60
,
type
:
"String"
,
align
:
"left"
,
editor
:
{
required
:
false
,
type
:
"text"
,
mask
:
'9
999999.9
99'
required
:
false
,
type
:
"text"
,
mask
:
'9
.
99'
}
},
],
...
...
topsun/src/main/java/com/huigou/topsun/sap/processQuotedPrice/application/impl/ProcessQuotedPriceItemApplicationImpl.java
View file @
58e41ff4
...
...
@@ -99,6 +99,11 @@ public class ProcessQuotedPriceItemApplicationImpl extends BaseApplication imple
List
<
ProcessQuotedPriceItem
>
priceItemList
=
processQuotedPriceItemRepository
.
findAll
(
ids
);
for
(
ProcessQuotedPriceItem
processQuotedPriceItem
:
priceItemList
)
{
processQuotedPriceItem
.
setStatus
(
status
);
processQuotedPriceItem
.
setDisableDate
(
new
Date
());
String
personMemberId
=
this
.
getOperator
().
getPersonMemberId
();
String
personMemberName
=
this
.
getOperator
().
getPersonMemberName
();
processQuotedPriceItem
.
setDisablePersonId
(
personMemberId
);
processQuotedPriceItem
.
setDisablePersonName
(
personMemberName
);
}
processQuotedPriceItemRepository
.
save
(
priceItemList
);
}
...
...
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