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
6dd2e58d
Commit
6dd2e58d
authored
Mar 04, 2025
by
1650842865
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
付款申请:根据供应商自动带出付款条件
parent
d3fa653a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
0 deletions
+18
-0
payApply.js
.../main/webapp/biz/topsun/sap/costReimbursement/payApply.js
+5
-0
payApply.jsp
...main/webapp/biz/topsun/sap/costReimbursement/payApply.jsp
+1
-0
SapCostReimbursement.java
...un/sap/costReimbursement/domain/SapCostReimbursement.java
+6
-0
SapCostReimbursementDetail.java
.../costReimbursement/domain/SapCostReimbursementDetail.java
+6
-0
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/costReimbursement/payApply.js
View file @
6dd2e58d
...
...
@@ -66,6 +66,7 @@ var tableArray = [
BANKL
:
"bankl"
,
BANKN
:
"bankn"
,
SWIFT
:
"swift"
,
TEXT1
:
"text1"
,
}
},
}
...
...
@@ -572,6 +573,10 @@ function loadGrid(obj) {
})
UICtrl
.
setGridColumns
(
obj
.
gridManager
,
columns
);
}
if
(
item
.
column
.
name
==
"partner"
){
var
text1
=
item
.
record
.
text1
;
$
(
"#text1"
).
val
(
text1
);
}
return
item
;
},
onAfterShowData
:
function
(){
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/costReimbursement/payApply.jsp
View file @
6dd2e58d
...
...
@@ -55,6 +55,7 @@
<div
class=
"hg-form-row"
>
<x:inputC
name=
"zepFtamount"
required=
"false"
readonly=
"true"
label=
"申请总金额(本位币)"
labelCol=
"2"
fieldCol=
"2"
mask=
"positiveMoney"
/>
<x:inputC
name=
"zepFtamount1"
required=
"false"
readonly=
"true"
label=
"申请总金额"
labelCol=
"2"
fieldCol=
"2"
mask=
"positiveMoney"
/>
<x:inputC
name=
"text1"
required=
"false"
readonly=
"true"
label=
"月结方式"
labelCol=
"2"
fieldCol=
"2"
/>
</div>
<div
class=
"hg-form-row"
id=
"approvalMoney"
>
<x:inputC
name=
"zepPtamount"
required=
"false"
readonly=
"true"
label=
"审批总金额(本位币)"
labelCol=
"2"
fieldCol=
"2"
mask=
"positiveMoney"
/>
...
...
topsun/src/main/java/com/huigou/topsun/sap/costReimbursement/domain/SapCostReimbursement.java
View file @
6dd2e58d
...
...
@@ -225,6 +225,12 @@ public class SapCostReimbursement extends FlowBillAbstractEntity {
@Column
(
name
=
"ZT012K_TEXT1"
)
private
String
zt012kText1
;
/**
* 付款方式
*/
@Column
(
name
=
"text1"
)
private
String
text1
;
@Override
protected
String
getCodeRuleId
()
{
...
...
topsun/src/main/java/com/huigou/topsun/sap/costReimbursement/domain/SapCostReimbursementDetail.java
View file @
6dd2e58d
...
...
@@ -412,4 +412,10 @@ public class SapCostReimbursementDetail implements Serializable {
@Column
(
name
=
"ZYL06"
)
private
String
zyl06
;
/**
* 付款方式
*/
@Column
(
name
=
"text1"
)
private
String
text1
;
}
\ No newline at end of file
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