-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEW : 4 Tags for shipment on ODT #1271
base: 2024_rc
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le code que tu as utilisé du modèle Espadon est fort mal écrit. Je te propose une modification. Peux-tu la tester ? Peux-tu tester également des cas où ces valeurs sont vides ? @warnerbryce
} elseif (!empty($totalWeight)) { | ||
$array_shipment[$array_key.'_total_weight'] = (empty($totalWeight)) ? '' : showDimensionInBestUnit($totalWeight, 0, "weight", $outputlangs, -1, 'no', 1); | ||
} else { | ||
$array_shipment[$array_key.'_total_weight'] = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il faut forcément mettre une valeur, sinon le ODT va afficher la variable de substitution
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Peux-tu m'envoyer un ODT sur lequel faire mes tests ? |
@thomas-Ngr Oui c'est bon avec ces modifs, si pas de Volume ou pas de Poids j'ai une case vierge. |
@warnerbryce peux-tu tester ton modèle ODT sur une version Develop ? A partir de la V19, la méthode get_substitutionarray_shipment_lines() disparaît. Je ne pense pas que cette fonctionnalité ait été ajoutée au passage, mais j'aimerais que tu vérifies avant d'y passer plus de temps. |
} elseif (!empty($totalWeight)) { | ||
$array_shipment[$array_key.'_total_weight'] = (empty($totalWeight)) ? '' : showDimensionInBestUnit($totalWeight, 0, "weight", $outputlangs, -1, 'no', 1); | ||
} else { | ||
$array_shipment[$array_key.'_total_weight'] = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A vérifier puis merger |
@warnerbryce du coup c'est pas bon ? Le poids devrait être à 0 et pas chaine vide ? |
@thomas-Ngr ah bah oui. Je résonnais de façon, s'il n'y a rien tu t'effaces, mais là, on attend quand même quelque chose. |
Non, ne propose pas, je vais adapter la PR. |
PR DLB : Dolibarr#32549
Bonjour Thomas,
Je mets cette PR en draft car il y a des changements certains à faire.
Je souhaites ajouter 4 balises sur les ODT d'expéditions.
Le poids total
Le volume total
La quantité totale commandée
La quantité totale expédiée.
Je reprends du code du fichier htdocs/core/modules/expedition/doc/pdf_espadon.modules.php pour initier/calculer les valeurs.
Est-ce OKAY de faire comme ça ?