Update propal.class.php

Fix IDs on created proposal lines when cloning so the hook createFrom has all the clone infos
This commit is contained in:
avolani
2023-05-16 16:53:58 +02:00
committed by GitHub
parent 9acf635551
commit 79cacf58c2

View File

@@ -1264,6 +1264,10 @@ class Propal extends CommonObject
dol_print_error($this->db);
break;
}
// Set the id on created row
$line->id = $result;
// Defined the new fk_parent_line
if ($result > 0 && $line->product_type == 9) {
$fk_parent_line = $result;
@@ -1397,6 +1401,9 @@ class Propal extends CommonObject
}
foreach ($object->lines as $line) {
$line->id = 0;
if ($line->fk_product > 0) {
$prod = new Product($this->db);
$res = $prod->fetch($line->fk_product);