[TELE-694] fix postage fees is sended by mail

This commit is contained in:
Daniel Muyshond 2020-10-05 16:23:55 +02:00
parent ea7e0e3faa
commit 6d59e18def
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,10 @@ class ExtraFees(BaseResource):
# basket item not associated with any document, no fee
pass
nb_letter = int(nb_documents / int(self.max_doc_in_letter)) + (((nb_documents % int(self.max_doc_in_letter)) > 0) and 1 or 0)
# Check is the item in send by mail and if so there is no postage_fee
destination = basket_item["request_data"]["form_var_destinations_raw"]
if destination and "mail" in destination:
postage_fee = 0
postage_fee = nb_letter * postage_fee
return {'data': [{'subject': force_text(_('Postage')), 'amount': str(postage_fee)}]}