Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
Overview
Overview
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
base_platform_enterprise
gic-platform-enterprise
Commits
6adc2712
Commit
6adc2712
authored
Jul 02, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' into 'master'
Developer See merge request
!18
parents
448ad17e
e6187b96
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletions
+6
-1
WmStoreApiServiceImpl.java
.../enterprise/service/outer/impl/WmStoreApiServiceImpl.java
+1
-1
BillingPayInfoController.java
...c/enterprise/web/controller/BillingPayInfoController.java
+1
-0
InvoiceListVO.java
...java/com/gic/enterprise/web/vo/billing/InvoiceListVO.java
+4
-0
No files found.
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/outer/impl/WmStoreApiServiceImpl.java
View file @
6adc2712
...
...
@@ -209,7 +209,7 @@ public class WmStoreApiServiceImpl implements WmStoreApiService {
return
result
.
getResult
().
toString
();
}
}
return
null
;
return
"微盟商铺未配置会员卡"
;
}
private
ServiceResponse
<
TabWmStoreConfig
>
getWmConfig
(
Integer
wmMallStoreId
,
WmStoreConfigTypeEnum
typeEnum
)
{
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/controller/BillingPayInfoController.java
View file @
6adc2712
...
...
@@ -204,6 +204,7 @@ public class BillingPayInfoController {
params
.
setShippingName
(
invoiceDTO
.
getShippingName
());
params
.
setShippingAddress
(
invoiceDTO
.
getShippingAddress
());
params
.
setShippingPhone
(
invoiceDTO
.
getShippingPhone
());
params
.
setBusinessLicense
(
invoiceDTO
.
getBusinessLicense
());
ServiceResponse
invoice
=
invoiceManageApiService
.
applyInvoice
(
params
);
if
(
invoice
.
isSuccess
())
{
ServiceResponse
updateInvoiceStatus
=
billingPayInfoApiService
.
updateInvoiceStatus
(
serialNumbers
);
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/billing/InvoiceListVO.java
View file @
6adc2712
...
...
@@ -153,6 +153,10 @@ public class InvoiceListVO implements Serializable {
this
.
invoiceType
=
invoiceType
;
}
public
Integer
getInvoiceType
()
{
return
invoiceType
;
}
public
String
getInvoiceTypeStr
()
{
return
InvoiceTypeEnum
.
getMessageByCode
(
invoiceType
);
}
...
...
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