Merge pull request #33075 from fappels/21_fix_fk_bom_child

FIX: fk_bom_child missing in origin line list
This commit is contained in:
Laurent Destailleur
2025-02-13 17:34:17 +01:00
committed by GitHub

View File

@@ -455,6 +455,7 @@ if ($action == 'create') {
$moLine->qty = $objectbom->lines[$key]->qty;
$moLine->qty_frozen = $objectbom->lines[$key]->qty_frozen;
$moLine->disable_stock_change = $objectbom->lines[$key]->disable_stock_change;
$moLine->fk_bom_child = $objectbom->lines[$key]->fk_bom_child;
$arrayOfMoLines[] = $moLine;
}