Example #1
0
 /**
  * 
  * @return int|bool
  */
 public function save()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $dataForm = $this->_data;
         $dateIni = new Zend_Date($dataForm['date_start']);
         $dateFin = new Zend_Date($dataForm['date_finish']);
         // Check if the start date is later than finish date
         if ($dateIni->isLater($dateFin)) {
             $this->_message->addMessage('Loron inisiu la bele liu loron remata.');
             $this->addFieldError('date_start')->addFieldError('date_finish');
             return false;
         }
         // Check to see if either start date or finish date are within the year defined
         if (!in_array($dataForm['year_planning'], array($dateIni->toString('yyyy')))) {
             $this->_message->addMessage(sprintf('Loron inisiu tenki iha laran Tinan: %s.', $dataForm['year']));
             $this->addFieldError('date_start');
             return false;
         }
         $this->_data = $dataForm;
         $this->_data['total_cost'] = App_General_String::toFloat($this->_data['total_cost']);
         // Save the annual planning
         $this->_data['fk_id_annual_planning'] = $this->_saveAnnualPlanning($this->_data);
         $this->_data['date_start'] = $dateIni->toString('yyyy-MM-dd');
         $this->_data['date_finish'] = $dateFin->toString('yyyy-MM-dd');
         $dbPlanningCourse = App_Model_DbTable_Factory::get('FPPlanningCourse');
         $id = parent::_simpleSave($dbPlanningCourse);
         // Update the totals
         $dbAnnualPlanning = App_Model_DbTable_Factory::get('FPAnnualPlanning');
         $totals = $this->_getTotalsAnnualPlanning($this->_data['fk_id_annual_planning']);
         $row = $dbAnnualPlanning->fetchRow(array('id_annual_planning = ?' => $this->_data['fk_id_annual_planning']));
         $row->total_students = $totals->total_students;
         $row->total_cost = $totals->total_cost;
         $row->save();
         $history = sprintf('REJISTU PLANU FORMASAUN: %s BA ANNUAL PLANNING: %s', $id, $this->_data['fk_id_annual_planning']);
         $this->_sysAudit($history);
         $dbAdapter->commit();
         return $id;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #2
0
 /**
  * 
  * @return int|bool
  */
 public function save()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $this->_data['fk_id_sysuser'] = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
         $this->_data['value'] = App_General_String::toFloat($this->_data['value']);
         $id = parent::_simpleSave();
         $history = 'INSERE PULSA, FOLIN HIRA %s - HIRA: %s  - DEPARTAMENTU %s';
         $history = sprintf($history, $this->_data['value'], $this->_data['amount'], $this->_data['fk_id_department']);
         $this->_sysAudit($history);
         $dbAdapter->commit();
         return $id;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #3
0
 /**
  * 
  * @return int|bool
  */
 public function save()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $history = 'INSERE SMS CONFIG';
         $this->_data['fk_id_sysuser'] = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
         $this->_data['sms_unit_cost'] = App_General_String::toFloat($this->_data['sms_unit_cost']);
         $id = parent::_simpleSave();
         $this->_sysAudit($history);
         $this->_reloadSmsConfig();
         $dbAdapter->commit();
         return $id;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #4
0
 /**
  * 
  * @return int|bool
  */
 public function save()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $this->disableLastUnitCost($this->_data);
         $this->_data['fk_id_sysuser'] = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
         $this->_data['status'] = 1;
         $this->_data['cost'] = App_General_String::toFloat($this->_data['cost']);
         $id = parent::_simpleSave();
         $history = sprintf('REJISTU KUSTU UNITARIU: %s', $id);
         $this->_sysAudit($history);
         $dbAdapter->commit();
         return $id;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         Zend_Debug::dump($e);
         exit;
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #5
0
 /**
  * 
  * @return int|bool
  */
 public function savePlanning()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $dbFundPlanning = App_Model_DbTable_Factory::get('FundPlanning');
         $dbFundPlanningModule = App_Model_DbTable_Factory::get('FundPlanningModule');
         $where = array('fk_id_fefopfund = ?' => $this->_data['fk_id_fefopfund'], 'year_planning = ?' => $this->_data['year_planning']);
         $this->_data['amount'] = App_General_String::toFloat($this->_data['amount']);
         $this->_data['additional_cost'] = App_General_String::toFloat($this->_data['additional_cost']);
         $planning = $dbFundPlanning->fetchRow($where);
         if (empty($planning)) {
             $planning = $dbFundPlanning->createRow();
         }
         $planning->setFromArray($this->_data);
         $idPlanning = $planning->save();
         foreach ($this->_data['modules_cost'] as $module => $cost) {
             $where = array('fk_id_fund_planning = ?' => $idPlanning, 'fk_id_fefop_modules = ?' => $module);
             $planningModule = $dbFundPlanningModule->fetchRow($where);
             if (empty($planningModule)) {
                 $planningModule = $dbFundPlanningModule->createRow();
                 $planningModule->fk_id_fund_planning = $idPlanning;
                 $planningModule->fk_id_fefop_modules = $module;
             }
             $planningModule->amount = App_General_String::toFloat($cost);
             $planningModule->save();
         }
         $history = 'PLANEAMENTU FUNDU: %s - BA TINAN: %s';
         $history = sprintf($history, $this->_data['fk_id_fefopfund'], $this->_data['year_planning']);
         $this->_sysAudit($history);
         $dbAdapter->commit();
         return $idPlanning;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #6
0
 /**
  * 
  * @param array $data
  * @param int $id
  * @return boolean
  */
 protected function _saveItemFormationExpense($data, $id)
 {
     if (empty($data['formation_expense'][$id])) {
         return false;
     } else {
         $items = $this->_arrangeItems($data['formation_expense'][$id]);
     }
     $dbPERItem = App_Model_DbTable_Factory::get('PerItem');
     $dbPERFormation = App_Model_DbTable_Factory::get('PerFormation');
     // For each budget category, save its detailed employment items
     foreach ($items as $item) {
         $item['fk_id_budget_category'] = $id;
         $item['fk_id_per_contract'] = $data['fk_id_per_contract'];
         $item['amount_unit'] = App_General_String::toFloat($item['amount_unit']);
         $item['amount_total'] = App_General_String::toFloat($item['amount_total']);
         $rowItem = $dbPERItem->createRow($item);
         $idItem = $rowItem->save();
         $item['fk_id_per_item'] = $idItem;
         $rowBudgetItem = $dbPERFormation->createRow($item);
         $rowBudgetItem->save();
     }
 }
Example #7
0
 /**
  * 
  * @return mixed
  * @throws Exception
  */
 protected function _getAmount()
 {
     switch (true) {
         case array_key_exists('amount', $this->_dataModel):
             return App_General_String::toFloat($this->_dataModel['amount']);
         case array_key_exists('total', $this->_dataModel):
             return App_General_String::toFloat($this->_dataModel['total']);
         case array_key_exists('amount_expenses', $this->_dataModel):
             return App_General_String::toFloat($this->_dataModel['amount_expenses']);
         default:
             $message = 'La hetan folin hira ba halo validasaun';
             $this->_messageModel->addMessage($message, App_Message::ERROR);
             throw new Exception($message);
     }
 }
Example #8
0
 /**
  * 
  * @param array $data
  * @return array
  */
 public function calcTotals($data)
 {
     $totals = array('staff' => array(), 'amount' => 0, 'amount_expenses' => 0);
     foreach ($data['amount_expense'] as $expense) {
         $total = App_General_String::toFloat($expense);
         $totals['amount_expenses'] += $total;
     }
     $unitCost = round($totals['amount_expenses'] / count($data['staff']), 2);
     foreach ($data['staff'] as $idStaff) {
         $amount = $unitCost;
         if ($data['gender'][$idStaff] == 'F') {
             $amount *= 1.1;
         }
         if (!empty($data['handicapped'][$idStaff])) {
             $amount *= 1.1;
         }
         $totals['staff'][] = array('id_staff' => $idStaff, 'unit_cost' => $amount, 'final_cost' => $unitCost, 'training_cost' => $amount - $unitCost);
         $totals['amount'] += $amount;
     }
     return $totals;
 }
Example #9
0
 /**
  * 
  * @param Zend_Db_Select $select
  * @param array $filters
  * @return Zend_Db_Select
  */
 public function applyFiltersSelect($select, $filters)
 {
     if (!empty($filters['fk_id_fefop_type_transaction'])) {
         $select->where('bs.fk_id_fefop_type_transaction = ?', $filters['fk_id_fefop_type_transaction']);
     }
     if (!empty($filters['fk_id_budget_category'])) {
         $select->where('bsc.fk_id_budget_category IN (?)', (array) $filters['fk_id_budget_category']);
     }
     if (!empty($filters['fk_id_budget_category_type'])) {
         $select->where('bc.fk_id_budget_category_type IN (?)', (array) $filters['fk_id_budget_category_type']);
     }
     if (!empty($filters['fk_id_fefopfund'])) {
         $select->where('bs.fk_id_fefopfund = ?', $filters['fk_id_fefopfund']);
     }
     if (!empty($filters['status'])) {
         $select->where('bs.status = ?', $filters['status']);
     }
     if (!empty($filters['minimum_amount'])) {
         $select->where('bs.amount >= ?', App_General_String::toFloat($filters['minimum_amount']));
     }
     if (!empty($filters['maximum_amount'])) {
         $select->where('bs.amount <= ?', App_General_String::toFloat($filters['maximum_amount']));
     }
     if (!empty($filters['num_contract'])) {
         $dbFefopContract = App_Model_DbTable_Factory::get('FEFOPContract');
         $select->join(array('fct' => $dbFefopContract), 'fct.id_fefop_contract = bsc.fk_id_fefop_contract', array('num_contract' => new Zend_Db_Expr('CONCAT( fct.num_program, "-",' . ' fct.num_module, "-", ' . 'fct.num_district, "-", ' . 'fct.num_year, "-", fct.num_sequence )')))->having('num_contract LIKE ?', '%' . $filters['num_contract'] . '%');
     }
     $date = new Zend_Date();
     if (!empty($filters['date_start'])) {
         $select->where('bs.date_statement >= ?', $date->set($filters['date_start'])->toString('yyyy-MM-dd'));
     }
     if (!empty($filters['date_finish'])) {
         $select->where('bs.date_statement <= ?', $date->set($filters['date_finish'])->toString('yyyy-MM-dd'));
     }
     return $select;
 }
Example #10
0
 /**
  * 
  * @return array
  */
 public function donorContractCostReport()
 {
     $dbFEFOPFund = App_Model_DbTable_Factory::get('FEFOPFund');
     $dbFEFOPContractFund = App_Model_DbTable_Factory::get('FEFOPContractFund');
     $dbFEFOPContract = App_Model_DbTable_Factory::get('FEFOPContract');
     $dbBudgetCategoryType = App_Model_DbTable_Factory::get('BudgetCategoryType');
     $dbFEFOPTransaction = App_Model_DbTable_Factory::get('FEFOPTransaction');
     //Donors
     $subSelect = $dbFEFOPFund->select()->setIntegrityCheck(false)->distinct()->from($dbFEFOPFund, array('id_fefopfund', 'name_fund', 'type', 'planning' => new Zend_Db_Expr('IFNULL((' . $this->_columnPlanningByFund() . '), 0)'), 'contract' => new Zend_Db_Expr('IFNULL((' . $this->_columnContractByFund() . '), 0)'), 'financial' => new Zend_Db_Expr('IFNULL((' . $this->_columnFinancialByFund() . '), 0)'), 'addcosts' => new Zend_Db_Expr('IFNULL((' . $this->_columnAdditionalCostsByFund() . '), 0)'), 'addcostsplanning' => new Zend_Db_Expr('IFNULL((' . $this->_addCostsPlanningByFund() . '), 0)'), 'bankstmt' => new Zend_Db_Expr('IFNULL((' . $this->_columnBankStatementsByFund() . '), 0)'), 'balance' => new Zend_Db_Expr('IFNULL((' . $this->_columnTotalByFund() . '), 0)')));
     //		->joinLeft(
     //		    $dbFEFOPContractFund->__toString(),
     //		    'FEFOP_Contract_Fund.fk_id_fefopfund = FEFOPFund.id_fefopfund',
     //		    array()
     //		)
     //		->joinLeft(
     //		    $dbFEFOPContract->__toString(),
     //		    'FEFOP_Contract.id_fefop_contract = FEFOP_Contract_Fund.fk_id_fefop_contract',
     //		    array()
     //		);
     //
     //$this->_whereDefault( $subSelect );
     //
     //	if ( !empty( $this->_data['year_start'] ) ) {
     //	    $subSelect->where( '(FEFOP_Contract.id_fefop_contract IS NULL' );
     //	    $subSelect->orWhere( 'YEAR(FEFOP_Contract.date_inserted) >= ?)', $this->_data['year_start'] );
     //	}
     //
     //	if ( !empty( $this->_data['year_finish'] ) ) {
     //	    $subSelect->where( '(FEFOP_Contract.id_fefop_contract IS NULL' );
     //	    $subSelect->orWhere( 'YEAR(FEFOP_Contract.date_inserted) <= ?)', $this->_data['year_finish'] );
     //	}
     $adapter = App_Model_DbTable_Abstract::getDefaultAdapter();
     $rows = $adapter->fetchAll($subSelect);
     $donor = array();
     $totalDonor = array('planning' => 0, 'contract' => 0, 'financial' => 0, 'addcosts' => 0, 'addcostsplanning' => 0, 'bankstmt' => 0, 'balance' => 0);
     foreach ($rows as $row) {
         $donor[$row['type']][$row['id_fefopfund']]['name'] = $row['name_fund'];
         $donor[$row['type']][$row['id_fefopfund']]['planning'] = $row['planning'];
         $donor[$row['type']][$row['id_fefopfund']]['contract'] = $row['contract'];
         $donor[$row['type']][$row['id_fefopfund']]['financial'] = $row['financial'];
         $donor[$row['type']][$row['id_fefopfund']]['addcosts'] = $row['addcosts'];
         $donor[$row['type']][$row['id_fefopfund']]['addcostsplanning'] = $row['addcostsplanning'];
         $donor[$row['type']][$row['id_fefopfund']]['bankstmt'] = $row['bankstmt'];
         $donor[$row['type']][$row['id_fefopfund']]['balance'] = $row['balance'];
         $totalDonor['planning'] += App_General_String::toFloat($row['planning']);
         $totalDonor['contract'] += App_General_String::toFloat($row['contract']);
         $totalDonor['financial'] += App_General_String::toFloat($row['financial']);
         $totalDonor['addcosts'] += App_General_String::toFloat($row['addcosts']);
         $totalDonor['addcostsplanning'] += App_General_String::toFloat($row['addcostsplanning']);
         $totalDonor['bankstmt'] += App_General_String::toFloat($row['bankstmt']);
         $totalDonor['balance'] += App_General_String::toFloat($row['balance']);
     }
     //Dados do Contrato
     $select = $dbFEFOPContract->select()->setIntegrityCheck(false)->distinct()->from($dbFEFOPContract->__toString(), array());
     $this->_joinDefault($select);
     $this->_whereDefault($select);
     //PerĂ­odo
     if (!empty($this->_data['year_start'])) {
         $select->where('YEAR(FEFOP_Contract.date_inserted) >= ?', $this->_data['year_start']);
     }
     if (!empty($this->_data['year_finish'])) {
         $select->where('YEAR(FEFOP_Contract.date_inserted) <= ?', $this->_data['year_finish']);
     }
     $select->columns(array('FEFOP_Modules.id_fefop_modules', 'FEFOP_Programs.id_fefop_programs', 'acronym_module' => 'FEFOP_Modules.acronym', 'acronym_program' => 'FEFOP_Programs.acronym', 'planning' => new Zend_Db_Expr('(' . $this->_columnPlanningByProgramModule() . ')'), 'transfer' => new Zend_Db_Expr('(' . $this->_columnTransferByProgramModule() . ')'), 'total' => new Zend_Db_Expr('(' . $this->_columnTotalByProgramModule() . ')')));
     $rows = $dbFEFOPContract->fetchAll($select);
     $contract = array();
     foreach ($rows as $row) {
         if (!in_array($row['id_fefop_programs'], array_keys($contract))) {
             $contract[$row['id_fefop_programs']]['acronym'] = $row['acronym_program'];
             $contract[$row['id_fefop_programs']]['module'] = array();
             $contract[$row['id_fefop_programs']]['planning'] = 0;
             $contract[$row['id_fefop_programs']]['transfer'] = 0;
             $contract[$row['id_fefop_programs']]['total'] = 0;
         }
         $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['acronym'] = $row['acronym_module'];
         if (!isset($contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['planning'])) {
             $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['planning'] = 0;
         }
         if (!isset($contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['transfer'])) {
             $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['transfer'] = 0;
         }
         if (!isset($contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['total'])) {
             $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['total'] = 0;
         }
         $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['planning'] += App_General_String::toFloat($row['planning']);
         $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['transfer'] += App_General_String::toFloat($row['transfer']);
         $contract[$row['id_fefop_programs']]['module'][$row['id_fefop_modules']]['total'] += App_General_String::toFloat($row['total']);
         $contract[$row['id_fefop_programs']]['planning'] += App_General_String::toFloat($row['planning']);
         $contract[$row['id_fefop_programs']]['transfer'] += App_General_String::toFloat($row['transfer']);
         $contract[$row['id_fefop_programs']]['total'] += App_General_String::toFloat($row['total']);
     }
     //Dados dos Custos
     $select = $dbBudgetCategoryType->select()->setIntegrityCheck(false)->from($dbBudgetCategoryType->__toString(), array('id_budget_category_type', 'description'))->join($dbFEFOPTransaction->__toString(), 'FEFOP_Transaction.fk_id_budget_category_type = BudgetCategoryType.id_budget_category_type', array('amount' => new Zend_Db_Expr('IFNULL(SUM(FEFOP_Transaction.amount), 0)')))->join($dbFEFOPContract->__toString(), 'FEFOP_Contract.id_fefop_contract = FEFOP_Transaction.fk_id_fefop_contract', array());
     $this->_whereDefault($select);
     //PerĂ­odo
     if (!empty($this->_data['year_start'])) {
         $select->where('YEAR(FEFOP_Contract.date_inserted) >= ?', $this->_data['year_start']);
     }
     if (!empty($this->_data['year_finish'])) {
         $select->where('YEAR(FEFOP_Contract.date_inserted) <= ?', $this->_data['year_finish']);
     }
     $select->group(array('BudgetCategoryType.id_budget_category_type'));
     $rows = $dbBudgetCategoryType->fetchAll($select);
     $cost = array();
     foreach ($rows as $row) {
         $cost[$row['id_budget_category_type']]['description'] = $row['description'];
         $cost[$row['id_budget_category_type']]['amount'] = $row['amount'];
     }
     return array('item' => array('donor' => $donor, 'total' => $totalDonor, 'contract' => $contract, 'cost' => $cost));
 }
Example #11
0
 /**
  * 
  */
 public function calcUnitCostAction()
 {
     $cost = App_General_String::toFloat($this->_getParam('cost'));
     $idClass = $this->_getParam('id_class');
     $mapperStudentClass = new StudentClass_Model_Mapper_StudentClass();
     $clients = $mapperStudentClass->listClientClass($idClass);
     $data = array('total' => 0, 'costs' => array(), 'man' => 0, 'woman' => 0);
     if ($clients->count()) {
         foreach ($clients as $client) {
             $value = $cost;
             if (!empty($client->id_handicapped)) {
                 $value = $value * 1.25;
             }
             $data['costs'][$client->id_perdata] = number_format($value, 2, '.', ',');
             $data['total'] += $value;
             if ('MANE' == $client->gender) {
                 $data['man']++;
             } else {
                 $data['woman']++;
             }
         }
         $womanPercentage = floor($data['woman'] * 100 / $clients->count());
         if ($womanPercentage >= 40 && $womanPercentage <= 70) {
             $data['total'] = $data['total'] * 1.1;
         }
     }
     $data['total'] = number_format($data['total'], 2, '.', ',');
     $this->_helper->json($data);
 }
Example #12
0
 /**
  * 
  * @param array $data
  */
 protected function _saveExpenses($data)
 {
     $dbBusinessPlanExpense = App_Model_DbTable_Factory::get('BusinessPlanExpense');
     $dbBusinessPlanBudgetCategory = App_Model_DbTable_Factory::get('BusinessPlanBugdetCategory');
     #$dbBudgetContract = App_Model_DbTable_Factory::get( 'BudgetCategoryHasFEFOPContract' );
     // Delete all the detailed items
     $where = array('fk_id_businessplan = ?' => $data['id_businessplan']);
     $dbBusinessPlanBudgetCategory->delete($where);
     $dbBusinessPlanExpense->delete($where);
     // Fetch Business Plan
     $contract = $this->fetchBusinessPlan($data['id_businessplan']);
     // Save each budget category
     foreach ($data['expense'] as $typeExpense => $expense) {
         foreach ($expense as $id => $cost) {
             $whereBudget = array('fk_id_businessplan = ?' => $contract['id_businessplan'], 'fk_id_budget_category = ?' => $id);
             $row = $dbBusinessPlanExpense->fetchRow($whereBudget);
             if (empty($row)) {
                 $row = $dbBusinessPlanExpense->createRow();
                 $row->fk_id_budget_category = $id;
                 $row->fk_id_businessplan = $contract['id_businessplan'];
             }
             $row->amount = App_General_String::toFloat($cost);
             $idBudgetExpense = $row->save();
             // If it wasn't defined detailed items
             if ($typeExpense != "cost_expense" || empty($data['detailed_expense']['quantity'][$id])) {
                 continue;
             }
             $detailedExpense = $data['detailed_expense'];
             // For each budget category, save its detailed items
             foreach ($detailedExpense['quantity'][$id] as $count => $itemExpense) {
                 $rowItemExpense = $dbBusinessPlanBudgetCategory->createRow();
                 $rowItemExpense->fk_id_businessplan = $data['id_businessplan'];
                 $rowItemExpense->fk_id_business_plan_expense = $idBudgetExpense;
                 $rowItemExpense->description = $detailedExpense['item_expense'][$id][$count];
                 $rowItemExpense->quantity = $itemExpense;
                 $rowItemExpense->amount_unit = App_General_String::toFloat($detailedExpense['amount_unit'][$id][$count]);
                 $rowItemExpense->amount_total = App_General_String::toFloat($detailedExpense['amount_total'][$id][$count]);
                 $rowItemExpense->save();
             }
         }
     }
 }
Example #13
0
 /**
  * 
  * @param array $filters
  * @return Zend_Db_Table_Rowset
  */
 public function listByFilters($filters = array())
 {
     $select = $this->getSelect();
     if (!empty($filters['fk_id_fefop_type_transaction'])) {
         $select->where('bs.fk_id_fefop_type_transaction = ?', $filters['fk_id_fefop_type_transaction']);
     }
     if (!empty($filters['id_fefop_bank_contract'])) {
         $select->where('bc.fk_id_fefop_contract = ?', $filters['id_fefop_bank_contract']);
     }
     if (!empty($filters['fk_id_budget_category'])) {
         $select->where('bc.fk_id_budget_category IN (?)', (array) $filters['fk_id_budget_category']);
     }
     if (!empty($filters['fk_id_budget_category_type'])) {
         $select->where('bgc.fk_id_budget_category_type IN (?)', (array) $filters['fk_id_budget_category_type']);
     }
     if (!empty($filters['minimum_amount'])) {
         $select->having('ABS(total_consolidated) >= ?', App_General_String::toFloat($filters['minimum_amount']));
     }
     if (!empty($filters['maximum_amount'])) {
         $select->having('ABS(total_consolidated) <= ?', App_General_String::toFloat($filters['maximum_amount']));
     }
     $date = new Zend_Date();
     if (!empty($filters['date_start'])) {
         $select->where('DATE(co.date_inserted) >= ?', $date->set($filters['date_start'])->toString('yyyy-MM-dd'));
     }
     if (!empty($filters['date_finish'])) {
         $select->where('DATE(co.date_inserted) <= ?', $date->set($filters['date_finish'])->toString('yyyy-MM-dd'));
     }
     return $this->_dbTable->fetchAll($select);
 }
Example #14
0
 /**
  * 
  * @param array $data
  */
 protected function _saveBeneficiaries($data)
 {
     $dbBeneficiary = App_Model_DbTable_Factory::get('FP_Beneficiary');
     foreach ($data['cost_client'] as $client => $cost) {
         $where = array('fk_id_fp_contract = ?' => $data['id_fp_contract'], 'fk_id_perdata = ?' => $client);
         $row = $dbBeneficiary->fetchRow($where);
         if (empty($row)) {
             $row = $dbBeneficiary->createRow();
             $row->fk_id_fp_contract = $data['id_fp_contract'];
             $row->fk_id_unit_cost = $data['fk_id_unit_cost'];
             $row->fk_id_perdata = $client;
             $row->handicapped = $data['client_handicapped'][$client];
             $row->amount = App_General_String::toFloat($cost);
             $row->save();
         }
     }
 }
Example #15
0
 /**
  * 
  * @param array $data
  */
 protected function _saveExpenses($data)
 {
     $dbBudgetContract = App_Model_DbTable_Factory::get('BudgetCategoryHasFEFOPContract');
     // Save each budget category
     foreach ($data['cost_expense'] as $id => $costExpense) {
         $whereBudget = array('fk_id_fefop_contract = ?' => $data['fk_id_fefop_contract'], 'fk_id_budget_category = ?' => $id);
         $row = $dbBudgetContract->fetchRow($whereBudget);
         if (empty($row)) {
             $row = $dbBudgetContract->createRow();
             $row->fk_id_budget_category = $id;
             $row->fk_id_fefop_contract = $data['fk_id_fefop_contract'];
             $row->fk_id_sysuser = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
             $row->status = 1;
         }
         $row->amount = App_General_String::toFloat($costExpense);
         $row->save();
     }
 }
Example #16
0
 /**
  * 
  * @param array $data
  */
 protected function _saveExpenses($data)
 {
     $dbBudgetContract = App_Model_DbTable_Factory::get('BudgetCategoryHasFEFOPContract');
     if (empty($data['expense'])) {
         $message = 'La iha Rubrika Despeza';
         $this->_message->addMessage($message, App_Message::ERROR);
         throw new Exception($message);
     }
     // Save each budget category
     foreach ($data['expense'] as $id => $costExpense) {
         $whereBudget = array('fk_id_fefop_contract = ?' => $data['fk_id_fefop_contract'], 'fk_id_budget_category = ?' => $id);
         $row = $dbBudgetContract->fetchRow($whereBudget);
         if (empty($row)) {
             $row = $dbBudgetContract->createRow();
             $row->fk_id_budget_category = $id;
             $row->fk_id_fefop_contract = $data['fk_id_fefop_contract'];
             $row->fk_id_sysuser = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
             $row->status = 1;
         }
         $row->amount = App_General_String::toFloat($costExpense);
         $row->save();
     }
 }
Example #17
0
 /**
  * 
  * @return boolean
  */
 public function saveAdditionalContract()
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $dataForm = $this->_data;
         $dbContractAdditional = App_Model_DbTable_Factory::get('FEFOPContractAdditional');
         $totalCost = abs($this->getTotalExpenseContract($dataForm['contract'], $dataForm['expense']));
         $totalFunds = 0;
         foreach ($dataForm['funds'] as $fund) {
             $totalFunds += App_General_String::toFloat($fund);
         }
         if ((string) $totalCost != (string) $totalFunds) {
             $currency = new Zend_Currency();
             $message = 'Total husi Fundu: %s keta la hanesan Total Kustu Extra: %s';
             $message = sprintf($message, $currency->setValue($totalFunds)->toCurrency(), $currency->setValue($totalCost)->toCurrency());
             $this->_message->addMessage($message, App_Message::ERROR);
             return false;
         }
         foreach ($dataForm['funds'] as $idFund => $fund) {
             $where = array('fk_id_budget_category = ?' => $dataForm['expense'], 'fk_id_fefop_contract = ?' => $dataForm['contract'], 'fk_id_fefopfund = ?' => $idFund);
             $row = $dbContractAdditional->fetchRow($where);
             if (empty($row)) {
                 $row = $dbContractAdditional->createRow();
                 $row->fk_id_budget_category = $dataForm['expense'];
                 $row->fk_id_fefop_contract = $dataForm['contract'];
                 $row->fk_id_fefopfund = $idFund;
             }
             $row->user_entered = 1;
             $row->amount = App_General_String::toFloat($fund);
             $row->save();
         }
         $dbAdapter->commit();
         return true;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }
Example #18
0
 /**
  * 
  * @param array $data
  */
 protected function _saveExpenses($data)
 {
     $dbRIBudgetCategory = App_Model_DbTable_Factory::get('RIBudgetCategory');
     $dbBudgetContract = App_Model_DbTable_Factory::get('BudgetCategoryHasFEFOPContract');
     // Delete all the detailed items
     $where = array('fk_id_ri_contract = ?' => $data['id_ri_contract']);
     $dbRIBudgetCategory->delete($where);
     // Save each budget category
     foreach ($data['cost_expense'] as $id => $costExpense) {
         $whereBudget = array('fk_id_fefop_contract = ?' => $data['fk_id_fefop_contract'], 'fk_id_budget_category = ?' => $id);
         $row = $dbBudgetContract->fetchRow($whereBudget);
         if (empty($row)) {
             $row = $dbBudgetContract->createRow();
             $row->fk_id_budget_category = $id;
             $row->fk_id_fefop_contract = $data['fk_id_fefop_contract'];
             $row->fk_id_sysuser = Zend_Auth::getInstance()->getIdentity()->id_sysuser;
             $row->status = 1;
         }
         $row->amount = App_General_String::toFloat($costExpense);
         $idBudgetContract = $row->save();
         // If it wasn't defined detailed items
         if (empty($data['item_expense'][$id])) {
             continue;
         }
         // For each budget category, save its detailed items
         foreach ($data['item_expense'][$id] as $count => $itemExpense) {
             $rowItemExpense = $dbRIBudgetCategory->createRow();
             $rowItemExpense->fk_id_ri_contract = $data['id_ri_contract'];
             $rowItemExpense->fk_id_budgetcategory_contract = $idBudgetContract;
             $rowItemExpense->description = $itemExpense;
             $rowItemExpense->quantity = $data['quantity'][$id][$count];
             $rowItemExpense->amount_unit = App_General_String::toFloat($data['amount_unit'][$id][$count]);
             $rowItemExpense->amount_total = App_General_String::toFloat($data['amount_total'][$id][$count]);
             $rowItemExpense->comments = $data['comments'][$id][$count];
             $rowItemExpense->save();
         }
     }
 }
Example #19
0
 /**
  * 
  * @return int|bool
  */
 public function updateAmount($data)
 {
     $dbAdapter = Zend_Db_Table_Abstract::getDefaultAdapter();
     $dbAdapter->beginTransaction();
     try {
         $dbCategoryConfiguration = App_Model_DbTable_Factory::get('BudgetCategoryConfiguration');
         $updateValue = array('amount' => App_General_String::toFloat($data['amount']));
         $where = array('identifier = ?' => $data['item'], 'fk_id_budget_category = ?' => $data['id']);
         $dbCategoryConfiguration->update($updateValue, $where);
         $dbAdapter->commit();
         return true;
     } catch (Exception $e) {
         $dbAdapter->rollBack();
         $this->_message->addMessage($this->_config->messages->error, App_Message::ERROR);
         return false;
     }
 }