Subversion-Projekte lars-tiefland.ci

Revision

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

Revision 1462 Revision 1463
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: 1462 $
8
 * @version $Rev: 1463 $
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 871... Zeile 871...
871
			{
871
			{
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/?anker".$Bestellung);
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');
-
 
883
			}
877
			}
884
			else
878
			else
885
			{
879
			{
886
				$this->get_list();
880
				$this->get_list();
887
			}
881
			}