Exemplo n.º 1
0
 public static function loadCreditorList()
 {
     // -- Return a full list of creditors
     // ----------------------------------
     $results = array();
     $results = \Creditor_model::loadCreditorList();
     return $results;
 }
Exemplo n.º 2
0
 function get_creditorlist()
 {
     $creditorList = array();
     $creditorList = Creditor_model::loadCreditorList();
     $this->response(json_encode($creditorList));
 }