Subversion-Projekte lars-tiefland.ci

Revision

Revision 1461 | Revision 1463 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 1461 Revision 1462
Zeile 3... Zeile 3...
3
/**
3
/**
4
 *
4
 *
5
 * @package WebanOS CI
5
 * @package WebanOS CI
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
7
 * @copyright 2016
7
 * @copyright 2016
8
 * @version $Rev: 1461 $
8
 * @version $Rev: 1462 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
class Order_model extends CI_Model
11
class Order_model extends CI_Model
12
{
12
{
Zeile 872... Zeile 872...
872
				header("Location: /backend/order/edit/".$Bestellung);
872
				header("Location: /backend/order/edit/".$Bestellung);
873
			}
873
			}
874
			elseif (isset($update["list"]))
874
			elseif (isset($update["list"]))
875
			{
875
			{
876
				//header("Location: /backend/order/index/".$Bestellung);
876
				//header("Location: /backend/order/index/".$Bestellung);
877
				$this->get_list();
877
				$ret = $this->get_list();
-
 
878
				$orders = $ret["orders"];
-
 
879
				$anz = $ret["anz"];
-
 
880
				$this->smarty->assign('anz', $anz);
-
 
881
				$this->smarty->assign('orders', $orders);
-
 
882
				$this->smarty->view('orders.tpl');
878
			}
883
			}
879
			else
884
			else
880
			{
885
			{
881
				$this->get_list();
886
				$this->get_list();
882
			}
887
			}