Commit c9bdf6e3 authored by Jérome Perrin's avatar Jérome Perrin

fix Delivery_getODTDataDict it was using telephone instead of fax for

destination section


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24348 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7c864d75
......@@ -352,7 +352,7 @@ data_dict = {\n
context.getDestinationSection() and context.getDestinationSectionValue().getDefaultAddressRegionTitle() or \'\'),\n
\'destination_section_telfax\': getPhoneAndFax(\n
context.getDestinationSection() and context.getDestinationSectionValue().getTelephoneText() or \'\',\n
context.getDestinationSection() and context.getDestinationSectionValue().getTelephoneText() or \'\'),\n
context.getDestinationSection() and context.getDestinationSectionValue().getFaxText() or \'\'),\n
\'destination_section_email\': getEmail(context.getDestinationSection() and context.getDestinationSectionValue().getEmailText() or \'\'),\n
\'destination_section_vatid\': getVatId(context.getDestinationSection() and\n
context.getDestinationSectionValue().getProperty(\'vat_code\') or \'\'),\n
......
454
\ No newline at end of file
455
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment