@@ -21,6 +21,7 @@ public class PayingService {
@Autowired
private LedgerService ledgerService;
+ @Transactional
public APIResult<Boolean> pay(String merchantId, BigDecimal quantity, LedgerTypeEnum type, String receiptId, String note) {
return this.change(merchantId, quantity.negate(), type, receiptId, note);
}