|
|
@@ -29,7 +29,7 @@ public interface TradeAuctionOrderRepo extends JpaRepository<TradeAuctionOrder,
|
|
|
@Query("select sum(serviceCharge) from TradeAuctionOrder where paymentType = 'DEPOSIT' and status = 'FINISH'")
|
|
|
BigDecimal sumDepositAmount();
|
|
|
|
|
|
- @Query("select sum(purchasedPrice) from TradeAuctionOrder where paymentType = 'PURCHASE_PRICE' and status = 'FINISH'")
|
|
|
+ @Query("select sum(price) from TradeAuctionOrder where paymentType = 'PURCHASE_PRICE' and status = 'FINISH'")
|
|
|
BigDecimal sumPurchasedAmount();
|
|
|
|
|
|
@Query("select sum(price) from TradeAuctionOrder where paymentType = 'FIXED_PRICE' and status = 'FINISH'")
|