begin to calculate stock, next calculate outputed

This commit is contained in:
JBthePenguin 2021-06-07 18:30:20 +02:00
parent c4f8b4fb87
commit 71775c0f67
9 changed files with 96 additions and 68 deletions

20
src/lib/Output.php Normal file
View file

@ -0,0 +1,20 @@
<?php
namespace Garradin\Plugin\Materiels;
use Garradin\DB;
class Output
{
public function listKinds()
{
return array(
'Vente',
'Don',
'Besoin',
'Autre (perte, vol, ...)',
'Location / Prêt',
'Retour de location / prêt',
);
}
}