Hybris How to distinguish if a voucher applies on order entry or on the order itself

785 Views Asked by At

How to show vouchers against products (order entry) in order details page.

In OrderData I see appliedVouchers but unable to distinguish voucher applied to which order entry.

final OrderData orderData = orderFacade.getOrderDetailsForCode(orderCode);
final List<VoucherData> voucherList = orderData.getAppliedVouchers();
1

There are 1 best solutions below

0
On BEST ANSWER

flexible query to check which voucher is used in which order

select {vi.code}, {o.code} from 
{ VoucherInvalidation as vi
  join Order as o 
   on {o.pk} = {vi.order}
}

Basically voucher usage is stored in VoucherInvalidation