Skip to content
Snippets Groups Projects
Commit fa733c8b authored by Marcos García de La Fuente's avatar Marcos García de La Fuente
Browse files

Fix: [ bug #1405 ] Rouget PDF expedition incorrect when two expeditions under the same commande

parent 9ae9f062
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,7 @@ Fix: [ bug #1381 ] PHP Warning when listing stock transactions page. ...@@ -26,6 +26,7 @@ Fix: [ bug #1381 ] PHP Warning when listing stock transactions page.
Fix: [ bug #1367 ] "Show invoice" link after a POS sell throws an error. Fix: [ bug #1367 ] "Show invoice" link after a POS sell throws an error.
Fix: TCPDF error file not found in member card generation. Fix: TCPDF error file not found in member card generation.
Fix: [ bug #1380 ] Customer invoices are not grouped in company results report. Fix: [ bug #1380 ] Customer invoices are not grouped in company results report.
Fix: [ bug #1405 ] Rouget PDF expedition incorrect when two expeditions under the same commande
***** ChangeLog for 3.5.2 compared to 3.5.1 ***** ***** ChangeLog for 3.5.2 compared to 3.5.1 *****
Fix: Can't add user for a task. Fix: Can't add user for a task.
......
...@@ -179,7 +179,7 @@ class pdf_rouget extends ModelePdfExpedition ...@@ -179,7 +179,7 @@ class pdf_rouget extends ModelePdfExpedition
$tab_height = 130; $tab_height = 130;
$tab_height_newpage = 150; $tab_height_newpage = 150;
if (! empty($object->note_public) || ! empty($object->tracking_number)) if (! empty($object->note_public) || (! empty($object->tracking_number) && ! empty($object->shipping_method_id)))
{ {
$tab_top = 88; $tab_top = 88;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment