Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
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
shenshaokai
jinfa-platform
Commits
33223642
Commit
33223642
authored
May 07, 2022
by
何洋
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v2-220518' of…
Merge branch 'v2-220518' of
ssh://gitlab.shushangyun.com:8122/linkseeks-design/pro-platform
into v2-220518-order
parents
bfe4250a
ee33bfdd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
5 deletions
+69
-5
index.tsx
src/pages/balance/invoice/srm/inquire/index.tsx
+20
-1
index.tsx
src/pages/balance/invoice/srm/joint/index.tsx
+23
-2
index.tsx
src/pages/balance/invoice/srm/manage/index.tsx
+21
-1
index.tsx
src/pages/balance/invoice/srm/readyInvoice/index.tsx
+4
-0
index.tsx
src/pages/shop/shopInfo/index.tsx
+1
-1
No files found.
src/pages/balance/invoice/srm/inquire/index.tsx
View file @
33223642
...
...
@@ -64,6 +64,12 @@ const InvoiceInquire: React.FC = () => {
});
};
const
_handleOrderNo
=
record
=>
{
window
.
open
(
`/memberCenter/balance/businessReconciliation/search/preview?id=
${
record
.
reconciliationId
}
&no=
${
record
.
reconciliationNo
}
`
,
);
};
const
columns
=
[
{
title
:
intl
.
formatMessage
({
...
...
@@ -74,7 +80,7 @@ const InvoiceInquire: React.FC = () => {
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoice/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
_handleOrderNo
(
record
)
}
}
>
{
text
}
...
...
@@ -111,6 +117,16 @@ const InvoiceInquire: React.FC = () => {
id
:
'balance.accountsReceivable.invoice.columns.code'
,
}),
dataIndex
:
'code'
,
render
:
(
text
,
record
)
=>
(
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoice/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
}
}
>
{
text
}
</
Button
>
),
},
{
title
:
intl
.
formatMessage
({
...
...
@@ -188,6 +204,9 @@ const InvoiceInquire: React.FC = () => {
<
StandardTable
tableProps=
{
{
rowKey
:
'id'
,
scroll
:
{
x
:
1200
}
}
}
columns=
{
columns
as
any
}
currentRef=
{
ref
}
...
...
src/pages/balance/invoice/srm/joint/index.tsx
View file @
33223642
...
...
@@ -146,6 +146,12 @@ const InvoiceJoint: React.FC = () => {
)
}
const
_handleOrderNo
=
record
=>
{
window
.
open
(
`/memberCenter/balance/businessReconciliation/search/preview?id=
${
record
.
reconciliationId
}
&no=
${
record
.
reconciliationNo
}
`
,
);
};
const
columns
=
[
{
title
:
intl
.
formatMessage
({
...
...
@@ -156,8 +162,7 @@ const InvoiceJoint: React.FC = () => {
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoiceJoint/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
_handleOrderNo
(
record
)
}
}
>
{
text
}
...
...
@@ -188,6 +193,17 @@ const InvoiceJoint: React.FC = () => {
id
:
'balance.accountsReceivable.invoice.columns.code'
,
}),
dataIndex
:
'code'
,
render
:
(
text
,
record
)
=>
(
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoiceJoint/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
}
}
>
{
text
}
</
Button
>
),
},
{
title
:
intl
.
formatMessage
({
...
...
@@ -261,6 +277,8 @@ const InvoiceJoint: React.FC = () => {
title
:
intl
.
formatMessage
({
id
:
'balance.accountsReceivable.invoice.columns.operation'
,
}),
fixed
:
'right'
,
width
:
120
,
render
:
(
_
,
record
)
=>
renderOptionButton
(
record
)
},
];
...
...
@@ -271,6 +289,9 @@ const InvoiceJoint: React.FC = () => {
<
StandardTable
tableProps=
{
{
rowKey
:
'id'
,
scroll
:
{
x
:
1200
}
}
}
columns=
{
columns
as
any
}
currentRef=
{
ref
}
...
...
src/pages/balance/invoice/srm/manage/index.tsx
View file @
33223642
...
...
@@ -128,6 +128,12 @@ const InvoiceManage: React.FC = () => {
)
}
const
_handleOrderNo
=
record
=>
{
window
.
open
(
`/memberCenter/balance/businessReconciliation/search/preview?id=
${
record
.
reconciliationId
}
&no=
${
record
.
reconciliationNo
}
`
,
);
};
const
columns
=
[
{
title
:
intl
.
formatMessage
({
...
...
@@ -138,7 +144,7 @@ const InvoiceManage: React.FC = () => {
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoice/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
_handleOrderNo
(
record
)
}
}
>
{
text
}
...
...
@@ -175,6 +181,16 @@ const InvoiceManage: React.FC = () => {
id
:
'balance.accountsReceivable.invoice.columns.code'
,
}),
dataIndex
:
'code'
,
render
:
(
text
,
record
)
=>
(
<
Button
type=
"link"
onClick=
{
()
=>
{
history
.
push
(
`/memberCenter/balance/invoice/detail?reconciliationId=${record.reconciliationId}&id=${record.id}`
)
}
}
>
{
text
}
</
Button
>
),
},
{
title
:
intl
.
formatMessage
({
...
...
@@ -248,6 +264,7 @@ const InvoiceManage: React.FC = () => {
title
:
intl
.
formatMessage
({
id
:
'balance.accountsReceivable.invoice.columns.operation'
,
}),
fixed
:
'right'
,
width
:
120
,
render
:
(
_
,
record
)
=>
renderOptionButton
(
record
)
},
...
...
@@ -276,6 +293,9 @@ const InvoiceManage: React.FC = () => {
<
StandardTable
tableProps=
{
{
rowKey
:
'id'
,
scroll
:
{
x
:
1200
}
}
}
loading=
{
pageLoading
}
columns=
{
columns
as
any
}
...
...
src/pages/balance/invoice/srm/readyInvoice/index.tsx
View file @
33223642
...
...
@@ -164,6 +164,7 @@ const SettlementList: React.FC = () => {
title
:
intl
.
formatMessage
({
id
:
'balance.accountsReceivable.invoice.columns.operation'
,
}),
fixed
:
'right'
,
render
:
(
text
,
record
)
=>
{
return
(
<
Link
...
...
@@ -192,6 +193,9 @@ const SettlementList: React.FC = () => {
<
StandardTable
tableProps=
{
{
rowKey
:
'reconciliationId'
,
scroll
:
{
x
:
1200
}
}
}
columns=
{
columns
as
any
}
currentRef=
{
ref
}
...
...
src/pages/shop/shopInfo/index.tsx
View file @
33223642
...
...
@@ -307,7 +307,7 @@ const ShopInfo: React.FC<ShopInfoPropsType> = (props) => {
return
(
<
PageHeaderWrapper
>
<
Prompt
when=
{
formIsHalfFilledOut
}
message=
{
intl
.
formatMessage
({
id
:
'tip.save.confirm'
})
}
/>
<
Prompt
when=
{
formIsHalfFilledOut
}
message=
{
intl
.
formatMessage
({
id
:
'
common.
tip.save.confirm'
})
}
/>
<
div
className=
{
styles
.
shop_info
}
>
<
Form
form=
{
form
}
...
...
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