mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-06-10 22:24:12 +02:00
Initial commit
This commit is contained in:
commit
3b93da31de
1004 changed files with 265840 additions and 0 deletions
12
app/Model/StockHistory.php
Normal file
12
app/Model/StockHistory.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
App::uses('AppModel', 'Model');
|
||||
|
||||
class StockHistory extends AppModel
|
||||
{
|
||||
|
||||
public $name = 'StockHistory';
|
||||
public $displayField = 'name';
|
||||
public $belongsTo = array('Item');
|
||||
public $order = 'StockHistory.created DESC';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue