Commit 6adc2712 by 陶光胜

Merge branch 'developer' into 'master'

Developer

See merge request !18
parents 448ad17e e6187b96
......@@ -209,7 +209,7 @@ public class WmStoreApiServiceImpl implements WmStoreApiService {
return result.getResult().toString();
}
}
return null;
return "微盟商铺未配置会员卡";
}
private ServiceResponse<TabWmStoreConfig> getWmConfig(Integer wmMallStoreId, WmStoreConfigTypeEnum typeEnum) {
......
......@@ -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);
......
......@@ -153,6 +153,10 @@ public class InvoiceListVO implements Serializable {
this.invoiceType = invoiceType;
}
public Integer getInvoiceType() {
return invoiceType;
}
public String getInvoiceTypeStr() {
return InvoiceTypeEnum.getMessageByCode(invoiceType);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment