Last active
March 21, 2019 09:54
-
-
Save harshvb7/76606a9497373cadbd3aec9584f75e03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for offer in basket.offer_set.published().exclude(ticket_price__state=13): | |
_voucher_ids = list(offer.ticket_price.ticket_vouchers_multiple.all().values_list('id', flat=True)) | |
if (offer.ticket_price.ticket_voucher and offer.ticket_price.ticket_voucher != ticket_price) or (_voucher_ids and ticket_price.id not in _voucher_ids): | |
.... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment