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
d5f13f5a
Commit
d5f13f5a
authored
May 21, 2024
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户延迟付款申请接口调试;客户承诺付款时间必填
parent
fac942b2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
2 deletions
+7
-2
customerDelayPayDetail.jsp
...iz/topsun/sap/customerDelayPay/customerDelayPayDetail.jsp
+1
-1
customerDelayPayList.js
...p/biz/topsun/sap/customerDelayPay/customerDelayPayList.js
+1
-0
CustomerDelayPayApplicationImpl.java
...Pay/application/impl/CustomerDelayPayApplicationImpl.java
+4
-0
CustomerDelayPay.java
.../topsun/sap/customerDelayPay/domain/CustomerDelayPay.java
+1
-1
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/customerDelayPay/customerDelayPayDetail.jsp
View file @
d5f13f5a
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<x:checkboxListC
name=
"xblock"
required=
"false"
label=
"仅显示扣单应收项次"
labelCol=
"2"
fieldCol=
"2"
dictionary=
"xblock"
/>
<x:checkboxListC
name=
"xblock"
required=
"false"
label=
"仅显示扣单应收项次"
labelCol=
"2"
fieldCol=
"2"
dictionary=
"xblock"
/>
</div>
</div>
<div
class=
"hg-form-row"
>
<div
class=
"hg-form-row"
>
<x:inputC
name=
"payDate"
required=
"
fals
e"
label=
"客户承诺付款时间"
labelCol=
"2"
fieldCol=
"2"
wrapper=
"date"
/>
<x:inputC
name=
"payDate"
required=
"
tru
e"
label=
"客户承诺付款时间"
labelCol=
"2"
fieldCol=
"2"
wrapper=
"date"
/>
<div
id=
"button"
>
<div
id=
"button"
>
<x:button
value=
"查 询"
icon=
"fa-search"
onclick=
"doQuery(this.form)"
/>
<x:button
value=
"查 询"
icon=
"fa-search"
onclick=
"doQuery(this.form)"
/>
<x:button
value=
"重 置"
icon=
"fa-history"
onclick=
"doClear()"
/>
<x:button
value=
"重 置"
icon=
"fa-history"
onclick=
"doClear()"
/>
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/customerDelayPay/customerDelayPayList.js
View file @
d5f13f5a
...
@@ -24,6 +24,7 @@ function loadGrid() {
...
@@ -24,6 +24,7 @@ function loadGrid() {
{
display
:
"收款方式"
,
name
:
"paymentMethodTextView"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"收款方式"
,
name
:
"paymentMethodTextView"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"客户承诺付款时间"
,
name
:
"payDate"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"客户承诺付款时间"
,
name
:
"payDate"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"状态"
,
name
:
"statusTextView"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"状态"
,
name
:
"statusTextView"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"消息文本"
,
name
:
"message"
,
width
:
200
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
],
],
dataAction
:
"server"
,
dataAction
:
"server"
,
url
:
web_app
.
name
+
'/customerDelayPay/slicedCustomerDelayPayList.ajax'
,
url
:
web_app
.
name
+
'/customerDelayPay/slicedCustomerDelayPayList.ajax'
,
...
...
topsun/src/main/java/com/huigou/topsun/sap/customerDelayPay/application/impl/CustomerDelayPayApplicationImpl.java
View file @
d5f13f5a
...
@@ -16,6 +16,7 @@ import com.huigou.topsun.sap.customerDelayPay.domain.CustomerDelayPayItem;
...
@@ -16,6 +16,7 @@ import com.huigou.topsun.sap.customerDelayPay.domain.CustomerDelayPayItem;
import
com.huigou.uasp.bmp.common.BizBillStatus
;
import
com.huigou.uasp.bmp.common.BizBillStatus
;
import
com.huigou.uasp.bpm.FlowBroker
;
import
com.huigou.uasp.bpm.FlowBroker
;
import
com.huigou.util.ClassHelper
;
import
com.huigou.util.ClassHelper
;
import
com.huigou.util.DateUtil
;
import
org.activiti.engine.delegate.DelegateExecution
;
import
org.activiti.engine.delegate.DelegateExecution
;
import
org.activiti.engine.delegate.DelegateTask
;
import
org.activiti.engine.delegate.DelegateTask
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -57,6 +58,7 @@ public class CustomerDelayPayApplicationImpl extends FlowBroker implements Custo
...
@@ -57,6 +58,7 @@ public class CustomerDelayPayApplicationImpl extends FlowBroker implements Custo
public
Map
<
String
,
Object
>
slicedCustomerDelayPayList
(
CustomerDelayPayQueryRequest
queryRequest
)
{
public
Map
<
String
,
Object
>
slicedCustomerDelayPayList
(
CustomerDelayPayQueryRequest
queryRequest
)
{
QueryDescriptor
queryDescriptor
=
this
.
sqlExecutorDao
.
getQuery
(
QUERY_XML_FILE_PATH
,
"customerDelayPay"
);
QueryDescriptor
queryDescriptor
=
this
.
sqlExecutorDao
.
getQuery
(
QUERY_XML_FILE_PATH
,
"customerDelayPay"
);
QueryModel
queryModel
=
this
.
sqlExecutorDao
.
getQueryModel
(
queryDescriptor
,
queryRequest
);
QueryModel
queryModel
=
this
.
sqlExecutorDao
.
getQueryModel
(
queryDescriptor
,
queryRequest
);
queryModel
.
putDictionary
(
"status"
,
BizBillStatus
.
getMap
());
Map
<
String
,
Object
>
map
=
this
.
sqlExecutorDao
.
executeSlicedQuery
(
queryModel
);
Map
<
String
,
Object
>
map
=
this
.
sqlExecutorDao
.
executeSlicedQuery
(
queryModel
);
return
map
;
return
map
;
}
}
...
@@ -162,6 +164,8 @@ public class CustomerDelayPayApplicationImpl extends FlowBroker implements Custo
...
@@ -162,6 +164,8 @@ public class CustomerDelayPayApplicationImpl extends FlowBroker implements Custo
param
.
put
(
"BUKRS"
,
customerDelayPay
.
getBukrs
());
param
.
put
(
"BUKRS"
,
customerDelayPay
.
getBukrs
());
param
.
put
(
"KUNNR"
,
customerDelayPay
.
getCustomer
());
param
.
put
(
"KUNNR"
,
customerDelayPay
.
getCustomer
());
param
.
put
(
"ZBPMNR"
,
customerDelayPay
.
getBillCode
());
param
.
put
(
"ZBPMNR"
,
customerDelayPay
.
getBillCode
());
String
payDate
=
DateUtil
.
getDateFormat
(
customerDelayPay
.
getPayDate
(),
"yyyyMMdd"
);
param
.
put
(
"DATUM"
,
payDate
);
List
<
Map
<
String
,
Object
>>
mapList
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
mapList
=
new
ArrayList
<>();
mapList
.
add
(
param
);
mapList
.
add
(
param
);
ObjectMapper
objectMapper
=
new
ObjectMapper
();
ObjectMapper
objectMapper
=
new
ObjectMapper
();
...
...
topsun/src/main/java/com/huigou/topsun/sap/customerDelayPay/domain/CustomerDelayPay.java
View file @
d5f13f5a
...
@@ -57,7 +57,7 @@ public class CustomerDelayPay extends FlowBillAbstractEntity {
...
@@ -57,7 +57,7 @@ public class CustomerDelayPay extends FlowBillAbstractEntity {
@Column
(
name
=
"TYPE"
)
@Column
(
name
=
"TYPE"
)
private
String
type
;
private
String
type
;
@Column
(
name
=
"MESS
GA
E"
)
@Column
(
name
=
"MESS
AG
E"
)
private
String
message
;
private
String
message
;
@Override
@Override
protected
String
getCodeRuleId
()
{
protected
String
getCodeRuleId
()
{
...
...
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