public function getIndex()
 {
     return $this->View->make('decima-accounting::general-ledger')->with('accounts', $this->AccountManagerService->getAccounts())->with('filterDates', $this->JournalManagerService->getFirstAndLastDayOfCurrentMonth());
 }
Ejemplo n.º 2
0
 public function postAccountChildrenIds()
 {
     return $this->AccountManagerService->getAccountChildrenIdsJson($this->Input->json()->all());
 }
Ejemplo n.º 3
0
 public function getIndex()
 {
     return $this->View->make('decima-accounting::journal-management')->with('newAccountingEntryAction', $this->Session->get('newAccountingEntryAction', false))->with('editAccountingEntryAction', $this->Session->get('editAccountingEntryAction', false))->with('nulifyAccountingEntryAction', $this->Session->get('nulifyAccountingEntryAction', false))->with('voucherTypes', $this->JournalManagerService->getVoucherTypes())->with('costCenters', $this->JournalManagerService->getCostCenters())->with('documentTypes', $this->JournalManagerService->getDocumentTypes())->with('employees', $this->JournalManagerService->getEmployees())->with('clients', $this->JournalManagerService->getClients())->with('suppliers', $this->JournalManagerService->getSuppliers())->with('accounts', $this->AccountManagerService->getNonGroupAccounts())->with('users', $this->OrganizationManagerService->getUsersByOrganization())->with('periods', $this->PeriodManagementService->getPeriods())->with('periodsFilter', $this->PeriodManagementService->getPeriods2())->with('prefix', 'acct-jm-');
 }
 public function getIndex()
 {
     return $this->View->make('decima-accounting::tax-control')->with('accounts', $this->AccountManagerService->getNonGroupAccounts())->with('documentTypes', $this->JournalManagerService->getDocumentTypes())->with('employees', $this->JournalManagerService->getEmployees())->with('clients', $this->JournalManagerService->getClients())->with('suppliers', $this->JournalManagerService->getSuppliers())->with('filterDates', $this->JournalManagerService->getFirstAndLastDayOfCurrentMonth());
 }
 public function getIndex()
 {
     return $this->View->make('decima-accounting::close-fiscal-year')->with('accounts', $this->AccountManagerService->getNonGroupAccounts())->with('costCenters', $this->JournalManagerService->getCostCenters())->with('voucherTypes', $this->JournalManagerService->getVoucherTypes());
 }