public function __construct($name = '', $tablePrefix = '', $connection = '')
 {
     parent::__construct($name, $tablePrefix, $connection);
     $this->viewFields = array($tablePrefix . 'Goods' => array('barcode', 'product', 'letter', '_type' => 'LEFT'), $tablePrefix . 'Sales' => array('amount', 'SUM(num)' => 'num', 'saledate', '_on' => $tablePrefix . "Goods.barcode = " . $tablePrefix . "Sales.barcode"));
 }
 public function __construct($name = '', $tablePrefix = '', $connection = '')
 {
     parent::__construct($name, $tablePrefix, $connection);
     $this->viewFields = array('db_erp.user' => array('name', 'realName', '_as' => 'us', '_type' => 'left'), $tablePrefix . 'Sales' => array('salesman', 'amount', '_on' => 'us.realName=' . $tablePrefix . 'Sales.salesman'));
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct("Comment");
 }