Commit 18de0ddf by 徐康

是否需要发票

parent a535ef78
......@@ -214,7 +214,7 @@ public class CreateOrderVo {
/**
* 是否需要开发票,1 需要 0不需要
*/
private Integer isInvoice;
private Integer needInvoice;
/**
* 发票抬头
......
......@@ -742,7 +742,7 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
orderExtInfoDto.setSessionKey(createOrderVo.getSessionKey());
orderExtInfoDto.setFormId(createOrderVo.getFormId());
orderExtInfoDto.setFromAppId(userLoginInfoDto.getWxAppId());
orderExtInfoDto.setIsInvoice(createOrderVo.getIsInvoice());
orderExtInfoDto.setNeedInvoice(createOrderVo.getNeedInvoice());
orderExtInfoDto.setInvoiceTitle(createOrderVo.getInvoiceTitle());
orderExtInfoDto.setNeedTableware(createOrderVo.getNeedTableware());
orderExtInfoDto.setThirdPartyMemberId(userLoginInfoDto.getThirdPartyMemberID());
......
......@@ -162,7 +162,7 @@ public class OrderExtInfoDto {
/**
* 是否需要开发票,1 需要 0不需要
*/
private Integer isInvoice;
private Integer needInvoice;
/**
* 发票抬头
......
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