Marked required fields in Product/Form

This commit is contained in:
Frank Schubert
2021-08-09 13:40:18 +02:00
parent 0344073509
commit c879799279
2 changed files with 9 additions and 9 deletions

View File

@@ -81,7 +81,7 @@ class ProductController extends mfBaseController {
$data['price'] = ($r->price) ? Layout::commaToDot($r->price) : 0;
$data['price_setup'] = ($r->price_setup) ? Layout::commaToDot($r->price_setup) : 0;
$data['billing_period'] = $r->billing_period;
$data['billing_delay'] = $r->billing_delay;
$data['billing_delay'] = ($r->billing_delay) ? $r->billing_delay : 0;
$data['ivt_id'] = ($r->ivt_id) ? $r->ivt_id : null;
$data['note'] = $r->note;