Added vatgroup_id to product

This commit is contained in:
Frank Schubert
2024-02-21 15:09:26 +01:00
parent d1cd15935d
commit 0c706f6a0c
4 changed files with 19 additions and 1 deletions

View File

@@ -154,6 +154,7 @@ class ProductController extends mfBaseController {
$data['price_nbe'] = ($r->price_nbe) ? Layout::commaToDot($r->price_nbe) : 0;
$data['price'] = ($r->price) ? Layout::commaToDot($r->price) : 0;
$data['price_setup'] = ($r->price_setup) ? Layout::commaToDot($r->price_setup) : 0;
$data['vatgroup_id'] = $r->vatgroup_id;
$data['billing_period'] = $r->billing_period;
$data['billing_delay'] = ($r->billing_delay) ? $r->billing_delay : 0;
$data['contract_term'] = $r->contract_term;