add csrf , product and account_state changes
csrf - previous settings were not working on dev1 product - allow sale , if count > stock prodcut - admin - allow search by name account_state - auto sum up money from notes add csrf , product and account_state changes csrf - previous settings were not working on dev1 product - allow sale , if count > stock prodcut - admin - allow search by name account_state - auto sum up money from notes
This commit is contained in:
@@ -19,11 +19,11 @@ function mkOptions($options){
|
||||
return $o;
|
||||
}
|
||||
|
||||
$statusOptions = mkOptions( Product::statuses() );
|
||||
$statusOptions = ['' => "Mind"] + ( Product::statuses() );
|
||||
|
||||
$productCategories = mkOptions( ArrayHelper::map( ProductCategory::read(null) ,'id_product_category','name') );
|
||||
$productCategories = ['' => "Mind"] + ArrayHelper::map( ProductCategory::read(null) ,'id_product_category','name') ;
|
||||
|
||||
$accounts = mkOptions( ArrayHelper::map( Account::read(null) ,'id_account','name'));
|
||||
$accounts = ['' => "Mind"] + ( ArrayHelper::map( Account::read(null) ,'id_account','name'));
|
||||
|
||||
?>
|
||||
<div class="product-search">
|
||||
@@ -44,12 +44,13 @@ $accounts = mkOptions( ArrayHelper::map( Account::read(null) ,'id_account','nam
|
||||
<?php echo $form->field($model, 'status')->dropDownList($statusOptions) ?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<?= $form->field($model, 'product_number') ?>
|
||||
<?= $form->field($model, 'name') ?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<?= $form->field($model, 'barcode') ?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<?= $form->field($model, 'product_number') ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user