Initial commit

This commit is contained in:
mareksebera 2014-09-10 20:20:58 +02:00
commit 3b93da31de
1004 changed files with 265840 additions and 0 deletions

View 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';
}