Compare commits

...

7 Commits

Author SHA1 Message Date
Laurent Destailleur
b4c374fd48 Fix CI 2025-12-04 21:45:34 +01:00
Laurent Destailleur
c9d1f3baa3 Merge pull request #36527 from FHenry/22_fix_subtotal_attribute_copy
fix: when create invoices from orders list, title and subtotal attribute is now copied
2025-12-04 21:26:01 +01:00
HENRY Florian
a3dfae7792 Merge branch '22.0' into 22_fix_subtotal_attribute_copy 2025-12-04 20:30:17 +01:00
Florian HENRY
7e264b0097 Merge branch '22.0' of https://github.com/Dolibarr/dolibarr into 22_fix_subtotal_attribute_copy 2025-12-04 19:58:49 +01:00
Florian HENRY
12936afb13 review 2025-12-04 19:58:42 +01:00
Florian HENRY
7f3ac106fc fix: when create bills from orders list, title and subtotal attribute is now copied 2025-12-04 11:00:58 +01:00
Florian HENRY
c39cba8395 fix: when create bills from orders list, title and subtotal attribute is now copied 2025-12-04 10:57:24 +01:00
2 changed files with 9 additions and 0 deletions

View File

@@ -6,6 +6,8 @@ on:
jobs:
trigger-docker:
runs-on: ubuntu-latest
steps:
- name: Generate a token
id: generate-token

View File

@@ -606,6 +606,13 @@ if (empty($reshook)) {
$lines[$i]->fk_unit
);
if ($result > 0) {
if (!empty($lines[$i]->extraparams)) {
$factureLine = new FactureLigne($db);
$factureLine->id = $result;
$factureLine->extraparams = $lines[$i]->extraparams;
$factureLine->setExtraParameters();
}
$lineid = $result;
} else {
$lineid = 0;