|
@@ -174,7 +174,7 @@ public class OrderClubServiceImpl implements OrderClubService {
|
|
|
order.setExpensesOfTaxation(expensesOfTaxation.get());
|
|
|
// 发票信息
|
|
|
InvoiceVo invoice = null;
|
|
|
- if (null != order.getInvoiceFlag() || order.getInvoiceFlag() > 0) {
|
|
|
+ if (null != order.getInvoiceFlag() && order.getInvoiceFlag() > 0) {
|
|
|
invoice = orderCommonMapper.getOrderInvoice(orderId);
|
|
|
}
|
|
|
// 可用余额
|