Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
foreign
/
customer-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5d4e0293
authored
Dec 06, 2021
by
杨铁龙
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
发送供应银行卡信息
parent
60c79359
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
model/order.ts
service/order.ts
model/order.ts
View file @
5d4e0293
...
...
@@ -131,6 +131,7 @@ export interface OrderPayItem {
bankAccountName
?:
string
;
OpenningBankName
?:
string
;
bankAccountNo
?:
string
;
providerHandleId
?:
number
;
}
export
const
orderPayItemPredict
=
{
...
...
@@ -149,6 +150,7 @@ export const orderPayItemPredict = {
bankAccountName
:
"ProviderHandleId#ServiceProviderBank.AccountName"
,
OpenningBankName
:
"ProviderHandleId#ServiceProviderBank.OpenningBankName"
,
bankAccountNo
:
"ProviderHandleId#ServiceProviderBank.AccountNo"
,
providerHandleId
:
"ProviderHandleId#ServiceProviderBank.ID"
,
}
export
const
enum
ChatOpenDirection
{
...
...
service/order.ts
View file @
5d4e0293
...
...
@@ -164,7 +164,7 @@ class OrderService {
v
:
number
,
data
:
{
Title
:
string
;
Remark
:
string
}
)
{
return
Chat
.
getSdk
()
return
this
.
getSdk
()
.
model
(
this
.
generalOrder
)
.
action
(
"editTitle"
)
.
updateInitialParams
({
selected_list
:
[{
v
,
id
:
+
id
}]
})
...
...
@@ -178,6 +178,11 @@ class OrderService {
.
detail
(
id
as
string
)
.
query
();
}
public
sendPayAccountInfo
(
params
:
{
send
:
string
;
accountId
:
number
})
{
return
this
.
getSdk
().
domainService
(
"hro_spview"
,
"OrderSetting"
,
"sendPayAccountInfo"
)
.
request
(
"get"
,
{
params
})
}
}
export
const
orderService
=
new
OrderService
();
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