Dev#13615 3555 consultation de l historique des prets depuis le compte lecteur bokeh cctp agglo2b cctp concarneau
Merged
requested to merge dev#13615_3555_consultation_de_l_historique_des_prets_depuis_le_compte_lecteur_bokeh_cctp_agglo2b_cctp_concarneau into WIP
3 unresolved threads
Merge request reports
Activity
Filter activity
added 1 commit
- 29dfc640 - dev #13615 on search result from history loans, go back to history loans
added 1 commit
- 4a6ddb54 - dev #13615 fix search result back links + refactoring
- FEATURES/13615 0 → 100644
448 448 } 449 449 450 450 451 public function getLoansHistory() { 452 return $this->_service 453 ? $this->_service->loansHistory($this) 454 : []; 451 public function getLoansHistory($page = 1) { 452 $history = $this->_service 453 ? $this->_service->loansHistory($this, $page) 454 : new Class_WebService_SIGB_LoansHistory(); 455 456 return $history->setLoaner($this); 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 23 class Class_WebService_SIGB_LoansHistory { 24 protected 25 $_total_count = 0, 26 $_loaner, 27 $_loans; 28 29 public function __construct() { 30 $this->_loans = new Storm_Collection(); 31 } 32 33 34 public function setLoaner($loaner) { mentioned in commit 8a32a906