Skip to content

Commit

Permalink
FIX:fixing total price
Browse files Browse the repository at this point in the history
  • Loading branch information
rivopelu committed Nov 30, 2024
1 parent 64eb2ce commit 22101e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface OrderProductRepository extends JpaRepository<OrderProduct, Stri

@Query(value = "select p.id, p.name," +
" o.id, op.qty, op.pricePerQty," +
" t.subTotal, t.totalTransaction, " +
" op.totalPrice, t.totalTransaction, " +
"t.taxPercentage, op.createdDate" +
" from OrderProduct as op " +
"join Product as p on op.product.id = p.id " +
Expand Down

0 comments on commit 22101e8

Please sign in to comment.