コード例 #1
0
ファイル: invoice.php プロジェクト: Gedankengut/gsFrontend
 public function indexAction()
 {
     // rechnungen des kunden auslesen
     $objDataInvoice = new GSALES_DATA_INVOICE();
     $arrayOfObjInvoice = $objDataInvoice->getInvoicesByCustomerId($this->objUserAuth->getCustomerId());
     $this->objSmarty->assignByRef('invoices', $arrayOfObjInvoice);
     $this->objSmarty->assign('payment_paypal', PAYPAL_ENABLE);
     $this->objSmarty->assign('payment_sofort', SOFORTU_ENABLE);
 }