Example #1
0
 public function getTemplates($clientid)
 {
     $templateDb = new Application_Model_DbTable_Template();
     $templateObject = $templateDb->fetchAll($templateDb->select()->where('clientid = ?', $clientid));
     $templates = array();
     foreach ($templateObject as $template) {
         $templates[$template->id] = $template->description;
     }
     return $templates;
 }
Example #2
0
 public function downloadAction()
 {
     $this->_helper->getHelper('layout')->disableLayout();
     $this->_helper->viewRenderer->setRender('pdf');
     $id = $this->_getParam('id', 0);
     $locale = Zend_Registry::get('Zend_Locale');
     $quoteDb = new Sales_Model_DbTable_Quote();
     $quote = $quoteDb->getQuote($id);
     if ($quote['templateid']) {
         $templateDb = new Application_Model_DbTable_Template();
         $template = $templateDb->getTemplate($quote['templateid']);
         if ($template['filename']) {
             $this->_helper->viewRenderer->setRender($template['filename']);
         }
         $this->view->template = $template;
     }
     $positions = $this->getPositions($id);
     if (count($positions)) {
         foreach ($positions as $position) {
             $precision = floor($position->quantity) == $position->quantity ? 0 : 2;
             $position->total = $this->_currency->toCurrency($position->price * $position->quantity);
             $position->price = $this->_currency->toCurrency($position->price);
             $position->quantity = Zend_Locale_Format::toNumber($position->quantity, array('precision' => $precision, 'locale' => Zend_Registry::get('Zend_Locale')));
         }
         $quote['taxes'] = $this->_currency->toCurrency($quote['taxes']);
         $quote['subtotal'] = $this->_currency->toCurrency($quote['subtotal']);
         $quote['total'] = $this->_currency->toCurrency($quote['total']);
         if ($quote['taxfree']) {
             $quote['taxrate'] = Zend_Locale_Format::toNumber(0, array('precision' => 2, 'locale' => $locale));
         } else {
             $quote['taxrate'] = Zend_Locale_Format::toNumber($positions[0]->taxrate, array('precision' => 2, 'locale' => $locale));
         }
     }
     $this->view->quote = $quote;
     $this->view->positions = $positions;
     $this->view->footers = $this->_helper->Footer->getFooters($quote['templateid'], $this->_user['clientid']);
 }
Example #3
0
 public function getOptions($form, $clientid)
 {
     $options = array();
     //Get categories
     $categoriesDb = new Application_Model_DbTable_Category();
     $categoriesObject = $categoriesDb->fetchAll($categoriesDb->select()->where('type = ?', 'contact')->where('clientid = ?', $clientid)->order('ordering'));
     $categories = array();
     foreach ($categoriesObject as $category) {
         if (!$category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     foreach ($categoriesObject as $category) {
         if ($category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     $options['categories'] = $categories;
     //Get countries
     $countryDb = new Application_Model_DbTable_Country();
     $countriesObject = $countryDb->fetchAll($countryDb->select()->where('clientid = ?', $clientid));
     $countries = array();
     foreach ($countriesObject as $country) {
         $countries[$country->code] = $country->name;
     }
     asort($countries);
     $options['countries'] = $countries;
     //Get states
     $options['states'] = array('100' => 'STATES_CREATED', '101' => 'STATES_IN_PROCESS', '102' => 'STATES_PLEASE_CHECK', '103' => 'STATES_PLEASE_DELETE', '104' => 'STATES_RELEASED', '105' => 'STATES_COMPLETED', '106' => 'STATES_CANCELLED');
     //Get date ranges
     $options['daterange'] = array('0' => 'TOOLBAR_ALL', 'today' => 'TOOLBAR_TODAY', 'yesterday' => 'TOOLBAR_YESTERDAY', 'last7days' => 'TOOLBAR_LAST_7_DAYS', 'last14days' => 'TOOLBAR_LAST_14_DAYS', 'last30days' => 'TOOLBAR_LAST_30_DAYS', 'thisMonth' => 'TOOLBAR_THIS_MONTH', 'lastMonth' => 'TOOLBAR_LAST_MONTH', 'thisYear' => 'TOOLBAR_THIS_YEAR', 'lastYear' => 'TOOLBAR_LAST_YEAR', 'custom' => 'TOOLBAR_CUSTOM');
     //Get payment methods
     $paymentmethodDb = new Application_Model_DbTable_Paymentmethod();
     $paymentmethodObject = $paymentmethodDb->fetchAll($paymentmethodDb->select()->where('clientid = ?', $clientid));
     $paymentmethods = array();
     foreach ($paymentmethodObject as $paymentmethod) {
         $paymentmethods[$paymentmethod->title] = $paymentmethod->title;
     }
     $options['paymentmethods'] = $paymentmethods;
     //Get shipping methods
     $shippingmethodDb = new Application_Model_DbTable_Shippingmethod();
     $shippingmethodObject = $shippingmethodDb->fetchAll($shippingmethodDb->select()->where('clientid = ?', $clientid));
     $shippingmethods = array();
     foreach ($shippingmethodObject as $shippingmethod) {
         $shippingmethods[$shippingmethod->title] = $shippingmethod->title;
     }
     $options['shippingmethods'] = $shippingmethods;
     //Get templates
     $templateDb = new Application_Model_DbTable_Template();
     $templateObject = $templateDb->fetchAll($templateDb->select()->where('clientid = ?', $clientid));
     $templates = array();
     foreach ($templateObject as $template) {
         $templates[$template->id] = $template->description;
     }
     $options['templates'] = $templates;
     //Get languages
     $languages = array('de_DE' => 'LANGUAGES_DE_DE', 'en_US' => 'LANGUAGES_EN_US');
     $options['languages'] = $languages;
     //Set form options
     if (isset($form->catid)) {
         $form->catid->addMultiOptions($this->getMenuStructure($categories));
     }
     if (isset($form->country)) {
         $form->country->addMultiOptions($countries);
     }
     if (isset($form->paymentmethod)) {
         $form->paymentmethod->addMultiOptions($paymentmethods);
     }
     if (isset($form->shippingmethod)) {
         $form->shippingmethod->addMultiOptions($shippingmethods);
     }
     if (isset($form->templateid)) {
         $form->templateid->addMultiOptions($templates);
     }
     if (isset($form->language)) {
         $form->language->addMultiOptions($languages);
     }
     return $options;
 }
Example #4
0
 public function pdfAction()
 {
     $this->_helper->getHelper('layout')->disableLayout();
     $id = $this->_getParam('id', 0);
     $templateid = $this->_getParam('templateid', 0);
     $locale = Zend_Registry::get('Zend_Locale');
     $templateid = 100;
     $locale = 'de';
     if ($templateid) {
         $templateDb = new Application_Model_DbTable_Template();
         $template = $templateDb->getTemplate($templateid);
         if ($template['filename']) {
             $this->_helper->viewRenderer->setRender($template['filename']);
         }
         $this->view->template = $template;
     }
     $contactDb = new Contacts_Model_DbTable_Contact();
     $contact = $contactDb->getContact($id);
     //Set language
     $translate = new Zend_Translate('array', BASE_PATH . '/languages/' . $quote['language']);
     Zend_Registry::set('Zend_Locale', $quote['language']);
     Zend_Registry::set('Zend_Translate', $translate);
     $this->view->contact = $contact;
     $this->view->footers = $this->_helper->Footer->getFooters($templateid, $this->_user['clientid']);
 }
Example #5
0
 public function getOptions($form, $clientid)
 {
     $options = array();
     //Get categories
     $categoriesDb = new Application_Model_DbTable_Category();
     $categoriesObject = $categoriesDb->fetchAll($categoriesDb->select()->where('type = ?', 'contact')->where('clientid = ?', $clientid)->order('ordering'));
     $categories = array();
     foreach ($categoriesObject as $category) {
         if (!$category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     foreach ($categoriesObject as $category) {
         if ($category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     $options['categories'] = $categories;
     //Get states
     $options['states'] = array('100' => 'STATES_CREATED', '101' => 'STATES_IN_PROCESS', '102' => 'STATES_PLEASE_CHECK', '103' => 'STATES_PLEASE_DELETE', '104' => 'STATES_RELEASED', '105' => 'STATES_COMPLETED', '106' => 'STATES_CANCELLED');
     //Get payment methods
     $paymentmethodDb = new Application_Model_DbTable_Paymentmethod();
     $paymentmethodObject = $paymentmethodDb->fetchAll($paymentmethodDb->select()->where('clientid = ?', $clientid));
     $paymentmethods = array();
     foreach ($paymentmethodObject as $paymentmethod) {
         $paymentmethods[$paymentmethod->title] = $paymentmethod->title;
     }
     $options['paymentmethods'] = $paymentmethods;
     //Get shipping methods
     $shippingmethodDb = new Application_Model_DbTable_Shippingmethod();
     $shippingmethodObject = $shippingmethodDb->fetchAll($shippingmethodDb->select()->where('clientid = ?', $clientid));
     $shippingmethods = array();
     foreach ($shippingmethodObject as $shippingmethod) {
         $shippingmethods[$shippingmethod->title] = $shippingmethod->title;
     }
     $options['shippingmethods'] = $shippingmethods;
     //Get templates
     $templateDb = new Application_Model_DbTable_Template();
     $templateObject = $templateDb->fetchAll($templateDb->select()->where('clientid = ?', $clientid));
     $templates = array();
     foreach ($templateObject as $template) {
         $templates[$template->id] = $template->description;
     }
     $options['templates'] = $templates;
     //Get languages
     $languages = array('de_DE' => 'LANGUAGES_DE_DE', 'en_US' => 'LANGUAGES_EN_US');
     $options['languages'] = $languages;
     //Set form options
     if (isset($form->catid)) {
         $form->catid->addMultiOptions($this->getMenuStructure($categories));
     }
     //if(isset($form->country))$form->country->addMultiOptions($countries);
     //if(isset($form->paymentmethod)) $form->paymentmethod->addMultiOptions($paymentmethods);
     //if(isset($form->shippingmethod)) $form->shippingmethod->addMultiOptions($shippingmethods);
     //if(isset($form->templateid)) $form->templateid->addMultiOptions($templates);
     if (isset($form->language)) {
         $form->language->addMultiOptions($languages);
     }
     return $options;
 }