extranet/application/models/CommandesStatut.php

23 lines
458 B
PHP

<?php
class Application_Model_CommandesStatut extends Zend_Db_Table_Abstract
{
protected $_name = 'commandes_statut';
public function getStatut()
{
$sql = $this->select()->order('ordre ASC');
$result = $this->fetchAll($sql);
return $result;
}
public function getStatutByTypeCommande($type)
{
$sql = $this->select()
->where('typeCommande = ?', $type)
->order('ordre ASC');
$result = $this->fetchAll($sql);
return $result;
}
}