ok for form to add entry for equipment not listed, next save entry and equipment in db

This commit is contained in:
JBthePenguin 2021-06-05 00:30:48 +02:00
parent 5b47a9d0ba
commit cd22b2a759
17 changed files with 178 additions and 25 deletions

16
src/lib/Equipment.php Normal file
View file

@ -0,0 +1,16 @@
<?php
namespace Garradin\Plugin\Materiels;
use Garradin\DB;
class Equipment
{
protected $columns_order = array(
'id',
'category_id',
'localisation_id',
'number_of_equipments',
'designation'
);
}