├── .dockerignore ├── .env.docker ├── .env.sample ├── .eslintrc.json ├── .eslintrc.local.json ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ ├── jekyll-gh-pages.yml │ └── publish-containerfile.yml ├── .gitignore ├── .hound.yml ├── .mocharc.js ├── .semaphore └── semaphore.yml ├── .sqlfluff ├── CHANGELOG.md ├── CNAME ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASES.md ├── SECURITY.md ├── UPGRADING.md ├── client └── src │ ├── assets │ ├── IMAicon.jpg │ ├── empty.png │ ├── favicon.ico │ ├── icon.png │ └── placeholder.gif │ ├── css │ ├── documents.css │ ├── images │ │ ├── sort-asc.gif │ │ └── sort-desc.gif │ ├── statistic.semantic.css │ ├── structure.css │ ├── trialbalance.css │ └── ui-grid.css │ ├── i18n │ ├── currency │ │ ├── eur.json │ │ ├── fc.json │ │ └── usd.json │ ├── en │ │ ├── account.json │ │ ├── asset.json │ │ ├── auth.json │ │ ├── balance.json │ │ ├── barcode.json │ │ ├── budget.json │ │ ├── cash.json │ │ ├── cash_registry.json │ │ ├── cashbox.json │ │ ├── color.json │ │ ├── cost_center.json │ │ ├── country.json │ │ ├── creditor_group.json │ │ ├── cron.json │ │ ├── dashboard.json │ │ ├── debtor_group.json │ │ ├── depot.json │ │ ├── downloads.json │ │ ├── employee.json │ │ ├── employee_registry.json │ │ ├── enterprise.json │ │ ├── entity.json │ │ ├── errors.json │ │ ├── exchange.json │ │ ├── fiscal.json │ │ ├── form.json │ │ ├── function.json │ │ ├── general_ledger.json │ │ ├── grade.json │ │ ├── graphs.json │ │ ├── holiday.json │ │ ├── home.json │ │ ├── indicator.json │ │ ├── install.json │ │ ├── inventory.json │ │ ├── invoice_registry.json │ │ ├── invoicing_fees.json │ │ ├── ipr_tax.json │ │ ├── location.json │ │ ├── login.json │ │ ├── numbers.json │ │ ├── offdays.json │ │ ├── order.json │ │ ├── patient_document.json │ │ ├── patient_edit.json │ │ ├── patient_group.json │ │ ├── patient_invoice.json │ │ ├── patient_records.json │ │ ├── patient_reg.json │ │ ├── patient_registry.json │ │ ├── payroll.json │ │ ├── periods.json │ │ ├── person.json │ │ ├── posting_journal.json │ │ ├── price_list.json │ │ ├── project.json │ │ ├── province.json │ │ ├── purchases.json │ │ ├── reference.json │ │ ├── reference_group.json │ │ ├── report.json │ │ ├── sector.json │ │ ├── service.json │ │ ├── settings.json │ │ ├── shipment.json │ │ ├── stock.json │ │ ├── subsidy.json │ │ ├── supplier.json │ │ ├── system.json │ │ ├── table.json │ │ ├── tag.json │ │ ├── transaction_type.json │ │ ├── transactions.json │ │ ├── tree.json │ │ ├── users.json │ │ ├── village.json │ │ ├── voucher_registry.json │ │ ├── vouchers.json │ │ └── ward.json │ ├── fr │ │ ├── account.json │ │ ├── asset.json │ │ ├── auth.json │ │ ├── balance.json │ │ ├── barcode.json │ │ ├── budget.json │ │ ├── cash.json │ │ ├── cash_registry.json │ │ ├── cashbox.json │ │ ├── color.json │ │ ├── cost_center.json │ │ ├── country.json │ │ ├── creditor_group.json │ │ ├── cron.json │ │ ├── dashboard.json │ │ ├── debtor_group.json │ │ ├── depot.json │ │ ├── downloads.json │ │ ├── employee.json │ │ ├── employee_registry.json │ │ ├── enterprise.json │ │ ├── entity.json │ │ ├── errors.json │ │ ├── exchange.json │ │ ├── fiscal.json │ │ ├── form.json │ │ ├── function.json │ │ ├── general_ledger.json │ │ ├── grade.json │ │ ├── graphs.json │ │ ├── holiday.json │ │ ├── home.json │ │ ├── indicator.json │ │ ├── install.json │ │ ├── inventory.json │ │ ├── invoice_registry.json │ │ ├── invoicing_fees.json │ │ ├── ipr_tax.json │ │ ├── location.json │ │ ├── login.json │ │ ├── numbers.json │ │ ├── offdays.json │ │ ├── order.json │ │ ├── patient_document.json │ │ ├── patient_edit.json │ │ ├── patient_group.json │ │ ├── patient_invoice.json │ │ ├── patient_records.json │ │ ├── patient_reg.json │ │ ├── patient_registry.json │ │ ├── payroll.json │ │ ├── periods.json │ │ ├── person.json │ │ ├── posting_journal.json │ │ ├── price_list.json │ │ ├── project.json │ │ ├── province.json │ │ ├── purchases.json │ │ ├── reference.json │ │ ├── reference_group.json │ │ ├── report.json │ │ ├── sector.json │ │ ├── service.json │ │ ├── settings.json │ │ ├── shipment.json │ │ ├── stock.json │ │ ├── subsidy.json │ │ ├── supplier.json │ │ ├── system.json │ │ ├── table.json │ │ ├── tag.json │ │ ├── transaction_type.json │ │ ├── transactions.json │ │ ├── tree.json │ │ ├── users.json │ │ ├── village.json │ │ ├── voucher_registry.json │ │ ├── vouchers.json │ │ └── ward.json │ └── locale │ │ ├── angular-locale_en-us.js │ │ ├── angular-locale_fr-be.js │ │ ├── angular-locale_fr-cd.js │ │ ├── angular-locale_fr-fr.js │ │ └── angular-locale_ln-cd.js │ ├── index.html │ ├── js │ ├── app.js │ ├── components │ │ ├── bhAccountConfigSelect.js │ │ ├── bhAccountReferenceSelect.js │ │ ├── bhAccountReferenceTypeSelect.js │ │ ├── bhAccountSelect.js │ │ ├── bhAccountSelectMultiple.js │ │ ├── bhAccountTypeSelect │ │ │ ├── bhAccountTypeSelect.html │ │ │ └── bhAccountTypeSelect.js │ │ ├── bhAccountTypeaheadInline.js │ │ ├── bhAddItem.js │ │ ├── bhAnalysisToolTypeSelect.js │ │ ├── bhAssetConditionSelect │ │ │ ├── bhAssetConditionSelect.js │ │ │ └── bhAssetConditionSelect.tmpl.html │ │ ├── bhBarcodeScanner.js │ │ ├── bhBedSelect │ │ │ ├── bhBedSelect.html │ │ │ └── bhBedSelect.js │ │ ├── bhCard.js │ │ ├── bhCardList.js │ │ ├── bhCashboxSelect.js │ │ ├── bhCashboxUsers.js │ │ ├── bhChangeDepot.js │ │ ├── bhCheckboxTree │ │ │ ├── bhCheckboxTree.html │ │ │ └── bhCheckboxTree.js │ │ ├── bhChoiceListMultipleSelect.js │ │ ├── bhChoiceListSelect.js │ │ ├── bhClear.js │ │ ├── bhCostCenterSelect │ │ │ ├── bhCostCenterSelect.html │ │ │ └── bhCostCenterSelect.js │ │ ├── bhCronEmailReport │ │ │ ├── bhCronEmailReport.html │ │ │ └── bhCronEmailReport.js │ │ ├── bhCronSelect │ │ │ ├── bhCronSelect.html │ │ │ └── bhCronSelect.js │ │ ├── bhCurrencyInput.js │ │ ├── bhCurrencySelect.js │ │ ├── bhDashboardFilter │ │ │ ├── bhDashboardFilter.html │ │ │ └── bhDashboardFilter.js │ │ ├── bhDataCollector.js │ │ ├── bhDateEditor.js │ │ ├── bhDateInterval.js │ │ ├── bhDatePicker.js │ │ ├── bhDebtorGroupHistory.js │ │ ├── bhDebtorGroupSelect.js │ │ ├── bhDepotSelect │ │ │ ├── bhDepotSelect.js │ │ │ └── bhDepotSelect.tmpl.html │ │ ├── bhDepotSelectSearch │ │ │ ├── bhDepotSelect.js │ │ │ └── bhDepotSelectSearch.html │ │ ├── bhDiagnosisSelect │ │ │ ├── bhDiagnosisSelect.html │ │ │ └── bhDiagnosisSelect.js │ │ ├── bhDischargeSelect │ │ │ ├── bhDischargeSelect.html │ │ │ └── bhDischargeSelect.js │ │ ├── bhEmployeeConfigSelect.js │ │ ├── bhEmployeeSelect.js │ │ ├── bhEntityGroupSelect │ │ │ ├── bhEntityGroupSelect.js │ │ │ └── bhEntityGroupSelect.tmpl.html │ │ ├── bhEntitySelect │ │ │ ├── bhEntitySelect.js │ │ │ └── bhEntitySelect.tmpl.html │ │ ├── bhEntitySelectMultiple │ │ │ ├── bhEntitySelectMultiple.js │ │ │ └── bhEntitySelectMultiple.tmpl.html │ │ ├── bhEntityTypeSelect │ │ │ ├── bhEntityTypeSelect.js │ │ │ └── bhEntityTypeSelect.tmpl.html │ │ ├── bhEntityTypeahead.js │ │ ├── bhExchange.js │ │ ├── bhExchangeRate.js │ │ ├── bhFilter.js │ │ ├── bhFilterToggle.js │ │ ├── bhFilters.js │ │ ├── bhFindInvoice.js │ │ ├── bhFindPatient.js │ │ ├── bhFiscalPeriodSelect.js │ │ ├── bhFiscalYearPeriodSelect │ │ │ ├── bhFiscalYearPeriodSelect.html │ │ │ └── bhFiscalYearPeriodSelect.js │ │ ├── bhFiscalYearSelect.js │ │ ├── bhFluxSelect.js │ │ ├── bhFonctionSelect.js │ │ ├── bhFundingSourceSelect │ │ │ ├── bhFundingSourceSelect.html │ │ │ └── bhFundingSourceSelect.js │ │ ├── bhGenderSelect │ │ │ ├── bhGenderSelect.js │ │ │ └── bhGenderSelect.tmpl.html │ │ ├── bhGradeSelect.js │ │ ├── bhGridLoadingIndicator.js │ │ ├── bhHasRequisitionVoucher │ │ │ ├── bhHasRequisitionVoucher.html │ │ │ └── bhHasRequisitionVoucher.js │ │ ├── bhHasShipmentVoucher │ │ │ ├── bhHasShipmentVoucher.html │ │ │ └── bhHasShipmentVoucher.js │ │ ├── bhHiddenField.js │ │ ├── bhIndicator │ │ │ ├── bhIndicator.html │ │ │ └── bhIndicator.js │ │ ├── bhInfo.js │ │ ├── bhInputText.js │ │ ├── bhInventoryGroupSelect.js │ │ ├── bhInventorySelect.js │ │ ├── bhInventoryTypeSelect.js │ │ ├── bhIprConfigSelect.js │ │ ├── bhIprScale.js │ │ ├── bhJournalLink.js │ │ ├── bhLoadingButton.js │ │ ├── bhLocationSelect.js │ │ ├── bhModalNotify │ │ │ ├── bhModalNotify.html │ │ │ └── bhModalNotify.js │ │ ├── bhMultipleCashboxSelect.js │ │ ├── bhMultipleDepotSelect.js │ │ ├── bhNavigation.js │ │ ├── bhPDFPrint.js │ │ ├── bhPanelOverlay.js │ │ ├── bhPatientFinancialActivity.js │ │ ├── bhPatientGroupSelect.js │ │ ├── bhPatientMedicalSheet.js │ │ ├── bhPayrollPeriodSelect.js │ │ ├── bhPayrollStatusSelect.js │ │ ├── bhPercentageInput.js │ │ ├── bhPeriodSelect.js │ │ ├── bhPeriodSelection.js │ │ ├── bhProjectSelect.js │ │ ├── bhPurchaseOrderSelect.js │ │ ├── bhPurchaseStatusSelect.js │ │ ├── bhReceipt.js │ │ ├── bhReceiptCurrency.js │ │ ├── bhRecordTypeahead.js │ │ ├── bhReferenceAccountMultipleSelect.js │ │ ├── bhReferenceLink.js │ │ ├── bhRenderOption.js │ │ ├── bhReportPreview.js │ │ ├── bhReportSource.js │ │ ├── bhRequiredInventoryScanSelect │ │ │ ├── bhRequiredInventoryScanSelect.js │ │ │ └── bhRequiredInventoryScanSelect.tmpl.html │ │ ├── bhRequisitionSelect.js │ │ ├── bhRoomAssign │ │ │ ├── bhRoomAssign.html │ │ │ └── bhRoomAssign.js │ │ ├── bhRoomSelect │ │ │ ├── bhRoomSelect.html │ │ │ └── bhRoomSelect.js │ │ ├── bhRubricConfigSelect.js │ │ ├── bhRubricSelect.js │ │ ├── bhSearchButton.js │ │ ├── bhServiceOrDepot │ │ │ ├── bhServiceOrDepot.html │ │ │ └── bhServiceOrDepot.js │ │ ├── bhServiceSelect.js │ │ ├── bhServicesMultipleSelect.js │ │ ├── bhShipmentSelect │ │ │ ├── bhShipmentSelect.html │ │ │ └── bhShipmentSelect.js │ │ ├── bhShowPendingTransfers.js │ │ ├── bhStockEntryExitType.js │ │ ├── bhStockExitType.js │ │ ├── bhStockExpired │ │ │ ├── bhStockExpired.html │ │ │ └── bhStockExpired.js │ │ ├── bhStockFilterExhausted.js │ │ ├── bhStockOut │ │ │ ├── bhStockOut.html │ │ │ └── bhStockOut.js │ │ ├── bhStockPanelAtRiskExpiration.js │ │ ├── bhStockPanelAtRiskOutStock.js │ │ ├── bhStockPanelExpired.js │ │ ├── bhStockPanelMinimumReached.js │ │ ├── bhStockPanelOutOfStock.js │ │ ├── bhStockPanelOverMax.js │ │ ├── bhStockPanelRequirePurchaseOrder.js │ │ ├── bhStockReceipt.js │ │ ├── bhStrengthMeter.js │ │ ├── bhSupplierSelect.js │ │ ├── bhSurveyFormSelect.js │ │ ├── bhSurveyFormTypeSelect.js │ │ ├── bhSurveyListSelect.js │ │ ├── bhTagSelect │ │ │ ├── bhTagSelect.html │ │ │ └── bhTagSelect.js │ │ ├── bhTitleSelect.js │ │ ├── bhTransactionTypeSelect.js │ │ ├── bhUser.js │ │ ├── bhUserSelect.js │ │ ├── bhWardSelect │ │ │ ├── bhWardSelect.html │ │ │ └── bhWardSelect.js │ │ ├── bhWeekConfigSelect.js │ │ └── bhYesNoRadios.js │ ├── constants │ │ └── bhConstants.js │ ├── define.js │ ├── directives │ │ ├── bhBlur.js │ │ ├── bhDateValidator.js │ │ ├── bhDropdownMenu.js │ │ ├── bhDropdownMenuAutoDropup.js │ │ ├── bhGridDateEditor.js │ │ ├── bhHasPermission.js │ │ ├── bhInteger.js │ │ ├── bhMaxIntegerValidator.js │ │ ├── bhPasswordMeter.js │ │ ├── bhRequireEnterpriseSetting.js │ │ ├── bhSubmit.js │ │ ├── bhUnique.js │ │ ├── loading.js │ │ ├── totalsfooter.js │ │ └── uiSelectFocusPatch.js │ ├── filters │ │ ├── bytes.js │ │ ├── currency.js │ │ ├── percentage.js │ │ └── telephone.js │ └── services │ │ ├── AppCache.js │ │ ├── BarcodeService.js │ │ ├── CronEmailReportService.js │ │ ├── CronService.js │ │ ├── CurrencyService.js │ │ ├── DischargeTypeService.js │ │ ├── ErrorInterceptor.js │ │ ├── ExchangeRateService.js │ │ ├── ExportService.js │ │ ├── FilterService.js │ │ ├── FinancialService.js │ │ ├── FluxService.js │ │ ├── FormatTreeDataService.js │ │ ├── HttpCacheService.js │ │ ├── LanguageService.js │ │ ├── LotService.js │ │ ├── ModalService.js │ │ ├── NotifyService.js │ │ ├── PasswordMeterService.js │ │ ├── PeriodService.js │ │ ├── Pool.js │ │ ├── PrototypeApiService.js │ │ ├── ScrollService.js │ │ ├── SearchModal.js │ │ ├── Session.js │ │ ├── Snapshot.js │ │ ├── StockService.js │ │ ├── Store.js │ │ ├── System.js │ │ ├── TransactionService.js │ │ ├── TreeService.js │ │ ├── UniqueValidatorService.js │ │ ├── authinjector.js │ │ ├── color.js │ │ ├── currencyFormat.js │ │ ├── focus.js │ │ ├── grid │ │ ├── GridAggregator.js │ │ ├── GridColumns.js │ │ ├── GridEditors.js │ │ ├── GridExport.js │ │ ├── GridFilterer.js │ │ ├── GridFiltering.js │ │ ├── GridGrouping.js │ │ ├── GridPagination.js │ │ ├── GridRegistryFilterer.js │ │ ├── GridSelection.js │ │ ├── GridSorting.js │ │ └── GridState.js │ │ ├── period.js │ │ ├── receipts │ │ ├── ReceiptModal.js │ │ ├── ReceiptService.js │ │ └── modal │ │ │ ├── receiptModal.tmpl.html │ │ │ └── receiptModalController.js │ │ ├── tree.js │ │ ├── util.js │ │ └── uuid.js │ ├── less │ ├── bhima-bootstrap.less │ └── bhima-print.less │ └── modules │ ├── account_reference │ ├── account_reference.ctrl.js │ ├── account_reference.html │ ├── account_reference.modal.html │ ├── account_reference.modal.js │ ├── account_reference.routes.js │ ├── account_reference.service.js │ ├── search.modal.html │ ├── search.modal.js │ └── templates │ │ ├── account_list.cell.html │ │ ├── action.cell.html │ │ └── is_amo_dep.cell.html │ ├── account_reference_type │ ├── account_reference_type.html │ ├── account_reference_type.js │ ├── account_reference_type.routes.js │ ├── account_reference_type.service.js │ ├── modals │ │ ├── account_reference_type.modal.html │ │ └── account_reference_type.modal.js │ └── templates │ │ └── action.cell.html │ ├── accounts │ ├── AccountGrid.js │ ├── AccountStoreService.js │ ├── accountCategories.service.js │ ├── accountTypes.service.js │ ├── accounts.html │ ├── accounts.js │ ├── accounts.routes.js │ ├── accounts.service.js │ ├── edit │ │ ├── accounts.edit.js │ │ └── accounts.edit.modal.html │ ├── modals │ │ ├── import.html │ │ └── import.js │ └── templates │ │ ├── actions.html │ │ ├── grid.indentCell.tmpl.html │ │ ├── grid.labelCell.tmpl.html │ │ ├── grid.leafRow.tmpl.html │ │ └── grid.titleRow.tmpl.html │ ├── allocation_center │ ├── allocation_center.html │ ├── allocation_center.js │ ├── allocation_center.routes.js │ ├── allocation_center.service.js │ ├── allocation_center_update.service.js │ ├── allocation_key │ │ ├── allocation_key.html │ │ └── allocation_key.js │ ├── modals │ │ ├── allocation.modal.html │ │ ├── allocation.modal.js │ │ ├── allocation_key.modal.html │ │ ├── allocation_key.modal.js │ │ ├── breakDown.modal.html │ │ ├── breakDown.modal.js │ │ ├── setting_allocation.modal.html │ │ └── setting_allocation.modal.js │ ├── templates │ │ ├── action.tmpl.html │ │ ├── costCenterType.tmpl.html │ │ ├── date.cell.html │ │ ├── footer.template.html │ │ ├── setting.tmpl.html │ │ └── update.tmpl.html │ └── update │ │ ├── update_center.html │ │ └── update_center.js │ ├── application │ ├── application.js │ ├── application.routes.js │ └── exchange.html │ ├── asset_scans │ ├── asset-scans-registry.html │ ├── asset-scans-registry.js │ ├── asset-scans-registry.service.js │ ├── asset-scans.service.js │ ├── modals │ │ ├── edit.modal.html │ │ ├── edit.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ └── templates │ │ └── action.cell.html │ ├── assets │ ├── assets-registry.html │ ├── assets-registry.js │ ├── assets-registry.service.js │ ├── modals │ │ ├── assign.modal.html │ │ ├── assign.modal.js │ │ ├── edit.modal.html │ │ ├── edit.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ └── templates │ │ ├── action.cell.html │ │ ├── depreciation_rate.cell.html │ │ └── percentage_depreciation.cell.html │ ├── budget │ ├── budget.html │ ├── budget.js │ ├── budget.routes.js │ ├── budget.service.js │ ├── modal │ │ ├── editAccountBudget.html │ │ ├── editAccountBudget.js │ │ ├── import.html │ │ └── import.js │ └── templates │ │ ├── acct_label.cell.html │ │ ├── acct_number.cell.html │ │ ├── acct_type.cell.html │ │ ├── action.tmpl.html │ │ ├── actuals.cell.html │ │ ├── budget.cell.html │ │ ├── budgetYTD.cell.html │ │ ├── deviationPct.cell.html │ │ ├── deviationYTDPct.cell.html │ │ ├── differenceYTD.cell.html │ │ ├── period_actuals.cell.html │ │ ├── period_actuals_header.cell.html │ │ ├── period_budget.cell.html │ │ └── period_budget_header.cell.html │ ├── cash │ ├── cash-form.service.js │ ├── cash.html │ ├── cash.js │ ├── cash.routes.js │ ├── cash.service.js │ ├── cashboxes │ │ ├── cashbox.card.html │ │ ├── cashboxes.html │ │ ├── cashboxes.js │ │ ├── cashboxes.list.html │ │ ├── cashboxes.routes.js │ │ ├── cashboxes.service.js │ │ ├── configure_currency │ │ │ ├── modal.html │ │ │ └── modal.js │ │ └── update │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ └── update.js │ ├── modals │ │ ├── barcode-scanner-modal.ctrl.js │ │ ├── invoice-modal.ctrl.js │ │ ├── invoice-modal.html │ │ ├── modal-cancel-cash.ctrl.js │ │ ├── modal-cancel-cash.html │ │ ├── select-cashbox-modal.ctrl.js │ │ ├── select-cashbox-modal.html │ │ ├── transfer-modal.ctrl.js │ │ └── transfer-modal.html │ └── payments │ │ ├── registry.html │ │ ├── registry.js │ │ └── templates │ │ ├── action.cell.html │ │ ├── amount.grid.html │ │ ├── date.cell.html │ │ ├── reference.html │ │ ├── search.modal.html │ │ └── search.modal.js │ ├── choices_list_management │ ├── choices_list_management.html │ ├── choices_list_management.js │ ├── choices_list_management.routes.js │ ├── choices_list_management.service.js │ ├── modals │ │ ├── choices_list_management.modals.html │ │ └── choices_list_management.modals.js │ └── templates │ │ ├── action.cell.tmpl.html │ │ ├── gridLabels.tmpl.html │ │ ├── gridName.tmpl.html │ │ └── is_title.tmpl.html │ ├── configuration_analysis_tools │ ├── configuration_analysis_tools.html │ ├── configuration_analysis_tools.js │ ├── configuration_analysis_tools.routes.js │ ├── configuration_analysis_tools.service.js │ ├── modals │ │ ├── configuration_analysis_tools.modal.html │ │ └── configuration_analysis_tools.modal.js │ └── templates │ │ └── action.cell.html │ ├── cost_center │ ├── allocation_bases │ │ ├── allocation_bases.html │ │ ├── allocation_bases.js │ │ ├── modals │ │ │ ├── action.modal.html │ │ │ └── action.modal.js │ │ └── templates │ │ │ ├── action.tmpl.html │ │ │ └── direct_cost.tmpl.html │ ├── allocation_basis.service.js │ ├── allocation_basis_quantity.service.js │ ├── cost_center.html │ ├── cost_center.js │ ├── cost_center.routes.js │ ├── cost_center.service.js │ ├── modals │ │ ├── cost_center.modal.html │ │ ├── cost_center.modal.js │ │ ├── createUpdateAllocationBasis.modal.html │ │ ├── createUpdateAllocationBasis.modal.js │ │ ├── edit_allocation_basis.modal.html │ │ ├── edit_allocation_basis.modal.js │ │ ├── edit_allocation_step_order.modal.html │ │ └── edit_allocation_step_order.modal.js │ └── templates │ │ ├── action.tmpl.html │ │ ├── action_edit_allocation_basis.tmpl.html │ │ ├── allocationBasis.tmpl.html │ │ ├── costCenterType.tmpl.html │ │ ├── description.cell.html │ │ ├── predefined.cell.html │ │ └── reorder_allocation_steps.tmpl.html │ ├── creditors │ ├── creditors.service.js │ └── groups │ │ ├── creditor-groups-list.html │ │ ├── creditor-groups-manage.html │ │ ├── creditor-groups.ctrl.js │ │ ├── creditor-groups.html │ │ ├── creditor-groups.routes.js │ │ └── creditor-groups.service.js │ ├── dashboard │ ├── dashboard.css │ ├── dashboard.service.js │ ├── finance.html │ ├── finance.js │ └── finance │ │ ├── cashflow.html │ │ ├── cashflow.js │ │ ├── debtorgrouplist.html │ │ ├── debtorgrouplist.js │ │ ├── debtorlist.html │ │ └── debtorlist.js │ ├── dashboards │ ├── dashboards.routes.js │ ├── dashboards.service.js │ ├── finance │ │ ├── finance.html │ │ └── finance.js │ ├── hospitalization │ │ ├── hospitalization.html │ │ └── hospitalization.js │ ├── indicators_files_registry │ │ ├── indicators_files_registry.html │ │ ├── indicators_files_registry.js │ │ ├── modals │ │ │ ├── finance.modal.html │ │ │ ├── finance.modal.js │ │ │ ├── hospitalization.modal.html │ │ │ ├── hospitalization.modal.js │ │ │ ├── search.modal.html │ │ │ ├── search.modal.js │ │ │ ├── staff.modal.html │ │ │ └── staff.modal.js │ │ └── templates │ │ │ └── action.cell.html │ └── staff │ │ ├── staff.html │ │ └── staff.js │ ├── data_collector_management │ ├── data_collector_management.html │ ├── data_collector_management.js │ ├── data_collector_management.routes.js │ ├── data_collector_management.service.js │ ├── modals │ │ ├── data_collector_management.modals.html │ │ └── data_collector_management.modals.js │ └── templates │ │ ├── action.cell.html │ │ ├── color.cell.html │ │ ├── consultation.cell.html │ │ ├── include_patient_data.cell.html │ │ └── is_related_patient.cell.html │ ├── debtors │ ├── debtor.routes.js │ ├── debtor.service.js │ ├── groups.create.js │ ├── groups.html │ ├── groups.js │ ├── groups.list.html │ ├── groups.service.js │ ├── groups.update.html │ ├── groups.update.js │ ├── invoicingFeeSubscriptions.js │ ├── subscriptions.modal.html │ └── subsidySubscriptions.js │ ├── depots │ ├── depots.html │ ├── depots.js │ ├── depots.routes.js │ ├── depots.service.js │ ├── modals │ │ ├── depot.modal.html │ │ ├── depot.modal.js │ │ ├── depotManagementSupervision.modal.html │ │ ├── depotManagementSupervision.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ └── templates │ │ ├── action.tmpl.html │ │ ├── label.tmpl.html │ │ ├── location.tmpl.html │ │ └── warehouse.tmpl.html │ ├── display_metadata │ ├── display_metadata.html │ ├── display_metadata.js │ ├── display_metadata.routes.js │ ├── display_metadata.service.js │ ├── modals │ │ ├── search.modal.html │ │ └── search.modal.js │ └── templates │ │ ├── action.cell.html │ │ ├── choice_filter.cell.html │ │ ├── date.cell.html │ │ ├── patient.cell.html │ │ ├── required.cell.html │ │ └── user.cell.html │ ├── employees │ ├── employee.service.js │ ├── employees.routes.js │ ├── registration │ │ ├── employees.html │ │ └── employees.js │ ├── registry │ │ ├── registry.html │ │ ├── registry.js │ │ ├── search.modal.html │ │ └── search.modal.js │ └── templates │ │ ├── action.cell.html │ │ ├── employee.cell.html │ │ └── locked.cell.html │ ├── enterprises │ ├── enterprise.service.js │ ├── enterprises.html │ ├── enterprises.js │ ├── enterprises.routes.js │ ├── helpdesk.service.js │ └── projects.service.js │ ├── entities │ ├── entities.html │ ├── entities.js │ ├── entities.routes.js │ ├── entities.service.js │ ├── modals │ │ ├── entity.modal.html │ │ └── entity.modal.js │ ├── templates │ │ └── action.tmpl.html │ └── types │ │ ├── categories.html │ │ └── categories.js │ ├── entity_group │ ├── entity_group.html │ ├── entity_group.js │ ├── entity_group.routes.js │ ├── entity_group.service.js │ ├── modals │ │ ├── entity_group.modal.html │ │ └── entity_group.modal.js │ └── templates │ │ └── action.tmpl.html │ ├── errors │ ├── 403.html │ ├── 404.html │ └── errors.routes.js │ ├── exchange │ ├── exchange.html │ ├── exchange.js │ ├── exchange.modal.html │ ├── exchange.modal.js │ ├── exchange.route.js │ ├── exchange.view.html │ ├── warnExchange.modal.html │ └── warnExchange.modal.js │ ├── fill_form │ ├── fill_form.html │ ├── fill_form.js │ ├── fill_form.routes.js │ ├── fill_form.service.js │ ├── modals │ │ ├── fill_form.modals.html │ │ └── fill_form.modals.js │ └── templates │ │ └── action.cell.html │ ├── fiscal │ ├── fiscal.closingBalance.html │ ├── fiscal.closingBalance.js │ ├── fiscal.html │ ├── fiscal.js │ ├── fiscal.list.html │ ├── fiscal.manage.html │ ├── fiscal.manage.js │ ├── fiscal.openingBalance.html │ ├── fiscal.openingBalance.js │ ├── fiscal.routes.js │ ├── fiscal.service.js │ └── templates │ │ ├── balance.credit.tmpl.html │ │ ├── balance.debit.tmpl.html │ │ ├── credit.tmpl.html │ │ ├── debit.tmpl.html │ │ ├── exploitation_type.tmpl.html │ │ └── modals │ │ ├── fiscal.closing.modal.html │ │ └── fiscal.closing.modal.js │ ├── functions │ ├── functions.html │ ├── functions.js │ ├── functions.routes.js │ ├── functions.service.js │ ├── modals │ │ ├── function.modal.html │ │ └── function.modal.js │ └── templates │ │ └── action.tmpl.html │ ├── fundingSources │ ├── fundingSources.ctrl.js │ ├── fundingSources.html │ ├── fundingSources.routes.js │ ├── fundingSources.service.js │ ├── modal │ │ ├── createUpdate.html │ │ └── createUpdate.js │ └── templates │ │ └── action.cell.html │ ├── general-ledger │ ├── general-ledger.ctrl.js │ ├── general-ledger.html │ ├── general-ledger.routes.js │ ├── general-ledger.service.js │ └── templates │ │ └── action.cell.html │ ├── grades │ ├── grades.html │ ├── grades.js │ ├── grades.routes.js │ ├── grades.service.js │ ├── modals │ │ ├── grade.modal.html │ │ └── grade.modal.js │ └── templates │ │ └── action.tmpl.html │ ├── holidays │ ├── holidays.html │ ├── holidays.js │ ├── holidays.routes.js │ ├── holidays.service.js │ ├── modals │ │ ├── holiday.modal.html │ │ └── holiday.modal.js │ └── templates │ │ └── action.tmpl.html │ ├── home │ ├── home.ctrl.js │ └── home.html │ ├── install │ ├── install.html │ ├── install.js │ ├── install.routes.js │ └── install.service.js │ ├── inventory │ ├── configuration │ │ ├── configuration.html │ │ ├── groups │ │ │ ├── groups.html │ │ │ ├── groups.js │ │ │ ├── groups.service.js │ │ │ └── modals │ │ │ │ ├── actions.modal.js │ │ │ │ └── actions.tmpl.html │ │ ├── types │ │ │ ├── modals │ │ │ │ ├── actions.modal.js │ │ │ │ └── actions.tmpl.html │ │ │ ├── types.html │ │ │ ├── types.js │ │ │ └── types.service.js │ │ └── units │ │ │ ├── modals │ │ │ ├── actions.modal.js │ │ │ └── actions.tmpl.html │ │ │ ├── units.html │ │ │ ├── units.js │ │ │ └── units.service.js │ ├── inventory.routes.js │ ├── inventory.service.js │ └── list │ │ ├── list.html │ │ ├── list.js │ │ ├── modals │ │ ├── actions.modal.js │ │ ├── actions.tmpl.html │ │ ├── import.modal.html │ │ ├── import.modal.js │ │ ├── log.modal.html │ │ ├── log.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ │ └── templates │ │ ├── action.cell.html │ │ ├── asset.cell.tmpl.html │ │ ├── consumable.cell.tmpl.html │ │ ├── inventory.cell.html │ │ ├── packaged.cell.tmpl.html │ │ └── sellable.cell.tmpl.html │ ├── invoices │ ├── invoices.routes.js │ ├── patientInvoice.html │ ├── patientInvoice.js │ ├── patientInvoice.service.js │ ├── patientInvoiceForm.service.js │ ├── patientInvoiceItem.service.js │ ├── registry │ │ ├── modalCreditNote.html │ │ ├── modalCreditNote.js │ │ ├── registry.html │ │ ├── registry.js │ │ ├── search.modal.html │ │ ├── search.modal.js │ │ └── templates │ │ │ ├── action.cell.html │ │ │ ├── cost.cell.tmpl.html │ │ │ ├── date.cell.html │ │ │ └── reference.html │ └── templates │ │ └── grid │ │ ├── actions.tmpl.html │ │ ├── amount.tmpl.html │ │ ├── code.tmpl.html │ │ ├── quantity.tmpl.html │ │ ├── status.tmpl.html │ │ └── unit_price.tmpl.html │ ├── invoicing-fees │ ├── invoicing-fees-create.ctrl.js │ ├── invoicing-fees-delete.ctrl.js │ ├── invoicing-fees-modal.html │ ├── invoicing-fees-update.ctrl.js │ ├── invoicing-fees.ctrl.js │ ├── invoicing-fees.html │ ├── invoicing-fees.routes.js │ ├── invoicing-fees.service.js │ └── templates │ │ └── action.cell.html │ ├── ipr_tax │ ├── configuration │ │ ├── iprTaxConfig.html │ │ └── iprTaxConfig.js │ ├── ipr_tax.html │ ├── ipr_tax.js │ ├── ipr_tax.routes.js │ ├── ipr_tax.service.js │ ├── modals │ │ ├── ipr_tax.modal.html │ │ ├── ipr_tax.modal.js │ │ ├── ipr_tax_config.modal.html │ │ └── ipr_tax_config.modal.js │ └── templates │ │ ├── action.tmpl.html │ │ └── actionConfig.tmpl.html │ ├── journal │ ├── journal.html │ ├── journal.js │ ├── journal.routes.js │ ├── journal.service.js │ ├── journal_log.html │ ├── journal_log.js │ ├── journal_log.service.js │ ├── modals │ │ ├── comment.modal.html │ │ ├── comment.modal.js │ │ ├── editTransaction.modal.html │ │ ├── editTransaction.modal.js │ │ ├── search.modal.html │ │ ├── search.modal.js │ │ ├── search_log.modal.html │ │ └── search_log.modal.js │ ├── templates │ │ ├── account.cell.html │ │ ├── created_at.cell.html │ │ ├── date.cell.html │ │ ├── date.edit.html │ │ ├── details-link.cell.html │ │ ├── entity.edit.html │ │ ├── grid.footer.html │ │ ├── hide-groups-label.cell.html │ │ ├── log.action.html │ │ ├── log.footer.html │ │ ├── log.record.html │ │ ├── log.transaction.html │ │ ├── record.cell.html │ │ ├── transaction-id.cell.html │ │ ├── transaction_type.edit.html │ │ └── transaction_type.html │ ├── trial-balance │ │ ├── errors.html │ │ ├── errors.js │ │ ├── overview.html │ │ ├── overview.js │ │ ├── structure.html │ │ ├── trial-balance.ctrl.js │ │ └── trial-balance.service.js │ └── ui-grid-edit-account.directive.js │ ├── locations │ ├── country │ │ ├── country.html │ │ ├── country.js │ │ ├── modal │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ └── templates │ │ │ └── action.cell.html │ ├── locations.html │ ├── locations.js │ ├── locations.routes.js │ ├── locations.service.js │ ├── modals │ │ ├── mergeLocations.modal.html │ │ └── mergeLocations.modal.js │ ├── province │ │ ├── modal │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ ├── province.html │ │ └── province.js │ ├── sector │ │ ├── modal │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ ├── sector.html │ │ └── sector.js │ └── village │ │ ├── modal │ │ ├── createUpdate.html │ │ └── createUpdate.js │ │ ├── village.html │ │ └── village.js │ ├── login │ ├── login.html │ ├── login.js │ └── login.routes.js │ ├── multiple_payroll │ ├── modals │ │ ├── config.modal.html │ │ ├── config.modal.js │ │ ├── search.modal.html │ │ ├── search.modal.js │ │ ├── waitingListConfirmation.html │ │ └── waitingListConfirmation.js │ ├── multiple_payroll.html │ ├── multiple_payroll.js │ ├── multiple_payroll.routes.js │ ├── multiple_payroll.service.js │ └── templates │ │ ├── action.tmpl.html │ │ └── cellStatus.tmpl.html │ ├── multiple_payroll_indice │ ├── modals │ │ ├── config.modal.html │ │ ├── config.modal.js │ │ ├── import.modal.html │ │ ├── import.modal.js │ │ ├── parameter.modal.html │ │ ├── parameter.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ ├── multiple_payroll.routes.js │ ├── multiple_payroll.service.js │ ├── multiple_payroll_indice.html │ ├── multiple_payroll_indice.js │ └── templates │ │ ├── action.tmpl.html │ │ └── cellStatus.tmpl.html │ ├── offdays │ ├── modals │ │ ├── offday.modal.html │ │ └── offday.modal.js │ ├── offdays.html │ ├── offdays.js │ ├── offdays.routes.js │ ├── offdays.service.js │ └── templates │ │ └── action.tmpl.html │ ├── patients │ ├── documents │ │ ├── documents.html │ │ ├── documents.js │ │ ├── documents.service.js │ │ ├── modals │ │ │ ├── documents.modal.html │ │ │ └── documents.modal.js │ │ └── views │ │ │ ├── documentView.html │ │ │ └── documentView.js │ ├── edit │ │ ├── PatientGroupService.js │ │ ├── edit.html │ │ ├── edit.js │ │ ├── updateDebtorGroup.modal.js │ │ ├── updateDebtorGroup.tmpl.html │ │ ├── updatePatientGroups.modal.js │ │ └── updatePatientGroups.tmpl.html │ ├── groups │ │ ├── groups.html │ │ ├── groups.js │ │ ├── groups.service.js │ │ ├── modal │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ └── templates │ │ │ └── action.cell.html │ ├── lookupReturningPatient.modal.html │ ├── lookupReturningPatient.modal.js │ ├── patients.routes.js │ ├── patients.service.js │ ├── record │ │ ├── bh-find-document.component.js │ │ ├── bh-find-document.html │ │ ├── bh-patient-financial-activity.html │ │ ├── bh-patient-medical-sheet.html │ │ ├── bh-patient-visit.component.js │ │ ├── bh-patient-visit.html │ │ ├── patient-record.ctrl.js │ │ └── patient-record.html │ ├── registration │ │ ├── registration.html │ │ └── registration.js │ ├── registry │ │ ├── editPatientGroup.html │ │ ├── editPatientGroup.js │ │ ├── modals │ │ │ ├── findDuplicatePatients.modal.html │ │ │ ├── findDuplicatePatients.modal.js │ │ │ ├── mergePatients.modal.html │ │ │ └── mergePatients.modal.js │ │ ├── registry.html │ │ ├── registry.js │ │ ├── search.modal.html │ │ └── search.modal.js │ ├── templates │ │ └── action.cell.html │ └── visits │ │ ├── modals │ │ ├── search.modal.html │ │ ├── search.modal.js │ │ ├── transfer.modal.html │ │ ├── transfer.modal.js │ │ ├── visits-modal.ctrl.js │ │ └── visits.modal.html │ │ ├── registry.html │ │ ├── registry.js │ │ ├── templates │ │ ├── action.cell.html │ │ ├── end_date.cell.html │ │ └── type.cell.html │ │ └── visits.service.js │ ├── payroll │ ├── account_configuration │ │ ├── configuration.html │ │ ├── configuration.js │ │ ├── configuration.routes.js │ │ ├── configuration.service.js │ │ ├── modals │ │ │ ├── account.modal.html │ │ │ └── account.modal.js │ │ └── templates │ │ │ └── action.tmpl.html │ ├── employee_configuration │ │ ├── configuration.html │ │ ├── configuration.js │ │ ├── configuration.routes.js │ │ ├── configuration.service.js │ │ ├── modals │ │ │ ├── employee.modal.html │ │ │ └── employee.modal.js │ │ └── templates │ │ │ └── action.tmpl.html │ ├── modals │ │ ├── payroll.modal.html │ │ └── payroll.modal.js │ ├── payroll.html │ ├── payroll.js │ ├── payroll.routes.js │ ├── payroll.service.js │ ├── rubric_configuration │ │ ├── configuration.html │ │ ├── configuration.js │ │ ├── configuration.routes.js │ │ ├── configuration.service.js │ │ ├── modals │ │ │ ├── config.modal.html │ │ │ └── config.modal.js │ │ └── templates │ │ │ └── action.tmpl.html │ ├── rubrics │ │ ├── modals │ │ │ ├── rubric.modal.html │ │ │ └── rubric.modal.js │ │ ├── rubrics.html │ │ ├── rubrics.js │ │ ├── rubrics.routes.js │ │ ├── rubrics.service.js │ │ └── templates │ │ │ ├── action.tmpl.html │ │ │ ├── allowances.tmpl.html │ │ │ ├── associated.tmpl.html │ │ │ ├── discount.tmpl.html │ │ │ ├── index.tmpl.html │ │ │ ├── index_type.tmpl.html │ │ │ ├── ipr.tmpl.html │ │ │ ├── membership.tmpl.html │ │ │ ├── percent.tmpl.html │ │ │ ├── seniority.tmpl.html │ │ │ ├── social.tmpl.html │ │ │ └── tax.tmpl.html │ ├── settings │ │ ├── settings.html │ │ ├── settings.js │ │ ├── settings.routes.js │ │ └── settings.service.js │ ├── staffing_indice │ │ ├── modal │ │ │ ├── createUpdate.html │ │ │ ├── createUpdate.js │ │ │ ├── funcitonIndiceModal.html │ │ │ ├── functionIndiceModal.js │ │ │ ├── gradeIndiceModal.html │ │ │ ├── gradeIndiceModal.js │ │ │ ├── gradeRubricsModal.html │ │ │ ├── gradeRubricsModal.js │ │ │ ├── search.modal.html │ │ │ └── search.modal.js │ │ ├── staffingIndice.ctrl.js │ │ ├── staffingIndice.html │ │ ├── staffingIndice.routes.js │ │ ├── staffingIndice.service.js │ │ └── templates │ │ │ ├── action.cell.html │ │ │ ├── functionIndice.action.cell.html │ │ │ ├── gradeIndice.action.cell.html │ │ │ └── gradeRubrics.action.cell.html │ ├── templates │ │ └── action.tmpl.html │ └── weekend_configuration │ │ ├── configuration.html │ │ ├── configuration.js │ │ ├── configuration.routes.js │ │ ├── configuration.service.js │ │ ├── modals │ │ ├── weekEnd.modal.html │ │ └── weekEnd.modal.js │ │ └── templates │ │ └── action.tmpl.html │ ├── prices │ ├── modal │ │ ├── createItems.html │ │ ├── createItems.js │ │ ├── createUpdate.html │ │ ├── createUpdate.js │ │ ├── import.html │ │ └── import.js │ ├── prices.html │ ├── prices.js │ ├── prices.routes.js │ ├── prices.service.js │ └── templates │ │ ├── action.cell.html │ │ ├── delete_price_item.tmpl.html │ │ ├── itemsNumber.cell.html │ │ ├── price_item_value.tmpl.html │ │ └── subscribedGroups.cell.html │ ├── purchases │ ├── create │ │ ├── PurchaseOrderForm.js │ │ ├── PurchaseOrderItemService.js │ │ ├── createUpdate.html │ │ ├── createUpdate.js │ │ └── templates │ │ │ ├── actions.tmpl.html │ │ │ ├── amount.tmpl.html │ │ │ ├── code.tmpl.html │ │ │ ├── packaging.cell.tmpl.html │ │ │ ├── price.tmpl.html │ │ │ ├── quantity.tmpl.html │ │ │ └── status.tmpl.html │ ├── detailed │ │ ├── registry.html │ │ └── registry.js │ ├── modals │ │ ├── search.modal.js │ │ ├── search.tmpl.html │ │ ├── status.js │ │ └── status.tmpl.html │ ├── purchases.routes.js │ ├── purchases.service.js │ ├── purchasesDetailed.service.js │ ├── registry │ │ ├── registry.html │ │ └── registry.js │ └── templates │ │ ├── action.cell.html │ │ ├── cellCost.tmpl.html │ │ ├── cellStatus.tmpl.html │ │ ├── cellStatusDetailed.tmpl.html │ │ ├── packaged.tmpl.html │ │ ├── purchase_price.tmpl.html │ │ └── uuid.tmpl.html │ ├── reports │ ├── archive.html │ ├── baseReports.service.js │ ├── generate │ │ ├── account_reference │ │ │ ├── account_reference.config.js │ │ │ └── account_reference.html │ │ ├── account_report │ │ │ ├── account_report.config.js │ │ │ └── account_report.html │ │ ├── account_report_multiple │ │ │ ├── account_report_multiple.config.js │ │ │ └── account_report_multiple.html │ │ ├── aged_creditors │ │ │ ├── aged_creditors.config.js │ │ │ └── aged_creditors.html │ │ ├── aged_debtors │ │ │ ├── aged_debtors.config.js │ │ │ └── aged_debtors.html │ │ ├── aggregated_stock_consumption │ │ │ ├── aggregated_stock_consumption.config.js │ │ │ └── aggregated_stock_consumption.html │ │ ├── analysis_auxiliary_cashboxes │ │ │ ├── analysis_auxiliary_cashboxes.config.js │ │ │ └── analysis_auxiliary_cashboxes.html │ │ ├── annual_clients_report │ │ │ ├── annual_clients_report.html │ │ │ └── annual_clients_report.js │ │ ├── avg_med_costs_per_patient │ │ │ ├── avg_med_costs_per_patient.html │ │ │ └── avg_med_costs_per_patient.js │ │ ├── balance_report │ │ │ ├── balance_report.config.js │ │ │ └── balance_report.html │ │ ├── balance_sheet_report │ │ │ ├── balance_sheet_report.config.js │ │ │ └── balance_sheet_report.html │ │ ├── budget_report │ │ │ ├── budget_report.config.js │ │ │ └── budget_report.html │ │ ├── cash_report │ │ │ ├── cash_report.config.js │ │ │ └── cash_report.html │ │ ├── cashflow │ │ │ ├── cashflow.config.js │ │ │ └── cashflow.html │ │ ├── cashflow_by_service │ │ │ ├── cashflow_by_service.config.js │ │ │ └── cashflow_by_service.html │ │ ├── client_debts │ │ │ ├── client_debts.config.js │ │ │ └── client_debts.html │ │ ├── client_support │ │ │ ├── client_support.config.js │ │ │ └── client_support.html │ │ ├── configurable_analysis_report │ │ │ ├── configurable_analysis_report.config.js │ │ │ └── configurable_analysis_report.html │ │ ├── cost_center │ │ │ ├── cost_center.config.js │ │ │ └── cost_center.html │ │ ├── cost_center_accounts │ │ │ ├── cost_center_accounts.config.js │ │ │ └── cost_center_accounts.html │ │ ├── cost_center_income_and_expense │ │ │ ├── cost_center_income_and_expense.config.js │ │ │ └── cost_center_income_and_expense.html │ │ ├── cost_center_step_down │ │ │ ├── cost_center_step_down.config.js │ │ │ └── cost_center_step_down.html │ │ ├── data_kit │ │ │ ├── data_kit.config.js │ │ │ └── data_kit.html │ │ ├── debtor_summary │ │ │ ├── debtor_summary.config.js │ │ │ └── debtor_summary.html │ │ ├── employee_standing │ │ │ ├── employee_standing.html │ │ │ └── employee_standing.js │ │ ├── indicators_report │ │ │ ├── indicators_report.config.js │ │ │ └── indicators_report.html │ │ ├── inventory_changes │ │ │ ├── inventory_changes.config.js │ │ │ └── inventory_changes.html │ │ ├── inventory_report │ │ │ ├── inventory_report.config.js │ │ │ └── inventory_report.html │ │ ├── invoiced_received_stock │ │ │ ├── invoiced_received_stock.html │ │ │ └── invoiced_received_stock.js │ │ ├── lost_stock_report │ │ │ ├── lost_stock_report.html │ │ │ └── lost_stock_report.js │ │ ├── monthly_balance │ │ │ ├── monthly_balance.config.js │ │ │ └── monthly_balance.html │ │ ├── monthly_consumption_report │ │ │ ├── monthly_consumption_report.config.js │ │ │ └── monthly_consumption_report.html │ │ ├── needed_inventory_scans │ │ │ ├── needed_inventory_scans.html │ │ │ └── needed_inventory_scans.js │ │ ├── ohada_balance_sheet_report │ │ │ ├── ohada_balance_sheet_report.config.js │ │ │ └── ohada_balance_sheet_report.html │ │ ├── ohada_profit_loss │ │ │ ├── ohada_profit_loss.html │ │ │ └── ohada_profit_loss_report.config.js │ │ ├── open_debtors │ │ │ ├── open_debtors.config.js │ │ │ ├── open_debtors.html │ │ │ └── open_debtors.service.js │ │ ├── operating │ │ │ ├── operating.config.js │ │ │ └── operating.html │ │ ├── patient_standing │ │ │ ├── patient_standing.html │ │ │ └── patient_standing.js │ │ ├── purchase_order_analysis │ │ │ ├── purchase_order_analysis.config.js │ │ │ └── purchase_order_analysis.html │ │ ├── purchase_prices │ │ │ ├── purchase_prices.config.js │ │ │ └── purchase_prices.html │ │ ├── realized_profit │ │ │ ├── realized_profit.config.js │ │ │ └── realized_profit.html │ │ ├── recovery_capacity │ │ │ ├── recovery_capacity.config.js │ │ │ └── recovery_capacity.html │ │ ├── rumer_report │ │ │ ├── rumer_report.config.js │ │ │ └── rumer_report.html │ │ ├── satisfaction_rate_report │ │ │ ├── satisfaction_rate_report.config.js │ │ │ └── satisfaction_rate_report.html │ │ ├── stock_consumption_graph_report │ │ │ ├── stock_consumption_graph_report.config.js │ │ │ └── stock_consumption_graph_report.html │ │ ├── stock_entry │ │ │ ├── stock_entry.config.js │ │ │ └── stock_entry.html │ │ ├── stock_exit │ │ │ ├── stock_exit.config.js │ │ │ └── stock_exit.html │ │ ├── stock_expiration_report │ │ │ ├── stock_expiration_report.config.js │ │ │ └── stock_expiration_report.html │ │ ├── stock_movement_report │ │ │ ├── stock_movement_report.config.js │ │ │ └── stock_movement_report.html │ │ ├── stock_sheet │ │ │ ├── stock_sheet.config.js │ │ │ └── stock_sheet.html │ │ ├── stock_value │ │ │ ├── stock_value.config.js │ │ │ └── stock_value.html │ │ ├── system_usage_stat │ │ │ ├── system_usage_stat.config.js │ │ │ └── system_usage_stat.html │ │ ├── unpaid_invoice_payments │ │ │ ├── unpaid_invoice_payments.config.js │ │ │ └── unpaid_invoice_payments.html │ │ └── visit_report │ │ │ ├── visit_report.config.js │ │ │ └── visit_report.html │ ├── modals │ │ ├── reports.email.html │ │ └── reports.email.js │ ├── reports.html │ ├── reports.js │ ├── reports.routes.js │ ├── reports.save.js │ └── reportsArchive.js │ ├── required_inventory_scans │ ├── modals │ │ ├── edit.modal.html │ │ ├── edit.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ ├── required-inventory-scans-registry.html │ ├── required-inventory-scans-registry.js │ ├── required-inventory-scans-registry.service.js │ ├── required-inventory-scans.service.js │ └── templates │ │ └── action.cell.html │ ├── roles │ ├── createUpdate.html │ ├── createUpdate.js │ ├── modal │ │ ├── roleActions.html │ │ ├── roles.actions.js │ │ ├── rolesPermissions.html │ │ ├── rolesPermissions.js │ │ ├── userRole.html │ │ └── userRole.js │ ├── roles.ctrl.js │ ├── roles.html │ ├── roles.routes.js │ ├── roles.service.js │ └── templates │ │ ├── action.cell.html │ │ └── userAssignedRole.cell.html │ ├── services │ ├── modals │ │ ├── service.modal.html │ │ └── service.modal.js │ ├── services.html │ ├── services.js │ ├── services.routes.js │ ├── services.service.js │ └── templates │ │ └── action.tmpl.html │ ├── settings │ ├── settings.ctrl.js │ ├── settings.html │ └── settings.routes.js │ ├── shipment │ ├── create-shipment.html │ ├── create-shipment.js │ ├── modals │ │ ├── edit-container.modal.html │ │ ├── edit-container.modal.js │ │ ├── ready-for-shipment.modal.html │ │ ├── ready-for-shipment.modal.js │ │ ├── search.modal.html │ │ ├── search.modal.js │ │ ├── shipment-completed.modal.html │ │ ├── shipment-completed.modal.js │ │ ├── shipment-delivered.modal.html │ │ ├── shipment-delivered.modal.js │ │ ├── shipment-document.modal.html │ │ ├── shipment-document.modal.js │ │ ├── tracking-log.modal.html │ │ └── tracking-log.modal.js │ ├── shipment-container.service.js │ ├── shipment.filters.js │ ├── shipment.html │ ├── shipment.js │ ├── shipment.modal.service.js │ ├── shipment.routes.js │ ├── shipment.service.js │ └── templates │ │ ├── action.tmpl.html │ │ ├── checkbox.tmpl.html │ │ ├── container.tmpl.html │ │ ├── packaging.cell.tmpl.html │ │ ├── quantity.tmpl.html │ │ ├── shipmentGridFooter.tmpl.html │ │ └── unit_weight.tmpl.html │ ├── stock │ ├── LotItem.service.js │ ├── StockEntryExitType.service.js │ ├── StockExitForm.service.js │ ├── StockExitFormHelper.service.js │ ├── StockFilterer.service.js │ ├── StockForm.service.js │ ├── StockItem.service.js │ ├── StockModal.service.js │ ├── aggregated_consumption │ │ ├── aggregated_consumption.html │ │ ├── aggregated_consumption.js │ │ ├── modals │ │ │ ├── consumption_lot.modal.html │ │ │ └── consumption_lot.modal.js │ │ └── templates │ │ │ ├── consumed.tmpl.html │ │ │ ├── days_stock_out.tmpl.html │ │ │ ├── lost.tmpl.html │ │ │ ├── lot_aggregate.tmpl.html │ │ │ ├── lot_movement_date.tmpl.html │ │ │ ├── lot_movement_start_date.tmpl.html │ │ │ ├── quantity_consumed.tmpl.html │ │ │ ├── quantity_lost.tmpl.html │ │ │ ├── quantity_remain.tmpl.html │ │ │ ├── quantity_stock.tmpl.html │ │ │ └── status.tmpl.html │ ├── dashboard │ │ ├── dashboard.html │ │ ├── dashboard.js │ │ ├── dashboard.routes.js │ │ └── dashboard.stock.service.js │ ├── depot-selection.ctrl.js │ ├── depot-selection.modal.html │ ├── entry │ │ ├── entry.html │ │ ├── entry.js │ │ ├── modals │ │ │ ├── AggregateConsumptionModalForm.service.js │ │ │ ├── StockEntryModalForm.service.js │ │ │ ├── findPurchase.modal.html │ │ │ ├── findPurchase.modal.js │ │ │ ├── findTransfer.modal.html │ │ │ ├── findTransfer.modal.js │ │ │ ├── generateAssetTags.modal.html │ │ │ ├── generateAssetTags.modal.js │ │ │ ├── lots.modal.html │ │ │ ├── lots.modal.js │ │ │ └── templates │ │ │ │ ├── lot.acquisition_date.tmpl.html │ │ │ │ ├── lot.actions.tmpl.html │ │ │ │ ├── lot.barcode.tmpl.html │ │ │ │ ├── lot.expiration.tmpl.html │ │ │ │ ├── lot.input.tmpl.html │ │ │ │ ├── lot.number_box.tmpl.html │ │ │ │ ├── lot.number_package.tmpl.html │ │ │ │ ├── lot.quantity.tmpl.html │ │ │ │ ├── lot.status.tmpl.html │ │ │ │ ├── selectLot.tmpl.html │ │ │ │ ├── serial_number.input.tmpl.html │ │ │ │ ├── transfer.row.tmpl.html │ │ │ │ ├── transfer.status.tmpl.html │ │ │ │ └── transfer_view.tmpl.html │ │ └── templates │ │ │ ├── actions.tmpl.html │ │ │ ├── code.tmpl.html │ │ │ ├── description.tmpl.html │ │ │ ├── lot.tmpl.html │ │ │ ├── pack_info.tmpl.html │ │ │ ├── packaging.cell.tmpl.html │ │ │ ├── quantity.tmpl.html │ │ │ └── status.tmpl.html │ ├── exit │ │ ├── exit.html │ │ ├── exit.js │ │ ├── modals │ │ │ ├── RequisitionHelper.service.js │ │ │ ├── findDepot.modal.html │ │ │ ├── findDepot.modal.js │ │ │ ├── findPatient.modal.html │ │ │ ├── findPatient.modal.js │ │ │ ├── findService.modal.html │ │ │ └── findService.modal.js │ │ └── templates │ │ │ ├── actions.tmpl.html │ │ │ ├── amount.tmpl.html │ │ │ ├── available.tmpl.html │ │ │ ├── code.tmpl.html │ │ │ ├── description.tmpl.html │ │ │ ├── expiration.tmpl.html │ │ │ ├── lot.tmpl.html │ │ │ ├── packaging.cell.tmpl.html │ │ │ ├── quantity.tmpl.html │ │ │ └── status.tmpl.html │ ├── import │ │ ├── stockImport.html │ │ └── stockImport.js │ ├── inventories │ │ ├── modals │ │ │ ├── amc.modal.html │ │ │ ├── amc.modal.js │ │ │ ├── editLotModal.html │ │ │ ├── editLotModal.js │ │ │ ├── search.modal.html │ │ │ └── search.modal.js │ │ ├── registry.html │ │ ├── registry.js │ │ └── templates │ │ │ ├── appro.cell.html │ │ │ ├── cmm.cell.html │ │ │ ├── depot.cell.html │ │ │ ├── editLot.action.html │ │ │ ├── inventory.action.html │ │ │ ├── inventory.cell.html │ │ │ ├── shipment.tmpl.html │ │ │ ├── status.cell.html │ │ │ ├── unit.tmpl.html │ │ │ └── warning.cell.html │ ├── inventory-adjustment │ │ ├── inventory-adjustment.html │ │ ├── inventory-adjustment.js │ │ └── templates │ │ │ ├── difference.tmpl.html │ │ │ └── quantity.tmpl.html │ ├── lots-duplicates │ │ ├── lots-duplicates.html │ │ ├── lots-duplicates.js │ │ └── templates │ │ │ └── action.cell.html │ ├── lots │ │ ├── modals │ │ │ ├── duplicates.modal.html │ │ │ ├── duplicates.modal.js │ │ │ ├── edit.modal.html │ │ │ ├── edit.modal.js │ │ │ ├── historic.modal.html │ │ │ ├── historic.modal.js │ │ │ ├── schedule.modal.html │ │ │ ├── schedule.modal.js │ │ │ ├── search.modal.html │ │ │ └── search.modal.js │ │ ├── registry.html │ │ ├── registry.js │ │ ├── registry.service.js │ │ └── templates │ │ │ ├── action.cell.html │ │ │ ├── lifetime.cell.html │ │ │ ├── lot_lifetime.cell.html │ │ │ ├── pack_info.tmpl.html │ │ │ ├── packaging.cell.tmpl.html │ │ │ ├── reference_number.cell.html │ │ │ ├── risk.cell.html │ │ │ ├── risk_quantity.cell.html │ │ │ ├── row.expired.html │ │ │ └── tags.cell.html │ ├── movements │ │ ├── modals │ │ │ ├── search.modal.html │ │ │ └── search.modal.js │ │ ├── registry.html │ │ ├── registry.js │ │ └── templates │ │ │ ├── action.cell.html │ │ │ ├── created_at.cell.html │ │ │ ├── date.cell.html │ │ │ ├── io.cell.html │ │ │ └── reference.cell.html │ ├── packaging.modal.html │ ├── packaging.modal.js │ ├── requisition │ │ ├── modals │ │ │ ├── action.modal.html │ │ │ ├── action.modal.js │ │ │ ├── search.modal.html │ │ │ ├── search.modal.js │ │ │ ├── status.js │ │ │ ├── status.tmpl.html │ │ │ ├── validation.modal.html │ │ │ └── validation.modal.js │ │ ├── registry.html │ │ ├── registry.js │ │ └── templates │ │ │ ├── action.cell.html │ │ │ ├── available.cell.html │ │ │ ├── description.cell.html │ │ │ ├── inventory.cell.html │ │ │ ├── old_quantity.cell.html │ │ │ ├── quantity.cell.html │ │ │ ├── reference.cell.html │ │ │ ├── remove.cell.html │ │ │ ├── requestor.cell.html │ │ │ ├── status.cell.html │ │ │ └── status.filter.html │ ├── settings │ │ ├── stock-settings.html │ │ ├── stock-settings.js │ │ └── stock-settings.service.js │ └── stock.routes.js │ ├── subsidies │ ├── modals │ │ ├── subsidies.modal.html │ │ └── subsidies.modal.js │ ├── subsidies.html │ ├── subsidies.js │ ├── subsidies.routes.js │ ├── subsidies.service.js │ └── templates │ │ └── action.tmpl.html │ ├── suppliers │ ├── modal │ │ ├── createUpdate.html │ │ └── createUpdate.js │ ├── suppliers.html │ ├── suppliers.js │ ├── suppliers.routes.js │ ├── suppliers.service.js │ └── templates │ │ └── action.cell.html │ ├── survey_form │ ├── modals │ │ ├── survey_form.modals.html │ │ └── survey_form.modals.js │ ├── survey_form.html │ ├── survey_form.js │ ├── survey_form.routes.js │ ├── survey_form.service.js │ └── templates │ │ ├── action.cell.html │ │ ├── choice_filter.cell.html │ │ └── required.cell.html │ ├── tags │ ├── modal │ │ ├── createUpdate.html │ │ └── createUpdate.js │ ├── tags.ctrl.js │ ├── tags.html │ ├── tags.routes.js │ ├── tags.service.js │ └── templates │ │ ├── action.cell.html │ │ └── name.cell.html │ ├── templates │ ├── actionsDropdown.html │ ├── barcode-scanner-modal.ctrl.js │ ├── barcode-scanner-modal.html │ ├── bhAccountConfigSelect.tmpl.html │ ├── bhAccountReferenceSelect.tmpl.html │ ├── bhAccountReferenceTypeSelect.tmpl.html │ ├── bhAccountSelect.tmpl.html │ ├── bhAccountSelectMultiple.tmpl.html │ ├── bhAccountTypeaheadInline.html │ ├── bhAddItem.tmpl.html │ ├── bhAnalysisToolTypeSelect.tmpl.html │ ├── bhBarcodeScanner.html │ ├── bhCard.tmpl.html │ ├── bhCardList.tmpl.html │ ├── bhCashboxSelect.tmpl.html │ ├── bhCashboxUsers.tmpl.html │ ├── bhChoiceListMultipleSelect.tmpl.html │ ├── bhChoiceListSelect.tmpl.html │ ├── bhCurrencyInput.tmpl.html │ ├── bhCurrencySelect.tmpl.html │ ├── bhDataCollector.tmpl.html │ ├── bhDateEditor.tmpl.html │ ├── bhDateInterval.tmpl.html │ ├── bhDatePicker.tmpl.html │ ├── bhDatePickerAction.tmpl.html │ ├── bhDebtorGroupHistory.tmpl.html │ ├── bhDebtorGroupSelect.tmpl.html │ ├── bhEmployeeConfigSelect.tmpl.html │ ├── bhEmployeeSelect.tmpl.html │ ├── bhEntityTypeahead.html │ ├── bhExchange.tmpl.html │ ├── bhExchangeRate.tmpl.html │ ├── bhExport.tmpl.html │ ├── bhFilter.tmpl.html │ ├── bhFilterToggle.tmpl.html │ ├── bhFilters.tmpl.html │ ├── bhFindInvoice.tmpl.html │ ├── bhFindPatient.tmpl.html │ ├── bhFiscalPeriodSelect.tmpl.html │ ├── bhFiscalYearSelect.tmpl.html │ ├── bhFluxSelect.tmpl.html │ ├── bhFonctionSelect.tmpl.html │ ├── bhGradeSelect.tmpl.html │ ├── bhGridLoadingIndicator.tmpl.html │ ├── bhHiddenField.html │ ├── bhInputText.tmpl.html │ ├── bhInventoryGroupSelect.tmpl.html │ ├── bhInventorySelect.tmpl.html │ ├── bhInventoryTypeSelect.tmpl.html │ ├── bhIprConfigSelect.tmpl.html │ ├── bhIprScale.tmpl.html │ ├── bhLocationSelect.tmpl.html │ ├── bhMultipleCashBoxSelect.tmpl.html │ ├── bhMultipleDepotSelect.tmpl.html │ ├── bhPatientGroupSelect.tmpl.html │ ├── bhPayrollPeriodSelect.tmpl.html │ ├── bhPayrollStatusSelect.tmpl.html │ ├── bhPercentageInput.tmpl.html │ ├── bhPeriod.tmpl.html │ ├── bhPeriodSelect.tmpl.html │ ├── bhPeriodSelection.html │ ├── bhProjectSelect.tmpl.html │ ├── bhPurchaseOrderSelect.tmpl.html │ ├── bhPurchaseStatusSelect.tmpl.html │ ├── bhReceiptCurrency.tmpl.html │ ├── bhRecordTypeahead.html │ ├── bhReferenceAccountMultipleSelect.tmpl.html │ ├── bhReferenceLink.tmpl.html │ ├── bhRenderOption.tmpl.html │ ├── bhRendererDropdown.tmpl.html │ ├── bhReportPreview.tmpl.html │ ├── bhRequisitionSelect.tmpl.html │ ├── bhRubricConfigSelect.tmpl.html │ ├── bhRubricSelect.tmpl.html │ ├── bhServiceSelect.tmpl.html │ ├── bhServicesMultipleSelect.tmpl.html │ ├── bhShowPendingTransfers.tmpl.html │ ├── bhSnapShot.html │ ├── bhStockEntryExitType.tmpl.html │ ├── bhStockFilterExhausted.tmpl.html │ ├── bhStockPanelAtRiskExpiration.tmpl.html │ ├── bhStockPanelAtRiskOutStock.tmpl.html │ ├── bhStockPanelExpired.tmpl.html │ ├── bhStockPanelMinimumReached.tmpl.html │ ├── bhStockPanelOutOfStock.tmpl.html │ ├── bhStockPanelOverMax.tmpl.html │ ├── bhStockPanelRequirePurchaseOrder.tmpl.html │ ├── bhSupplierSelect.tmpl.html │ ├── bhSurveyFormSelect.tmpl.html │ ├── bhSurveyFormTypeSelect.tmpl.html │ ├── bhSurveyListSelect.tmpl.html │ ├── bhTitleSelect.tmpl.html │ ├── bhTransactionTypeSelect.tmpl.html │ ├── bhUser.tmpl.html │ ├── bhUserSelect.tmpl.html │ ├── bhWeekendConfigSelect.tmpl.html │ ├── bhYesNoRadios.tmpl.html │ ├── dates.messages.tmpl.html │ ├── depotList.tmpl.html │ ├── entityList.tmpl.html │ ├── grid │ │ ├── amount.html │ │ ├── balance.cell.html │ │ ├── credit.cell.html │ │ ├── credit_equiv.cell.html │ │ ├── debit.cell.html │ │ ├── debit_equiv.cell.html │ │ ├── error.row.html │ │ ├── highlight.row.html │ │ ├── linkFilePDF.tmpl.html │ │ ├── patient.cell.html │ │ └── voucherType.tmpl.html │ ├── inventoryArticles.tmpl.html │ ├── messages.tmpl.html │ ├── modals │ │ ├── alert.modal.html │ │ ├── alert.modal.js │ │ ├── columnConfig.modal.html │ │ ├── columnConfig.modal.js │ │ ├── confirm.modal.html │ │ ├── confirm.modal.js │ │ ├── confirmDialog.modal.html │ │ ├── confirmDialog.modal.js │ │ ├── cronEmailModal.html │ │ ├── cronEmailModal.js │ │ ├── export.modal.html │ │ ├── export.modal.js │ │ ├── location.modal.html │ │ ├── location.modal.js │ │ ├── project.modal.html │ │ ├── project.modal.js │ │ ├── report.save.html │ │ ├── reports.modal.html │ │ ├── reports.modal.js │ │ ├── transactionType.modal.html │ │ └── transactionType.modal.js │ ├── navigation.tmpl.html │ ├── patientList.tmpl.html │ ├── popover │ │ ├── cashflowOption.tmpl.html │ │ ├── debtorGroupInfo.tmpl.html │ │ ├── patientinfo.tmpl.html │ │ ├── periodInfo.tmpl.html │ │ └── supplierinfo.tmpl.html │ ├── row.negative.html │ └── row.reversed.html │ ├── titles │ ├── modals │ │ ├── title.modal.html │ │ └── title.modal.js │ ├── templates │ │ ├── action.tmpl.html │ │ └── medical.cell.html │ ├── titles.html │ ├── titles.js │ ├── titles.routes.js │ └── titles.service.js │ ├── transaction-type │ ├── templates │ │ └── fixedStatus.cell.html │ ├── transaction-type-store.service.js │ ├── transaction-type.ctrl.js │ ├── transaction-type.html │ ├── transaction-type.routes.js │ └── transaction-type.service.js │ ├── users │ ├── UserCashBoxManagementModal.html │ ├── UserCashboxManagementModal.js │ ├── UserDepotManagementModal.html │ ├── UserDepotManagementModal.js │ ├── UserDepotSupervisionModal.html │ ├── UserDepotSupervisionModal.js │ ├── UserEditPasswordModal.html │ ├── UserEditPasswordModal.js │ ├── search.modal.html │ ├── search.modal.js │ ├── templates │ │ ├── grid │ │ │ └── action.cell.html │ │ └── password.policy.html │ ├── user.modal.html │ ├── user.modal.js │ ├── users.html │ ├── users.js │ ├── users.routes.js │ └── users.service.js │ ├── voucher-tools │ ├── README.md │ ├── correct │ │ ├── voucher-tools.correct.component.js │ │ └── voucher-tools.correct.tmpl.html │ ├── reverse │ │ ├── voucher-tools.reverse.component.js │ │ └── voucher-tools.reverse.tmpl.html │ ├── shared │ │ ├── voucher-tools.badge.component.js │ │ └── voucher-tools.badge.tmpl.html │ └── voucher-tools.service.js │ ├── vouchers │ ├── complex-voucher.ctrl.js │ ├── complex-voucher.html │ ├── find-entity.service.js │ ├── find-reference.service.js │ ├── modals │ │ ├── reverse-voucher.modal.html │ │ ├── reverse-voucher.modal.js │ │ ├── scanBarcode.modal.js │ │ ├── search.modal.html │ │ └── search.modal.js │ ├── simple-voucher.ctrl.js │ ├── simple-voucher.html │ ├── templates │ │ ├── account.grid.tmpl.html │ │ ├── action.cell.html │ │ ├── amount.grid.tmpl.html │ │ ├── amount_paiment.grid.tmpl.html │ │ ├── credit.grid.tmpl.html │ │ ├── date.cell.html │ │ ├── debit.grid.tmpl.html │ │ ├── entity.grid.tmpl.html │ │ ├── reference.grid.tmpl.html │ │ ├── remove.grid.tmpl.html │ │ ├── status.grid.tmpl.html │ │ └── uuid.tmpl.html │ ├── toolkit.service.js │ ├── toolkit │ │ ├── advances_loans_installments │ │ │ ├── advances_loans_installments.js │ │ │ └── advances_loans_installments.modal.html │ │ ├── cash_transfer │ │ │ ├── cash_transfer.html │ │ │ └── cash_transfer.js │ │ ├── convention_payment │ │ │ ├── convention_payment.js │ │ │ └── convention_payment.modal.html │ │ ├── generic_expense │ │ │ ├── generic_expense.html │ │ │ └── generic_expense.js │ │ ├── generic_income │ │ │ ├── generic_income.html │ │ │ └── generic_income.js │ │ ├── patient_fled │ │ │ ├── patient_fled.js │ │ │ └── patient_fled.modal.html │ │ ├── payment_employee │ │ │ ├── payment_employee.js │ │ │ └── payment_employee.modal.html │ │ └── support_patient │ │ │ ├── support_patient.js │ │ │ └── support_patient.modal.html │ ├── voucher-form.service.js │ ├── voucher-item.service.js │ ├── voucher-registry.ctrl.js │ ├── voucher-registry.html │ ├── vouchers.routes.js │ └── vouchers.service.js │ └── ward │ ├── configuration │ ├── bed │ │ ├── bed.html │ │ ├── bed.js │ │ ├── bed.service.js │ │ ├── modals │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ └── templates │ │ │ ├── action.tmpl.html │ │ │ └── bed.tmpl.html │ ├── configuration.html │ ├── room │ │ ├── modals │ │ │ ├── createUpdate.html │ │ │ └── createUpdate.js │ │ ├── room.html │ │ ├── room.js │ │ ├── room.service.js │ │ └── templates │ │ │ └── action.tmpl.html │ └── ward │ │ ├── modals │ │ ├── createUpdate.html │ │ └── createUpdate.js │ │ ├── templates │ │ └── action.tmpl.html │ │ ├── ward.html │ │ ├── ward.js │ │ └── ward.service.js │ ├── ward_module.routes.js │ └── ward_module.service.js ├── docker-compose.yml ├── docs ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss ├── cloud-init.yml ├── en │ ├── admin │ │ ├── cashboxes-depots.md │ │ ├── index.md │ │ └── users-roles-permissions.md │ ├── bhima-stock │ │ ├── index.md │ │ └── private-policy │ │ │ └── index.md │ ├── finance │ │ ├── accounts.md │ │ ├── bookkeeping │ │ │ ├── cash-payments.md │ │ │ ├── patient-invoices.md │ │ │ └── vouchers.md │ │ ├── core-concepts │ │ │ ├── debtor-groups.md │ │ │ └── index.md │ │ ├── cost-centers │ │ │ ├── bhima-step-down-cost-analysis.md │ │ │ ├── images │ │ │ │ ├── account-coverage-process.png │ │ │ │ ├── account-reference-edit.png │ │ │ │ ├── account-reference-registry.png │ │ │ │ ├── add-cost-center.png │ │ │ │ ├── edit-auxiliary.png │ │ │ │ ├── edit-principal.png │ │ │ │ ├── employees-registry.png │ │ │ │ └── update-accounts.png │ │ │ └── index.md │ │ ├── fiscal-year.md │ │ ├── index.md │ │ ├── ledgers │ │ │ ├── account-statement.md │ │ │ ├── editing-transactions.md │ │ │ ├── general-ledger.md │ │ │ ├── posting-journal.md │ │ │ └── trial-balance.md │ │ └── overview.md │ ├── for-developers │ │ ├── barcodes.md │ │ ├── end-to-end-tests.md │ │ ├── index.md │ │ ├── installing-bhima-with-docker.md │ │ ├── installing-bhima.md │ │ ├── production-deployment-with-systemd.md │ │ └── upgrading-bhima.md │ ├── getting-started │ │ ├── deploying-digital-ocean.md │ │ └── index.md │ ├── glossary.md │ ├── grid-features │ │ ├── column-sorting.md │ │ ├── data-exporting.md │ │ ├── data-filtering.md │ │ ├── inline-filtering.md │ │ ├── row-selection.md │ │ └── saving-changes.md │ ├── index.md │ ├── medical-records │ │ ├── index.md │ │ ├── patient-groups.md │ │ └── patient-registration.md │ ├── payroll-processes │ │ ├── PAYROLL CLASSIC.xlsx │ │ ├── PAYROLL INDEX.xlsx │ │ ├── classic.md │ │ ├── index.md │ │ └── indice.md │ └── stock-management │ │ ├── accounting │ │ ├── ifrs.md │ │ ├── index.md │ │ └── ohada.md │ │ ├── asset-management.md │ │ ├── average-monthly-consumption.md │ │ ├── depot.md │ │ ├── glossary.md │ │ ├── images │ │ ├── algorithm1.png │ │ ├── algorithm2.png │ │ ├── algorithm3.png │ │ ├── algorithm4.png │ │ ├── assets-assignment.png │ │ ├── assets-barcode.png │ │ ├── assets-examples.png │ │ ├── assets-management-menu.png │ │ ├── assets-needed-scans-report.png │ │ ├── assets-new-inventory-scan.png │ │ ├── assets-registry-action-menu.png │ │ ├── assets-registry-menu.png │ │ ├── assets-registry.png │ │ ├── assets-required-inventory-scans.png │ │ ├── assets-scan.png │ │ ├── assets-scans-registry-action-menu.png │ │ ├── assets-scans-registry-menu.png │ │ ├── assets-scans-registry.png │ │ ├── entry-completed-purchase-form.png │ │ ├── entry-initial-form.png │ │ ├── entry-integration-form.png │ │ ├── entry-lot-selection.png │ │ ├── entry-populated-purchase-form.png │ │ ├── entry-select-purchase-order.png │ │ ├── entry-select-transfer.png │ │ ├── entry-transfer-form.png │ │ ├── exit-depot-populated-form.png │ │ ├── exit-initial-form.png │ │ ├── exit-select-depot.png │ │ ├── exit-select-patient.png │ │ ├── exit-to-loss-form.png │ │ ├── exit-to-patient-form.png │ │ ├── new-shipment.png │ │ ├── purchase-order.png │ │ ├── shipment-actions1.png │ │ ├── shipment-actions2.png │ │ ├── shipment-actions3.png │ │ ├── shipment-containers-ops.png │ │ ├── shipment-containers.png │ │ ├── shipment-registry.png │ │ ├── shipments-menu.png │ │ ├── stock-adjustment-form.png │ │ ├── stock-adjustment-populated-form.png │ │ ├── stock-adjustment-unpopulated-form.png │ │ └── stock-settings-page.png │ │ ├── index.md │ │ ├── inventory.md │ │ ├── movement.adjustment.md │ │ ├── movement.entry.md │ │ ├── movement.exit.md │ │ ├── movement.md │ │ ├── movement.shipments.md │ │ ├── overview.md │ │ ├── stock.settings.md │ │ └── supplier.md ├── favicon.ico ├── fr │ ├── bhima-stock │ │ ├── index.md │ │ └── private-policy │ │ │ └── index.md │ ├── break-even │ │ ├── calcul_seuil.md │ │ ├── config_bhima.md │ │ ├── illustration_sr.md │ │ ├── index.md │ │ ├── point_mort.md │ │ ├── presentation.md │ │ ├── rapport_seuil.md │ │ └── rapport_seuil_fee_center.md │ ├── centre-des-frais │ │ ├── creation_centres_frais.md │ │ ├── creation_cles_repartitions.md │ │ ├── gestion_centres_frais.md │ │ ├── index.md │ │ ├── presentation.md │ │ ├── rapport-centre-frais.md │ │ └── repartitions-centres-auxiliaires.md │ ├── finance │ │ ├── accounts.md │ │ ├── bookkeeping │ │ │ ├── cash-payments.md │ │ │ ├── patient-invoices.md │ │ │ └── vouchers.md │ │ ├── fiscal-year.md │ │ ├── index.md │ │ ├── ledgers │ │ │ ├── account-statement.md │ │ │ ├── editing-transactions.md │ │ │ ├── general-ledger.md │ │ │ ├── posting-journal.md │ │ │ └── trial-balance.md │ │ └── overview.md │ ├── for-developers │ │ ├── barcodes.md │ │ ├── end-to-end-tests.md │ │ ├── index.md │ │ ├── installing-bhima.md │ │ ├── production-deployment-with-systemd.md │ │ └── upgrading-bhima.md │ ├── getting-started │ │ ├── deploying-digital-ocean.md │ │ └── index.md │ ├── grid-features │ │ ├── column-sorting.md │ │ ├── data-exporting.md │ │ ├── data-filtering.md │ │ ├── inline-filtering.md │ │ ├── row-selection.md │ │ └── saving-changes.md │ ├── index.md │ ├── medical-records │ │ ├── index.md │ │ ├── patient-groups.md │ │ └── patient-registration.md │ ├── payroll │ │ ├── config_baremes_ipr.md │ │ ├── config_paie.md │ │ ├── gestion_employes.md │ │ ├── gestion_grades.md │ │ ├── gestion_professions.md │ │ ├── gestion_rub_paie.md │ │ ├── gestion_taxe_ipr.md │ │ ├── index.md │ │ ├── payroll_multiple.md │ │ ├── pratiques.md │ │ └── registre_employes.md │ ├── references-comptes │ │ ├── index.md │ │ ├── interface_principale.md │ │ ├── presentation.md │ │ └── type_reference_comptes.md │ └── stock-management │ │ ├── Manuel-dUtiliosation-Module-Stock-Actualise.pdf │ │ ├── depot.md │ │ ├── images │ │ ├── algorithm1-fr.png │ │ ├── algorithm2-fr.png │ │ ├── algorithm3-fr.png │ │ └── algorithm4-fr.png │ │ ├── index.md │ │ ├── inventory.md │ │ ├── movement │ │ ├── adjustment.md │ │ ├── entry.md │ │ ├── exit.md │ │ └── index.md │ │ ├── overview.md │ │ ├── registry │ │ ├── index.md │ │ ├── inventory.md │ │ ├── lot.md │ │ └── movement.md │ │ ├── report │ │ ├── index.md │ │ ├── stock_exit.md │ │ ├── stock_sheet.md │ │ ├── stock_status.md │ │ └── stock_value.md │ │ └── tools │ │ ├── index.md │ │ ├── lot_assign.md │ │ └── stock_import.md ├── images │ ├── break_even │ │ ├── calcul_tmcv.jpg │ │ ├── comp_res_diff_1.jpg │ │ ├── comp_res_diff_2.jpg │ │ ├── config_compte.jpg │ │ ├── graphic.jpg │ │ ├── point_mort.jpg │ │ ├── rap_seul_centre_frais.jpg │ │ ├── rapport_seuil.jpg │ │ ├── ref_seuil_rentab.jpg │ │ └── rev_chiffre_affaire.jpg │ ├── fee_centers │ │ ├── arbo_fee_center.jpg │ │ ├── bare_menu.jpg │ │ ├── centre_frais_exemple.jpg │ │ ├── centre_principale_repartition.jpg │ │ ├── cle_repartitions.jpg │ │ ├── filter_invoice.jpg │ │ ├── fiscal_year.jpg │ │ ├── form_fee_center.jpg │ │ ├── gestion_cles_repartition.jpg │ │ ├── grid_distribution.jpg │ │ ├── gril_maj_repartition.jpg │ │ ├── menu_pourcent.jpg │ │ ├── menu_repartition.jpg │ │ ├── periode.jpg │ │ ├── rapport_cout.jpg │ │ ├── rapport_fee_center.jpg │ │ ├── rapport_profit.jpg │ │ ├── repart_centres_frais.jpg │ │ ├── repart_pourcentages.jpg │ │ ├── repartition_auxiliaires.jpg │ │ ├── tableau_fee_center.jpg │ │ ├── type_centre.jpg │ │ ├── update_repartitions.jpg │ │ └── ventilation_factures.jpg │ ├── finance │ │ └── Financial Overview - Receipts through Reports.svg │ ├── install │ │ ├── distribution.png │ │ └── user-data.png │ ├── payroll │ │ ├── actionConfig.jpg │ │ ├── action_paie_slip.jpg │ │ ├── aper_paie_config_form.jpg │ │ ├── aperc_config_period.jpg │ │ ├── aperc_rapport_paie.jpg │ │ ├── aperc_seletc_paie_period.jpg │ │ ├── apercu_config_compte.jpg │ │ ├── apercu_paie_slip.jpg │ │ ├── appercu_config_week.jpg │ │ ├── appercu_multi_paie.jpg │ │ ├── bareme_ipr.jpg │ │ ├── coche_unchecked.jpg │ │ ├── conf_manuel.jpg │ │ ├── conf_rub_payroll.jpg │ │ ├── config_bareme_ipr.jpg │ │ ├── config_create_compte.jpg │ │ ├── config_paiement.jpg │ │ ├── config_payroll_multiple.jpg │ │ ├── config_week_end.jpg │ │ ├── create_conf_periodes.jpg │ │ ├── create_conf_rub.jpg │ │ ├── employee_config.jpg │ │ ├── extrait_payslip.jpg │ │ ├── extrait_payslip_2.jpg │ │ ├── filter.jpg │ │ ├── form_add_bareme.jpg │ │ ├── gest_ipr.jpg │ │ ├── gest_vacances.jpg │ │ ├── grille_grade.jpg │ │ ├── menu.jpg │ │ ├── menu_config.jpg │ │ ├── menu_rubri_select.jpg │ │ ├── payroll.jpg │ │ ├── payslip_apercue_2.jpg │ │ ├── payslip_drc.jpg │ │ ├── payslip_france.jpg │ │ ├── pratique_add_rubrique.jpg │ │ ├── put_wait_list.jpg │ │ ├── recherche.jpg │ │ ├── registre_employee.jpg │ │ ├── rub_payroll.jpg │ │ ├── select_config_employee.jpg │ │ └── setting_payroll_config.jpg │ ├── r_a_interface_principal.png │ ├── ref_account │ │ ├── create_ref_account.jpg │ │ ├── form_add_type_reference_comptes.jpg │ │ └── type_ref_comptes.jpg │ ├── stock_dependencies.svg │ ├── stock_inventory_registry.jpg │ ├── stock_lot_registry.jpg │ ├── stock_movement.svg │ ├── stock_movement_registry.jpg │ ├── stock_sheet.jpg │ └── stock_sheet_overview.jpg ├── index.md └── logo.png ├── gulpfile.js ├── client-css.js ├── client-fonts.js ├── client-i18n.js ├── client-js.js ├── client-static.js ├── client-vendor.js ├── index.js ├── server.js └── util.js ├── karma.conf.js ├── mocha-reporter-options.js ├── package.json ├── playwright.config.js ├── server ├── app.js ├── config │ ├── access.js │ ├── constants.js │ ├── express.js │ ├── identifiers.js │ ├── interceptors.js │ ├── jwt.js │ └── routes.js ├── controllers │ ├── admin │ │ ├── choicesListManagement.js │ │ ├── cron │ │ │ └── index.js │ │ ├── cronEmailReport │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── dataCollectorManagement.js │ │ ├── displayMetadata.js │ │ ├── enterprises.js │ │ ├── entities │ │ │ ├── groups │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── types │ │ │ │ └── index.js │ │ ├── fillFormsData.js │ │ ├── functions.js │ │ ├── fundingSources.js │ │ ├── grades.js │ │ ├── helpdesk.js │ │ ├── holidays.js │ │ ├── iprTax.js │ │ ├── languages.js │ │ ├── locations.js │ │ ├── metadataReport │ │ │ ├── index.js │ │ │ ├── metadataReport.handlebars │ │ │ └── metadatacard.handlebars │ │ ├── offdays.js │ │ ├── projects.js │ │ ├── roles.js │ │ ├── services.js │ │ ├── suppliers.js │ │ ├── surveyForm.js │ │ ├── tags.js │ │ ├── titles.js │ │ ├── transactionType.js │ │ └── users │ │ │ ├── cashboxes.js │ │ │ ├── depots.js │ │ │ ├── depotsSupervision.js │ │ │ ├── index.js │ │ │ ├── projects.js │ │ │ └── reports │ │ │ ├── index.js │ │ │ └── report.handlebars │ ├── asset_management │ │ ├── assets │ │ │ ├── index.js │ │ │ └── reports │ │ │ │ ├── needed_inventory_scans.handlebars │ │ │ │ └── needed_inventory_scans.js │ │ └── shipment │ │ │ ├── index.js │ │ │ ├── reports │ │ │ ├── common.js │ │ │ ├── shipment-barcode.handlebars │ │ │ ├── shipment-barcode.js │ │ │ ├── shipment-document.handlebars │ │ │ ├── shipment-document.js │ │ │ ├── shipment-goods-received-note.handlebars │ │ │ ├── shipment-manifest.handlebars │ │ │ ├── shipments.handlebars │ │ │ └── shipments.js │ │ │ ├── shipment.js │ │ │ └── shipment_containers.js │ ├── auth.js │ ├── dashboard │ │ ├── debtorGroups.js │ │ └── stats.js │ ├── finance │ │ ├── accounts │ │ │ ├── accountReferenceType.js │ │ │ ├── categories.js │ │ │ ├── conditionalReferences.js │ │ │ ├── extra.js │ │ │ ├── import.js │ │ │ ├── index.js │ │ │ ├── references.compute.js │ │ │ ├── references.js │ │ │ ├── transactions.js │ │ │ ├── types.js │ │ │ └── utility.js │ │ ├── allocationCostCenter │ │ │ ├── automatic.js │ │ │ ├── breakDown.js │ │ │ ├── configuration.js │ │ │ ├── getDistributed.js │ │ │ ├── getDistributionKey.js │ │ │ ├── proceed.js │ │ │ ├── referenceAccount.js │ │ │ └── setting.js │ │ ├── budget │ │ │ └── index.js │ │ ├── cash.create.js │ │ ├── cash.js │ │ ├── cashboxes │ │ │ ├── currencies.js │ │ │ └── index.js │ │ ├── configurationAnalysisTools.js │ │ ├── cost_center.js │ │ ├── cost_center_allocation_bases.js │ │ ├── cost_center_allocation_registry.js │ │ ├── creditorGroups.js │ │ ├── creditors.js │ │ ├── currencies.js │ │ ├── debtors │ │ │ ├── groups │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── discounts.js │ │ ├── exchange.js │ │ ├── fiscal.js │ │ ├── fiscalPeriod.js │ │ ├── generalLedger │ │ │ └── index.js │ │ ├── indicator │ │ │ ├── dashboard │ │ │ │ ├── collect.js │ │ │ │ ├── index.js │ │ │ │ ├── process.js │ │ │ │ ├── report.handlebars │ │ │ │ └── report.js │ │ │ ├── finances.js │ │ │ ├── hospitalization.js │ │ │ ├── index.js │ │ │ ├── personel.js │ │ │ ├── status.js │ │ │ └── types.js │ │ ├── invoice │ │ │ ├── lookupConsumableInvoice.js │ │ │ └── patientInvoice.create.js │ │ ├── invoicingFees.js │ │ ├── journal │ │ │ └── index.js │ │ ├── patientInvoice.js │ │ ├── period.js │ │ ├── priceLists │ │ │ └── index.js │ │ ├── purchases.js │ │ ├── reports │ │ │ ├── account_reference │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── accounts │ │ │ │ ├── chart.handlebars │ │ │ │ └── index.js │ │ │ ├── analysis_auxiliary_cashboxes │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── balance │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── budget │ │ │ │ ├── budget.handlebars │ │ │ │ └── index.js │ │ │ ├── budget_analytical │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── cash │ │ │ │ ├── index.js │ │ │ │ ├── receipt.handlebars │ │ │ │ ├── receipt.pos.handlebars │ │ │ │ └── report.handlebars │ │ │ ├── cashReport │ │ │ │ ├── index.js │ │ │ │ ├── report_combined.handlebars │ │ │ │ └── report_separated.handlebars │ │ │ ├── cashflow │ │ │ │ ├── cashflow.function.js │ │ │ │ ├── index.js │ │ │ │ ├── report.handlebars │ │ │ │ ├── reportByService.handlebars │ │ │ │ ├── reportGlobal.handlebars │ │ │ │ ├── reportSynthetic.handlebars │ │ │ │ └── reportTransactionTypes.handlebars │ │ │ ├── client_debts │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── client_support │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── configurable_analysis_report │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── cost_center_step_down │ │ │ │ ├── accounts_report.handlebars │ │ │ │ ├── accounts_report.js │ │ │ │ ├── income_and_expense.handlebars │ │ │ │ ├── income_and_expense.js │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── creditors │ │ │ │ ├── aged.handlebars │ │ │ │ └── index.js │ │ │ ├── debtors │ │ │ │ ├── aged.handlebars │ │ │ │ ├── annual_clients_report.handlebars │ │ │ │ ├── annual_clients_report.js │ │ │ │ ├── index.js │ │ │ │ ├── openDebtors.handlebars │ │ │ │ ├── openDebtors.js │ │ │ │ ├── summaryReport.handlebars │ │ │ │ └── summaryReport.js │ │ │ ├── financial.all_employees.handlebars │ │ │ ├── financial.all_employees.js │ │ │ ├── financial.employee.handlebars │ │ │ ├── financial.employee.js │ │ │ ├── financial.patient.handlebars │ │ │ ├── financial.patient.js │ │ │ ├── general_ledger │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── index.js │ │ │ ├── invoiced_received_stock │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── invoices │ │ │ │ ├── creditNote.handlebars │ │ │ │ ├── index.js │ │ │ │ ├── receipt.handlebars │ │ │ │ ├── receipt.pos.handlebars │ │ │ │ └── report.handlebars │ │ │ ├── journal │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── monthly_balance │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── ohada_balance_sheet │ │ │ │ ├── balanceSheetElement.js │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── ohada_profit_loss │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── operating │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── priceList │ │ │ │ ├── index.js │ │ │ │ ├── registry.handlebars │ │ │ │ └── report.handlebars │ │ │ ├── purchases │ │ │ │ ├── index.js │ │ │ │ ├── report.handlebars │ │ │ │ └── report_detailed.handlebars │ │ │ ├── realized_profit │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── recovery_capacity │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── reportAccounts │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── reportAccountsMultiple │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── shared.js │ │ │ ├── systemUsage │ │ │ │ ├── index.js │ │ │ │ └── system.usage.handlebars │ │ │ ├── unpaid_invoice_payments │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ └── vouchers │ │ │ │ ├── index.js │ │ │ │ ├── receipt.handlebars │ │ │ │ ├── receipt.pos.handlebars │ │ │ │ └── report.handlebars │ │ ├── shared.js │ │ ├── stepDownCostAllocationBasis.js │ │ ├── stepDownCostAllocationQuantity.js │ │ ├── subsidies.js │ │ ├── taxPayment.js │ │ ├── transactions.js │ │ ├── trialBalance │ │ │ └── index.js │ │ ├── voucherTools │ │ │ └── index.js │ │ └── vouchers.js │ ├── groups.js │ ├── install.js │ ├── inventory │ │ ├── depots │ │ │ ├── extra.js │ │ │ └── index.js │ │ ├── import │ │ │ └── index.js │ │ ├── index.js │ │ ├── inventory │ │ │ ├── core.js │ │ │ ├── groups.js │ │ │ ├── types.js │ │ │ └── units.js │ │ └── reports │ │ │ ├── changes.handlebars │ │ │ ├── changes.js │ │ │ ├── index.js │ │ │ ├── prices.handlebars │ │ │ ├── prices.js │ │ │ ├── purchases.receipt.handlebars │ │ │ └── purchases.receipt.js │ ├── medical │ │ ├── diagnoses.js │ │ ├── dischargeTypes.js │ │ ├── patientGroups.js │ │ ├── patients │ │ │ ├── documents.js │ │ │ ├── groups.js │ │ │ ├── index.js │ │ │ ├── merge.js │ │ │ ├── pictures.js │ │ │ └── visits.js │ │ ├── reports │ │ │ ├── index.js │ │ │ ├── patient.fiche.handlebars │ │ │ ├── patient.pos.handlebars │ │ │ ├── patient.receipt.handlebars │ │ │ ├── patient.receipt.js │ │ │ ├── registrations.handlebars │ │ │ ├── registrations.js │ │ │ ├── visits.handlebars │ │ │ ├── visits.js │ │ │ ├── visits.report.handlebars │ │ │ └── visits.report.js │ │ ├── snis.js │ │ └── ward │ │ │ ├── bed.js │ │ │ ├── room.js │ │ │ └── ward.js │ ├── payroll │ │ ├── accounts │ │ │ └── index.js │ │ ├── configuration │ │ │ └── index.js │ │ ├── employeeConfig │ │ │ └── index.js │ │ ├── employees │ │ │ └── index.js │ │ ├── multiplePayroll │ │ │ ├── calculateEmployeeBenefits.js │ │ │ ├── calculateEmployeePayrollTaxes.js │ │ │ ├── calculateEmployeePension.js │ │ │ ├── calculateEmployeeWithholdings.js │ │ │ ├── calculation.js │ │ │ ├── commitment.js │ │ │ ├── commitmentByEmployee.js │ │ │ ├── commitmentFunction.js │ │ │ ├── common.js │ │ │ ├── datelogic.js │ │ │ ├── find.js │ │ │ ├── getConfig.js │ │ │ ├── groupedCommitment.js │ │ │ ├── index.js │ │ │ ├── makeCommitment.js │ │ │ ├── manageConfig.js │ │ │ ├── payrollSettings.js │ │ │ ├── setConfiguration.js │ │ │ └── setMultiConfiguration.js │ │ ├── multiplePayrollIndice │ │ │ ├── index.js │ │ │ ├── parameters.config.js │ │ │ ├── report.handlebars │ │ │ └── report.js │ │ ├── reports │ │ │ ├── import_configuration.handlebars │ │ │ ├── index.js │ │ │ ├── multipayroll.handlebars │ │ │ ├── multipayroll.js │ │ │ ├── payrollReportGenerator.handlebars │ │ │ ├── payrollReportSocialCharge.handlebars │ │ │ ├── payslipGenerator.handlebars │ │ │ ├── payslipGenerator.js │ │ │ ├── payslipGeneratorIndex.handlebars │ │ │ ├── registrations.handlebars │ │ │ └── registrations.js │ │ ├── rubricConfig │ │ │ └── index.js │ │ ├── rubrics │ │ │ ├── index.js │ │ │ └── rubricsIndex.js │ │ ├── staffingIndices │ │ │ ├── functionIndice.js │ │ │ ├── gradeIndice.js │ │ │ ├── index.js │ │ │ ├── report.handlebars │ │ │ └── report.js │ │ └── weekendConfig │ │ │ └── index.js │ ├── report.handlers.js │ ├── report.js │ ├── stock │ │ ├── api │ │ │ └── rumer.js │ │ ├── asset_scan.js │ │ ├── assign.js │ │ ├── core.js │ │ ├── functions │ │ │ ├── README.md │ │ │ └── rumer.function.js │ │ ├── import.js │ │ ├── index.js │ │ ├── lots.js │ │ ├── reports │ │ │ ├── asset_barcodes.handlebars │ │ │ ├── assets_registry.report.handlebars │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ ├── monthly_consumption.report.handlebars │ │ │ ├── purchase_order_analysis │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── purchase_prices │ │ │ │ ├── index.js │ │ │ │ └── report.handlebars │ │ │ ├── report.handlebars │ │ │ ├── rumer.report.handlebars │ │ │ ├── rumer_condensed.report.handlebars │ │ │ ├── satisfaction_rate_report.handlebars │ │ │ ├── stock │ │ │ │ ├── adjustment_receipt.js │ │ │ │ ├── aggregated_consumption_report.js │ │ │ │ ├── assignment │ │ │ │ │ ├── stock_assign.receipt.handlebars │ │ │ │ │ ├── stock_assign.receipt.js │ │ │ │ │ ├── stock_assign.registry.handlebars │ │ │ │ │ └── stock_assign.registry.js │ │ │ │ ├── avg_med_costs_per_patient_report.js │ │ │ │ ├── consumption_graph.js │ │ │ │ ├── entry │ │ │ │ │ ├── entryFromDonation.js │ │ │ │ │ ├── entryFromIntegration.js │ │ │ │ │ ├── entryFromPurchase.js │ │ │ │ │ └── entryFromTransfer.js │ │ │ │ ├── entry_depot_receipt.js │ │ │ │ ├── entry_donation_receipt.js │ │ │ │ ├── entry_integration_receipt.js │ │ │ │ ├── entry_purchase_receipt.js │ │ │ │ ├── entry_report.js │ │ │ │ ├── exit │ │ │ │ │ ├── exitAggregateConsumption.js │ │ │ │ │ ├── exitToDepot.js │ │ │ │ │ ├── exitToLoss.js │ │ │ │ │ ├── exitToPatient.js │ │ │ │ │ └── exitToService.js │ │ │ │ ├── exit_aggregate_consumption_receipt.js │ │ │ │ ├── exit_depot_receipt.js │ │ │ │ ├── exit_loss_receipt.js │ │ │ │ ├── exit_patient_receipt.js │ │ │ │ ├── exit_report.js │ │ │ │ ├── exit_service_receipt.js │ │ │ │ ├── expiration_report.js │ │ │ │ ├── inline_movements_report.js │ │ │ │ ├── inventories_report.js │ │ │ │ ├── lost_stock_report.js │ │ │ │ ├── lot_barcode │ │ │ │ │ ├── lot_barcode.handlebars │ │ │ │ │ └── lot_barcode.js │ │ │ │ ├── lots_report.js │ │ │ │ ├── monthly_consumption.js │ │ │ │ ├── movements_report.js │ │ │ │ ├── rumer.js │ │ │ │ ├── satisfaction.js │ │ │ │ ├── satisfaction_rate_data.js │ │ │ │ ├── satisfaction_rate_report.js │ │ │ │ ├── stock_changes │ │ │ │ │ └── stock_changes.handlebars │ │ │ │ ├── stock_sheet.js │ │ │ │ └── value.js │ │ │ ├── stock_adjustment.receipt.handlebars │ │ │ ├── stock_aggregate_consumption.receipt.handlebars │ │ │ ├── stock_aggregated_consumption_report.handlebars │ │ │ ├── stock_avg_med_costs_per_patient.report.handlebars │ │ │ ├── stock_entry.report.handlebars │ │ │ ├── stock_entry_depot.receipt.handlebars │ │ │ ├── stock_entry_donation.receipt.handlebars │ │ │ ├── stock_entry_integration.receipt.handlebars │ │ │ ├── stock_entry_purchase.receipt.handlebars │ │ │ ├── stock_exit.report.handlebars │ │ │ ├── stock_exit_depot.receipt.handlebars │ │ │ ├── stock_exit_depot.receipt.pos.handlebars │ │ │ ├── stock_exit_loss.receipt.handlebars │ │ │ ├── stock_exit_loss.receipt.pos.handlebars │ │ │ ├── stock_exit_patient.receipt.handlebars │ │ │ ├── stock_exit_patient.receipt.pos.handlebars │ │ │ ├── stock_exit_service.receipt.handlebars │ │ │ ├── stock_exit_service.receipt.pos.handlebars │ │ │ ├── stock_expiration_report.handlebars │ │ │ ├── stock_inline_movements.report.handlebars │ │ │ ├── stock_inventories.report.handlebars │ │ │ ├── stock_lost_stock.report.handlebars │ │ │ ├── stock_lots.report.handlebars │ │ │ ├── stock_movement_report.handlebars │ │ │ ├── stock_movements.report.handlebars │ │ │ ├── stock_sheet.report.handlebars │ │ │ └── stock_value.report.handlebars │ │ ├── required_inventory_scans.js │ │ ├── requisition │ │ │ ├── requestor_type.js │ │ │ ├── requisition.js │ │ │ ├── requisition.receipt.handlebars │ │ │ └── requisition.receipt.js │ │ └── setting │ │ │ └── index.js │ ├── system.js │ ├── tree.js │ └── units.js ├── lib │ ├── NumberToText.js │ ├── ReportManager.js │ ├── barcode.js │ ├── bhMoment.js │ ├── db │ │ ├── index.js │ │ └── transaction.js │ ├── errors │ │ ├── BadRequest.js │ │ ├── Forbidden.js │ │ ├── InternalServerError.js │ │ ├── NotFound.js │ │ ├── Unauthorized.js │ │ └── index.js │ ├── filter.js │ ├── helpers │ │ └── translate.js │ ├── mailer.js │ ├── period.js │ ├── referenceLookup.js │ ├── renderers │ │ ├── csv.js │ │ ├── doc.js │ │ ├── html.js │ │ ├── json.js │ │ ├── pdf.js │ │ ├── xls.js │ │ ├── xlsx.js │ │ ├── xlsxReceipt.js │ │ └── xlsxReport.js │ ├── stepdown.js │ ├── template │ │ ├── helpers │ │ │ ├── dates.js │ │ │ ├── finance.js │ │ │ ├── identifier.js │ │ │ ├── logic.js │ │ │ ├── math.js │ │ │ ├── objects.js │ │ │ └── presentation.js │ │ ├── index.js │ │ └── partials │ │ │ ├── barcode-header.handlebars │ │ │ ├── barcode.handlebars │ │ │ ├── emptyTable.handlebars │ │ │ ├── enterpriseDetails.handlebars │ │ │ ├── exchangeRate.handlebars │ │ │ ├── filterbar.handlebars │ │ │ ├── head.handlebars │ │ │ ├── header.handlebars │ │ │ ├── point-of-sale-logo.handlebars │ │ │ ├── point-of-sale-stylesheet.handlebars │ │ │ ├── stockReceiptHeader.handlebars │ │ │ └── title.handlebars │ ├── uploader.js │ └── util.js ├── models │ ├── 01-schema.sql │ ├── 02-functions.sql │ ├── 03-procedures.sql │ ├── 04-triggers.sql │ ├── 05-icd10.sql │ ├── 06-bhima.sql │ ├── 98-admin.sql │ ├── 99-debug.sql │ ├── migrations │ │ ├── next │ │ │ └── migrate.sql │ │ ├── v0.5.0-v0.6.0 │ │ │ └── migrate.sql │ │ ├── v0.6.0-v0.7.0 │ │ │ └── migrate.sql │ │ ├── v0.7.0-v0.8.0 │ │ │ └── migrate.sql │ │ ├── v0.8.0-v1.0.0 │ │ │ ├── migrate.revised.sql │ │ │ └── migrate.sql │ │ ├── v1.0.0-v1.1.0 │ │ │ └── migrate.sql │ │ ├── v1.1.0-v1.1.1 │ │ │ └── migrate.sql │ │ ├── v1.1.1-v1.2.0 │ │ │ └── migrations.sql │ │ ├── v1.10.0-v1.10.1 │ │ │ └── migrate.sql │ │ ├── v1.10.1-1.10.2 │ │ │ └── migrate.sql │ │ ├── v1.10.2-v1.11.0 │ │ │ └── migrate.sql │ │ ├── v1.11.0-v1.12.0 │ │ │ └── migrate.sql │ │ ├── v1.12.0-v1.13.0 │ │ │ └── migrate.sql │ │ ├── v1.13.0-v1.14.0 │ │ │ └── migrate.sql │ │ ├── v1.14.0-v1.14.1 │ │ │ └── migrate.sql │ │ ├── v1.14.1-v1.15.0 │ │ │ └── migrate.sql │ │ ├── v1.15.0-v1.16.0 │ │ │ └── migrate.sql │ │ ├── v1.16.0-v1.17.0 │ │ │ └── migrate.sql │ │ ├── v1.17.0-v1.17.1 │ │ │ └── migrate.sql │ │ ├── v1.17.1-v1.18.0 │ │ │ └── migrate.sql │ │ ├── v1.18.0-v1.19.0 │ │ │ └── migrate.sql │ │ ├── v1.19.0-v1.20.0 │ │ │ └── migrate.sql │ │ ├── v1.2.0-v1.3.0 │ │ │ └── migrate.sql │ │ ├── v1.20.0-v1.21.0 │ │ │ └── migrate.sql │ │ ├── v1.21.0-v1.21.1 │ │ │ ├── migrate.sql │ │ │ └── sample_cost_center_data.sql │ │ ├── v1.21.1-v1.21.5 │ │ │ └── migrate.sql │ │ ├── v1.21.5-1.22.0 │ │ │ ├── fix-vanga-usd-aux-cashbox.sql │ │ │ └── migrate.sql │ │ ├── v1.22.1-v1.23.0 │ │ │ └── migrate.sql │ │ ├── v1.23.0-v1.24.0 │ │ │ └── migrate.sql │ │ ├── v1.24.0-v1.25.0 │ │ │ └── migrate.sql │ │ ├── v1.25.0-v1.26.0 │ │ │ ├── migrate-bandunduville.sql │ │ │ ├── migrate-chk.sql │ │ │ ├── migrate-imck.sql │ │ │ ├── migrate-vanga.sql │ │ │ └── migrate.sql │ │ ├── v1.26.0-v1.27.0 │ │ │ └── migrate.sql │ │ ├── v1.27.0-v1.27.1 │ │ │ └── migrate.sql │ │ ├── v1.27.1-v1.28 │ │ │ └── migrate.sql │ │ ├── v1.28.0-v1.29.0 │ │ │ └── migrate.sql │ │ ├── v1.29.0-v1.30.0 │ │ │ └── migrate.sql │ │ ├── v1.3.0-v.1.4.0 │ │ │ └── migrate.sql │ │ ├── v1.30.0-v1.31.0 │ │ │ └── migrate.sql │ │ ├── v1.31.0-v1.32.0 │ │ │ └── migrate.sql │ │ ├── v1.32.0-v1.33.0 │ │ │ └── migrate.sql │ │ ├── v1.33.0-v.1.34.0 │ │ │ └── migrate.sql │ │ ├── v1.34.0-v1.35.0 │ │ │ └── migrate.sql │ │ ├── v1.35.0-v1.36.0 │ │ │ └── migrate.sql │ │ ├── v1.36.0-v1.37.0 │ │ │ └── migrate.sql │ │ ├── v1.4.0-v.1.5.0 │ │ │ └── migrate.sql │ │ ├── v1.5.0-v1.6.0 │ │ │ ├── fix-imck-unit.sql │ │ │ ├── fix-vanga-unit.sql │ │ │ └── migrate.sql │ │ ├── v1.6.0-v1.6.1 │ │ │ └── migrate.sql │ │ ├── v1.6.1-v1.7.0 │ │ │ └── migrate.sql │ │ ├── v1.7.0-v1.8.0 │ │ │ └── migrate.sql │ │ ├── v1.8.0-v1.8.1 │ │ │ └── migrate.sql │ │ ├── v1.8.1-v1.9.0 │ │ │ └── migrate.sql │ │ └── v1.9.0-v1.10.0 │ │ │ └── migrate.sql │ └── updates │ │ ├── add_hospitalized_to_patient_visit-23-08-2018.sql │ │ └── fee_center_management.sql └── resources │ └── templates │ ├── import-account-template.csv │ ├── import-budget-template.csv │ ├── import-inventory-template.csv │ ├── import-stock-template.csv │ ├── ohada-main-accounts-characters.csv │ └── ohada-main-accounts.csv ├── sh ├── build-database.sh ├── build-init-database.sh ├── build-stock-database.sh ├── install-tests.sh ├── integration-stock-tests.sh ├── integration-tests.sh ├── server-unit-tests.sh ├── setup-migration-script.sh ├── test-clean-reports.sh ├── test-e2e-account.sh ├── test-e2e-all.sh ├── test-e2e.sh ├── test-show-results.sh └── test.sh ├── test ├── client-unit │ ├── components │ │ ├── bhBarcoderScanner.spec.js │ │ ├── bhCardList.spec.js │ │ ├── bhCheckboxTree │ │ │ └── bhCheckboxTree.spec.js │ │ ├── bhDateEditor.spec.js │ │ ├── bhFilterToggle.spec.js │ │ ├── bhFindInvoice.spec.js │ │ ├── bhFindPatient │ │ │ ├── controller.spec.js │ │ │ └── dom.spec.js │ │ ├── bhHiddenField.spec.js │ │ └── bhModalNotify.spec.js │ ├── directives │ │ ├── bhBlur.spec.js │ │ ├── bhHasPermission.spec.js │ │ ├── bhInteger.spec.js │ │ ├── bhMaxInteger.spec.js │ │ ├── bhRequireEnterpriseSetting.spec.js │ │ ├── bhSubmit.spec.js │ │ └── bhUnique.spec.js │ ├── filters │ │ ├── bytes.spec.js │ │ ├── currency.spec.js │ │ ├── percentage.spec.js │ │ └── telephone.spec.js │ ├── mocks │ │ ├── data.js │ │ └── stock.js │ └── services │ │ ├── AccountService.spec.js │ │ ├── BaseReportService.spec.js │ │ ├── CashFormService.spec.js │ │ ├── ColorsService.spec.js │ │ ├── ExchangeRateService.spec.js │ │ ├── FillFormService.spec.js │ │ ├── Focus.spec.js │ │ ├── LotItemService.spec.js │ │ ├── PasswordMeterService.spec.js │ │ ├── PatientInvoiceForm.spec.js │ │ ├── Pool.spec.js │ │ ├── PrototypeApiService.spec.js │ │ ├── PurchaseOrderFormService.spec.js │ │ ├── SessionService.spec.js │ │ ├── StockEntryModalForm.spec.js │ │ ├── StockExitFormHelperService.spec.js │ │ ├── StockService.spec.js │ │ ├── Store.spec.js │ │ ├── SurveyFormService.spec.js │ │ ├── TransactionService.spec.js │ │ ├── TreeService.spec.js │ │ ├── TrialBalance.spec.js │ │ ├── UniqueValidatorService.spec.js │ │ ├── VoucherForm.spec.js │ │ ├── util.spec.js │ │ └── uuid.spec.js ├── data-init.sql ├── data.sql ├── data │ ├── accounts.sql │ ├── core.sql │ ├── enterprise.sql │ ├── inventories.sql │ ├── service-stock.sql │ └── stock.sql ├── end-to-end │ ├── account │ │ ├── accountConfig │ │ │ ├── payroll_account_config.page.js │ │ │ └── payroll_account_config.spec.js │ │ ├── accountReference │ │ │ ├── account-reference.cu.page.js │ │ │ ├── account-reference.page.js │ │ │ └── account-reference.spec.js │ │ ├── accountReferenceType │ │ │ ├── accountReferenceType.page.js │ │ │ └── accountReferenceType.spec.js │ │ ├── accountStatement │ │ │ └── account_statement.page.js │ │ └── accounts │ │ │ ├── accounts.page.js │ │ │ └── accounts.spec.js │ ├── cash │ │ └── cash.spec.js │ ├── cashboxes │ │ └── cashboxes.spec.js │ ├── choiceListManagement │ │ ├── choiceListManagement.page.js │ │ └── choiceListManagement.spec.js │ ├── configurationAnalysisTools │ │ ├── configurationAnalysisTools.page.js │ │ └── configurationAnalysisTools.spec.js │ ├── costCenter │ │ ├── cost_center.page.js │ │ └── cost_center.spec.js │ ├── creditorGroups │ │ └── creditor_groups.spec.js │ ├── dataCollectorManagement │ │ ├── dataCollectorManagement.page.js │ │ └── dataCollectorManagement.spec.js │ ├── debtors │ │ └── debtorgroups.spec.js │ ├── depots │ │ ├── depots.page.js │ │ └── depots.spec.js │ ├── displayMetadata │ │ ├── displayMetadata.page.js │ │ ├── displayMetadata.spec.js │ │ └── searchModal.page.js │ ├── editJournal │ │ └── edit_journal.spec.js │ ├── employees │ │ ├── registration.page.js │ │ ├── registration.spec.js │ │ ├── registry.page.js │ │ ├── registry.spec.js │ │ ├── searchModal.page.js │ │ └── update.spec.js │ ├── employeesConfig │ │ ├── employees_config.page.js │ │ └── employees_config.spec.js │ ├── enterprises │ │ └── enterprises.spec.js │ ├── entities │ │ ├── entities.page.js │ │ └── entities.spec.js │ ├── errors │ │ └── errors.spec.js │ ├── exchange │ │ └── exchange.spec.js │ ├── fillForm │ │ ├── fillForm.page.js │ │ └── fillForm.spec.js │ ├── fiscalYears │ │ └── fiscalYears.spec.js │ ├── functions │ │ ├── functions.page.js │ │ └── functions.spec.js │ ├── grades │ │ ├── grades.page.js │ │ └── grades.spec.js │ ├── holidays │ │ ├── holidays.page.js │ │ └── holidays.spec.js │ ├── indicatorsFiles │ │ ├── indicators_files.page.js │ │ └── indicators_files.spec.js │ ├── inventory │ │ ├── configuration.spec.js │ │ └── list.spec.js │ ├── invoicingFees │ │ └── invoicingFees.spec.js │ ├── iprTaxes │ │ ├── iprTaxes.page.js │ │ └── iprTaxes.spec.js │ ├── iprTaxesConfig │ │ ├── iprTaxesConfig.page.js │ │ └── iprTaxesConfig.spec.js │ ├── journal │ │ ├── ConfigurationModal.page.js │ │ ├── ConfigurationModal.tests.js │ │ ├── SearchModal.page.js │ │ ├── SearchModal.tests.js │ │ ├── TrialBalance.page.js │ │ ├── TrialBalance.tests.js │ │ ├── journal.page.js │ │ └── journal.spec.js │ ├── locations │ │ ├── countries.spec.js │ │ ├── modal.spec.js │ │ ├── provinces.spec.js │ │ ├── sectors.spec.js │ │ └── villages.spec.js │ ├── login │ │ └── login.spec.js │ ├── navigation │ │ └── navigation.spec.js │ ├── offdays │ │ ├── offdays.page.js │ │ └── offdays.spec.js │ ├── patient │ │ ├── groups.spec.js │ │ ├── picture.spec.js │ │ ├── record.spec.js │ │ ├── registration.spec.js │ │ ├── registry.merge.js │ │ ├── registry.merge.page.js │ │ ├── registry.search.js │ │ ├── registry.spec.js │ │ └── update.spec.js │ ├── payrollConfig │ │ ├── payroll_config.page.js │ │ └── payroll_config.spec.js │ ├── payrollProcess │ │ ├── payroll_process.page.js │ │ ├── payroll_process.spec.js │ │ └── searchModal.page.js │ ├── priceList │ │ ├── PriceListItemsModal.page.js │ │ ├── price_list.page.js │ │ └── price_list.spec.js │ ├── purchases │ │ ├── purchases.page.js │ │ ├── purchases.spec.js │ │ ├── registry.search.js │ │ └── registry.spec.js │ ├── reports │ │ ├── accountReport │ │ │ ├── account_report.page.js │ │ │ └── account_report.spec.js │ │ ├── agedCreditors │ │ │ ├── aged_creditors.page.js │ │ │ └── aged_creditors.spec.js │ │ ├── agedDebtors │ │ │ ├── aged_debtors.page.js │ │ │ └── aged_debtors.spec.js │ │ ├── annualClientsReport │ │ │ ├── balance.page.js │ │ │ └── balanceReport.spec.js │ │ ├── balanceReport │ │ │ ├── balance_report.page.js │ │ │ └── balance_report.spec.js │ │ ├── cashflow │ │ │ ├── cashflow.page.js │ │ │ └── cashflow.spec.js │ │ ├── cashflowByService │ │ │ ├── cashflow_by_service.page.js │ │ │ └── cashflow_by_service.spec.js │ │ ├── employeeStanding │ │ │ ├── employee_standing.page.js │ │ │ └── employee_standing.spec.js │ │ ├── openDebtors │ │ │ ├── open_debtors.page.js │ │ │ └── open_debtors.spec.js │ │ ├── page.js │ │ ├── patientStanding │ │ │ ├── patient_standing.page.js │ │ │ └── patient_standing.spec.js │ │ └── stockExit │ │ │ ├── stock_exit.page.js │ │ │ └── stock_exit.spec.js │ ├── rubrics │ │ ├── rubrics.page.js │ │ └── rubrics.spec.js │ ├── rubricsConfig │ │ ├── rubrics_config.page.js │ │ └── rubrics_config.spec.js │ ├── services │ │ ├── services.page.js │ │ └── services.spec.js │ ├── settings │ │ └── settings.spec.js │ ├── shared │ │ ├── GridAction.js │ │ ├── GridRow.js │ │ ├── GridUtils.js │ │ ├── TestUtils.js │ │ ├── components │ │ │ ├── bhAccountConfigSelect.js │ │ │ ├── bhAccountReferenceSelect.js │ │ │ ├── bhAccountReferenceTypeSelect.js │ │ │ ├── bhAccountSelect.js │ │ │ ├── bhAddItem.js │ │ │ ├── bhAllocationBasisSelect.js │ │ │ ├── bhAnalysisToolTypeSelect.js │ │ │ ├── bhCashBoxSelect.js │ │ │ ├── bhCheckboxTree.js │ │ │ ├── bhChoiceListSelect.js │ │ │ ├── bhCostCenterSelect.js │ │ │ ├── bhCronSelect.js │ │ │ ├── bhCurrencyInput.js │ │ │ ├── bhCurrencySelect.js │ │ │ ├── bhDataCollector.js │ │ │ ├── bhDateEditor.js │ │ │ ├── bhDateInterval.js │ │ │ ├── bhDatePicker.js │ │ │ ├── bhDebtorGroupSelect.js │ │ │ ├── bhDepotSelect.js │ │ │ ├── bhDiagnosisSelect.js │ │ │ ├── bhEmployeeConfigSelect.js │ │ │ ├── bhEmployeeSelect.js │ │ │ ├── bhEntityGroupSelect.js │ │ │ ├── bhEntitySelect.js │ │ │ ├── bhEntityTypeSelect.js │ │ │ ├── bhFilters.js │ │ │ ├── bhFindInvoice.js │ │ │ ├── bhFindPatient.js │ │ │ ├── bhFiscalPeriodSelect.js │ │ │ ├── bhFiscalYearPeriodSelect.js │ │ │ ├── bhFiscalYearSelect.js │ │ │ ├── bhFluxSelect.js │ │ │ ├── bhFunctionSelect.js │ │ │ ├── bhGenderSelect.js │ │ │ ├── bhGradeSelect.js │ │ │ ├── bhInputText.js │ │ │ ├── bhInventoryGroupSelect.js │ │ │ ├── bhInventorySelect.js │ │ │ ├── bhInventoryTypeSelect.js │ │ │ ├── bhIprConfigSelect.js │ │ │ ├── bhIprScale.js │ │ │ ├── bhLocationSelect.js │ │ │ ├── bhModalAction.js │ │ │ ├── bhMultipleCashBoxSelect.js │ │ │ ├── bhMultipleDepotSearchSelect.js │ │ │ ├── bhPatientGroupSelect.js │ │ │ ├── bhPayrollPeriodSelect.js │ │ │ ├── bhPayrollStatusSelect.js │ │ │ ├── bhPercentageInput.js │ │ │ ├── bhPeriodSelect.js │ │ │ ├── bhPeriodSelection.js │ │ │ ├── bhProjectSelect.js │ │ │ ├── bhPurchaseStatusSelect.js │ │ │ ├── bhReportPeriodSelect.js │ │ │ ├── bhReportSource.js │ │ │ ├── bhRequisitionSelect.js │ │ │ ├── bhRoomSelect.js │ │ │ ├── bhRubricConfigSelect.js │ │ │ ├── bhServiceOrDepot.js │ │ │ ├── bhServiceSelect.js │ │ │ ├── bhServicesMultipleSelect.js │ │ │ ├── bhStockEntryExitType.js │ │ │ ├── bhSupplierSelect.js │ │ │ ├── bhSurveyFormSelect.js │ │ │ ├── bhSurveyFormTypeSelect.js │ │ │ ├── bhSurveyListSelect.js │ │ │ ├── bhTagSelect.js │ │ │ ├── bhTransactionTypeSelect.js │ │ │ ├── bhUserSelect.js │ │ │ ├── bhWardSelect.js │ │ │ ├── bhWeekConfigSelect.js │ │ │ ├── bhYesNoRadios.js │ │ │ ├── index.js │ │ │ └── notify.js │ │ ├── helpers.js │ │ └── search.page.js │ ├── staffingIndice │ │ ├── payroll-indice.spec.js │ │ └── staffing-indice.spec.js │ ├── stock │ │ ├── stock.adjustment.js │ │ ├── stock.adjustment.page.js │ │ ├── stock.aggregate_consumption.js │ │ ├── stock.aggregate_consumption.page.js │ │ ├── stock.assign.js │ │ ├── stock.assign.page.js │ │ ├── stock.entry.js │ │ ├── stock.entry.page.js │ │ ├── stock.exit.js │ │ ├── stock.exit.page.js │ │ ├── stock.import.js │ │ ├── stock.inventories.js │ │ ├── stock.lots.js │ │ ├── stock.movements.js │ │ ├── stock.requisition.js │ │ ├── stock.requisition.page.js │ │ ├── stock.setting.js │ │ ├── stock.setting.page.js │ │ ├── stock.shared.page.js │ │ ├── stock.spec.js │ │ ├── stock.z1.inventory-adjustment.js │ │ ├── stock.z2.inventory-adjustment-inventories.js │ │ └── stock.z3.inventory-adjustment-lots.js │ ├── subsidies │ │ └── subsidies.spec.js │ ├── suppliers │ │ └── suppliers.spec.js │ ├── surveyForm │ │ ├── surveyForm.page.js │ │ └── surveyForm.spec.js │ ├── tags │ │ ├── tags.page.js │ │ └── tags.spec.js │ ├── transactionType │ │ └── transactionType.spec.js │ ├── user │ │ ├── edit.password.page.js │ │ ├── roles.page.js │ │ ├── roles.spec.js │ │ ├── user.page.js │ │ ├── user.spec.js │ │ └── userCU.page.js │ ├── verificationLinks │ │ └── verificationLinks.spec.js │ ├── visits │ │ ├── visits.page.js │ │ └── visits.spec.js │ ├── vouchers │ │ ├── complex.page.js │ │ ├── complex.spec.js │ │ ├── simple.spec.js │ │ ├── voucherRow.class.js │ │ ├── vouchers.search.js │ │ └── vouchers.spec.js │ ├── ward │ │ ├── bed │ │ │ ├── bed.page.js │ │ │ └── bed.spec.js │ │ ├── room │ │ │ ├── room.page.js │ │ │ └── room.spec.js │ │ └── ward │ │ │ ├── ward.page.js │ │ │ └── ward.spec.js │ └── weekendConfig │ │ ├── weekend_config.page.js │ │ └── weekend_config.spec.js ├── fixtures │ ├── bad-inventory-to-import.csv │ ├── bad-ohada-accounts.csv │ ├── bad-stock-to-import.csv │ ├── budget-to-import-bad-headers.csv │ ├── budget-to-import-bad-line-account-type-incorrect.csv │ ├── budget-to-import-bad-line-account-type.csv │ ├── budget-to-import-bad-line-account.csv │ ├── budget-to-import-bad-line-budget.csv │ ├── budget-to-import-bad-line-negative-budget.csv │ ├── budget-to-import.csv │ ├── custom-helpers.handlebars │ ├── file.handlebars │ ├── file.jpg │ ├── file.pdf │ ├── file.virus │ ├── import-inventory-item-template.csv │ ├── inventory-to-import.csv │ ├── logo.ico │ ├── ohada-accounts-characters.csv │ ├── ohada-accounts.csv │ ├── patient.png │ ├── payroll-employees-config-missing-employee.csv │ ├── payroll-employees-config-not-found-employee.csv │ ├── payroll-employees-config.csv │ ├── payroll-employees-single-day-config.csv │ ├── pdf-template-with-barcode.handlebars │ ├── sample.pdf │ ├── stock-to-import-missing-column.csv │ ├── stock-to-import-missing-inventory-text.csv │ ├── stock-to-import-missing-inventory-type.csv │ ├── stock-to-import-missing-inventory-unit.csv │ ├── stock-to-import-missing-lot-label.csv │ ├── stock-to-import-missing-lot-quantity.csv │ ├── stock-to-import.csv │ ├── translations-en.json │ └── translations-fr.json ├── integration-install │ ├── install.js │ └── setup.js ├── integration-stock │ ├── depots.js │ ├── helpers.js │ ├── setup.js │ ├── shipment.js │ └── shipmentContainer.js ├── integration │ ├── accountCategories.js │ ├── accountConfig.js │ ├── accountFYBalances.js │ ├── accountReferenceType.js │ ├── accountReferences.js │ ├── accountTypes.js │ ├── accounts.js │ ├── allocationCostCenters.js │ ├── barcodes.js │ ├── budget │ │ ├── budget.js │ │ └── import.js │ ├── cash.cautions.js │ ├── cash.invoices.js │ ├── cash.js │ ├── cash.search.js │ ├── cashboxes.js │ ├── choiceListManagement.js │ ├── configurationAnalysisTools.js │ ├── cost-centers │ │ └── index.js │ ├── costCenterAllocationBasis.js │ ├── costCenterAllocationQuantity.js │ ├── creditorGroups.js │ ├── cronEmailReport │ │ └── cronEmailReport.js │ ├── currencies.js │ ├── dataCollectorManagement.js │ ├── debtorGroups.js │ ├── debtors.js │ ├── depots.js │ ├── discounts.js │ ├── employee.js │ ├── employeeConfig.js │ ├── enterprises.js │ ├── entities │ │ ├── entities.js │ │ └── types.js │ ├── exchange.js │ ├── fillForm.js │ ├── finance │ │ ├── entities.js │ │ └── records.js │ ├── fiscalYear.extra.js │ ├── fiscalYear.js │ ├── functions.js │ ├── fundingSources.js │ ├── grades.js │ ├── groups.js │ ├── helpers.js │ ├── holidays.js │ ├── indicator.js │ ├── inventory │ │ ├── group.js │ │ ├── import.js │ │ ├── lot_schedule.js │ │ ├── metadata.js │ │ ├── shared.js │ │ ├── type.js │ │ └── unit.js │ ├── invoicingFees.js │ ├── journal.js │ ├── locations.js │ ├── login.js │ ├── mergeLots.js │ ├── offdays.js │ ├── patientDocuments.js │ ├── patientGroups.js │ ├── patientInvoice.js │ ├── patientInvoiceCreditNote.js │ ├── patientMatches.js │ ├── patientPictures.js │ ├── patientVisits.js │ ├── patients.js │ ├── payroll.js │ ├── payrollConfig.js │ ├── priceList.js │ ├── projects.js │ ├── purchase.js │ ├── remoteAccess.js │ ├── reports │ │ ├── finance │ │ │ ├── account.chart.js │ │ │ ├── account_report.js │ │ │ ├── aged_creditors.js │ │ │ ├── aged_debtors.js │ │ │ ├── cash.receipt.js │ │ │ ├── cash_report.js │ │ │ ├── cashflow.js │ │ │ ├── cashflowByService.js │ │ │ ├── employee_standing.js │ │ │ ├── income_expense.js │ │ │ ├── invoices.js │ │ │ ├── invoices.receipt.js │ │ │ ├── open_debtors.js │ │ │ ├── vouchers.js │ │ │ └── vouchers.receipt.js │ │ ├── inventory │ │ │ ├── items.js │ │ │ └── purchases.receipt.js │ │ ├── medical │ │ │ ├── card.js │ │ │ └── registrations.js │ │ └── rendering.js │ ├── role.js │ ├── rubrics.js │ ├── services.js │ ├── setup.js │ ├── shipment │ │ └── shipmentContainerTypes.js │ ├── staffingIndices.js │ ├── stock │ │ ├── asset_scans.js │ │ ├── assign.js │ │ ├── import.js │ │ ├── lots.js │ │ ├── required_inventory_scans.js │ │ ├── requisition.js │ │ ├── rumer.js │ │ ├── satisfication.js │ │ ├── shared.js │ │ ├── stock.js │ │ └── stockSettings.js │ ├── subsidy.js │ ├── suppliers.js │ ├── surveyForm.js │ ├── system.js │ ├── tags.js │ ├── taxIpr.js │ ├── test_payroll_process_scenarios │ │ ├── classic.js │ │ └── indice.js │ ├── titles.js │ ├── transactionType.js │ ├── trialBalance.js │ ├── users.js │ ├── vouchers.js │ ├── ward │ │ ├── bed.js │ │ ├── room.js │ │ ├── shared.js │ │ └── ward.js │ └── weekEndConfig.js └── server-unit │ ├── bhMoment.spec.js │ ├── cashflow │ ├── aggregateData.spec.js │ ├── aggregateTotal.spec.js │ ├── aggregateTotalByTextKeys.spec.js │ ├── getCashboxesDetails.spec.js │ ├── getOpeningBalanceData.spec.js │ ├── sumAggregateTotal.spec.js │ ├── sumIncomesPeriods.spec.js │ ├── sumTotalBalances.spec.js │ ├── sumTotalIncomes.spec.js │ ├── totalBalances.spec.js │ ├── totalIncomes.spec.js │ ├── totalIncomesPeriods.spec.js │ ├── totalOpening.spec.js │ └── totalPeriods.spec.js │ ├── cron │ ├── addDynamicDatesOptions.spec.js │ └── timers.spec.js │ ├── csv.spec.js │ ├── dates.spec.js │ ├── db.spec.js │ ├── filter.spec.js │ ├── handlebars.spec.js │ ├── mysql_functions.spec.js │ ├── numberToText.spec.js │ ├── payroll │ ├── common.spec.js │ └── datelogic.spec.js │ ├── pdf.spec.js │ ├── purchases │ └── purchases.spec.js │ ├── setup.js │ ├── stepdown.data.js │ ├── stepdown.spec.js │ ├── translate.spec.js │ ├── util.spec.js │ └── xlsx.spec.js └── utilities └── translation ├── breakup.js ├── tfcomp.js └── tfsort.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.env.docker -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.eslintrc.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.eslintrc.local.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.hound.yml -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/.sqlfluff -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.bhi.ma 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/RELEASES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /client/src/assets/IMAicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/assets/IMAicon.jpg -------------------------------------------------------------------------------- /client/src/assets/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/assets/empty.png -------------------------------------------------------------------------------- /client/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/assets/favicon.ico -------------------------------------------------------------------------------- /client/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/assets/icon.png -------------------------------------------------------------------------------- /client/src/assets/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/assets/placeholder.gif -------------------------------------------------------------------------------- /client/src/css/documents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/documents.css -------------------------------------------------------------------------------- /client/src/css/images/sort-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/images/sort-asc.gif -------------------------------------------------------------------------------- /client/src/css/images/sort-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/images/sort-desc.gif -------------------------------------------------------------------------------- /client/src/css/statistic.semantic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/statistic.semantic.css -------------------------------------------------------------------------------- /client/src/css/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/structure.css -------------------------------------------------------------------------------- /client/src/css/trialbalance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/trialbalance.css -------------------------------------------------------------------------------- /client/src/css/ui-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/css/ui-grid.css -------------------------------------------------------------------------------- /client/src/i18n/currency/eur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/currency/eur.json -------------------------------------------------------------------------------- /client/src/i18n/currency/fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/currency/fc.json -------------------------------------------------------------------------------- /client/src/i18n/currency/usd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/currency/usd.json -------------------------------------------------------------------------------- /client/src/i18n/en/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/account.json -------------------------------------------------------------------------------- /client/src/i18n/en/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/asset.json -------------------------------------------------------------------------------- /client/src/i18n/en/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/auth.json -------------------------------------------------------------------------------- /client/src/i18n/en/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/balance.json -------------------------------------------------------------------------------- /client/src/i18n/en/barcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/barcode.json -------------------------------------------------------------------------------- /client/src/i18n/en/budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/budget.json -------------------------------------------------------------------------------- /client/src/i18n/en/cash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/cash.json -------------------------------------------------------------------------------- /client/src/i18n/en/cash_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/cash_registry.json -------------------------------------------------------------------------------- /client/src/i18n/en/cashbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/cashbox.json -------------------------------------------------------------------------------- /client/src/i18n/en/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/color.json -------------------------------------------------------------------------------- /client/src/i18n/en/cost_center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/cost_center.json -------------------------------------------------------------------------------- /client/src/i18n/en/country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/country.json -------------------------------------------------------------------------------- /client/src/i18n/en/creditor_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/creditor_group.json -------------------------------------------------------------------------------- /client/src/i18n/en/cron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/cron.json -------------------------------------------------------------------------------- /client/src/i18n/en/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/dashboard.json -------------------------------------------------------------------------------- /client/src/i18n/en/debtor_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/debtor_group.json -------------------------------------------------------------------------------- /client/src/i18n/en/depot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/depot.json -------------------------------------------------------------------------------- /client/src/i18n/en/downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/downloads.json -------------------------------------------------------------------------------- /client/src/i18n/en/employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/employee.json -------------------------------------------------------------------------------- /client/src/i18n/en/employee_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/employee_registry.json -------------------------------------------------------------------------------- /client/src/i18n/en/enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/enterprise.json -------------------------------------------------------------------------------- /client/src/i18n/en/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/entity.json -------------------------------------------------------------------------------- /client/src/i18n/en/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/errors.json -------------------------------------------------------------------------------- /client/src/i18n/en/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/exchange.json -------------------------------------------------------------------------------- /client/src/i18n/en/fiscal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/fiscal.json -------------------------------------------------------------------------------- /client/src/i18n/en/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/form.json -------------------------------------------------------------------------------- /client/src/i18n/en/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/function.json -------------------------------------------------------------------------------- /client/src/i18n/en/general_ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/general_ledger.json -------------------------------------------------------------------------------- /client/src/i18n/en/grade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/grade.json -------------------------------------------------------------------------------- /client/src/i18n/en/graphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/graphs.json -------------------------------------------------------------------------------- /client/src/i18n/en/holiday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/holiday.json -------------------------------------------------------------------------------- /client/src/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/home.json -------------------------------------------------------------------------------- /client/src/i18n/en/indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/indicator.json -------------------------------------------------------------------------------- /client/src/i18n/en/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/install.json -------------------------------------------------------------------------------- /client/src/i18n/en/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/inventory.json -------------------------------------------------------------------------------- /client/src/i18n/en/invoice_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/invoice_registry.json -------------------------------------------------------------------------------- /client/src/i18n/en/invoicing_fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/invoicing_fees.json -------------------------------------------------------------------------------- /client/src/i18n/en/ipr_tax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/ipr_tax.json -------------------------------------------------------------------------------- /client/src/i18n/en/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/location.json -------------------------------------------------------------------------------- /client/src/i18n/en/login.json: -------------------------------------------------------------------------------- 1 | {"LOGIN":{"TITLE":"Authentication"}} -------------------------------------------------------------------------------- /client/src/i18n/en/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/numbers.json -------------------------------------------------------------------------------- /client/src/i18n/en/offdays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/offdays.json -------------------------------------------------------------------------------- /client/src/i18n/en/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/order.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_document.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_edit.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_group.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_invoice.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_records.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_reg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_reg.json -------------------------------------------------------------------------------- /client/src/i18n/en/patient_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/patient_registry.json -------------------------------------------------------------------------------- /client/src/i18n/en/payroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/payroll.json -------------------------------------------------------------------------------- /client/src/i18n/en/periods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/periods.json -------------------------------------------------------------------------------- /client/src/i18n/en/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/person.json -------------------------------------------------------------------------------- /client/src/i18n/en/posting_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/posting_journal.json -------------------------------------------------------------------------------- /client/src/i18n/en/price_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/price_list.json -------------------------------------------------------------------------------- /client/src/i18n/en/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/project.json -------------------------------------------------------------------------------- /client/src/i18n/en/province.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/province.json -------------------------------------------------------------------------------- /client/src/i18n/en/purchases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/purchases.json -------------------------------------------------------------------------------- /client/src/i18n/en/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/reference.json -------------------------------------------------------------------------------- /client/src/i18n/en/reference_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/reference_group.json -------------------------------------------------------------------------------- /client/src/i18n/en/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/report.json -------------------------------------------------------------------------------- /client/src/i18n/en/sector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/sector.json -------------------------------------------------------------------------------- /client/src/i18n/en/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/service.json -------------------------------------------------------------------------------- /client/src/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/settings.json -------------------------------------------------------------------------------- /client/src/i18n/en/shipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/shipment.json -------------------------------------------------------------------------------- /client/src/i18n/en/stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/stock.json -------------------------------------------------------------------------------- /client/src/i18n/en/subsidy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/subsidy.json -------------------------------------------------------------------------------- /client/src/i18n/en/supplier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/supplier.json -------------------------------------------------------------------------------- /client/src/i18n/en/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/system.json -------------------------------------------------------------------------------- /client/src/i18n/en/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/table.json -------------------------------------------------------------------------------- /client/src/i18n/en/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/tag.json -------------------------------------------------------------------------------- /client/src/i18n/en/transaction_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/transaction_type.json -------------------------------------------------------------------------------- /client/src/i18n/en/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/transactions.json -------------------------------------------------------------------------------- /client/src/i18n/en/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/tree.json -------------------------------------------------------------------------------- /client/src/i18n/en/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/users.json -------------------------------------------------------------------------------- /client/src/i18n/en/village.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/village.json -------------------------------------------------------------------------------- /client/src/i18n/en/voucher_registry.json: -------------------------------------------------------------------------------- 1 | {"VOUCHER_REGISTRY":{"TITLE":"Voucher Registry"}} -------------------------------------------------------------------------------- /client/src/i18n/en/vouchers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/vouchers.json -------------------------------------------------------------------------------- /client/src/i18n/en/ward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/en/ward.json -------------------------------------------------------------------------------- /client/src/i18n/fr/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/account.json -------------------------------------------------------------------------------- /client/src/i18n/fr/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/asset.json -------------------------------------------------------------------------------- /client/src/i18n/fr/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/auth.json -------------------------------------------------------------------------------- /client/src/i18n/fr/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/balance.json -------------------------------------------------------------------------------- /client/src/i18n/fr/barcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/barcode.json -------------------------------------------------------------------------------- /client/src/i18n/fr/budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/budget.json -------------------------------------------------------------------------------- /client/src/i18n/fr/cash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/cash.json -------------------------------------------------------------------------------- /client/src/i18n/fr/cash_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/cash_registry.json -------------------------------------------------------------------------------- /client/src/i18n/fr/cashbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/cashbox.json -------------------------------------------------------------------------------- /client/src/i18n/fr/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/color.json -------------------------------------------------------------------------------- /client/src/i18n/fr/cost_center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/cost_center.json -------------------------------------------------------------------------------- /client/src/i18n/fr/country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/country.json -------------------------------------------------------------------------------- /client/src/i18n/fr/creditor_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/creditor_group.json -------------------------------------------------------------------------------- /client/src/i18n/fr/cron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/cron.json -------------------------------------------------------------------------------- /client/src/i18n/fr/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/dashboard.json -------------------------------------------------------------------------------- /client/src/i18n/fr/debtor_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/debtor_group.json -------------------------------------------------------------------------------- /client/src/i18n/fr/depot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/depot.json -------------------------------------------------------------------------------- /client/src/i18n/fr/downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/downloads.json -------------------------------------------------------------------------------- /client/src/i18n/fr/employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/employee.json -------------------------------------------------------------------------------- /client/src/i18n/fr/employee_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/employee_registry.json -------------------------------------------------------------------------------- /client/src/i18n/fr/enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/enterprise.json -------------------------------------------------------------------------------- /client/src/i18n/fr/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/entity.json -------------------------------------------------------------------------------- /client/src/i18n/fr/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/errors.json -------------------------------------------------------------------------------- /client/src/i18n/fr/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/exchange.json -------------------------------------------------------------------------------- /client/src/i18n/fr/fiscal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/fiscal.json -------------------------------------------------------------------------------- /client/src/i18n/fr/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/form.json -------------------------------------------------------------------------------- /client/src/i18n/fr/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/function.json -------------------------------------------------------------------------------- /client/src/i18n/fr/general_ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/general_ledger.json -------------------------------------------------------------------------------- /client/src/i18n/fr/grade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/grade.json -------------------------------------------------------------------------------- /client/src/i18n/fr/graphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/graphs.json -------------------------------------------------------------------------------- /client/src/i18n/fr/holiday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/holiday.json -------------------------------------------------------------------------------- /client/src/i18n/fr/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/home.json -------------------------------------------------------------------------------- /client/src/i18n/fr/indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/indicator.json -------------------------------------------------------------------------------- /client/src/i18n/fr/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/install.json -------------------------------------------------------------------------------- /client/src/i18n/fr/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/inventory.json -------------------------------------------------------------------------------- /client/src/i18n/fr/invoice_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/invoice_registry.json -------------------------------------------------------------------------------- /client/src/i18n/fr/invoicing_fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/invoicing_fees.json -------------------------------------------------------------------------------- /client/src/i18n/fr/ipr_tax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/ipr_tax.json -------------------------------------------------------------------------------- /client/src/i18n/fr/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/location.json -------------------------------------------------------------------------------- /client/src/i18n/fr/login.json: -------------------------------------------------------------------------------- 1 | {"LOGIN":{"TITLE":"Authentification"}} -------------------------------------------------------------------------------- /client/src/i18n/fr/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/numbers.json -------------------------------------------------------------------------------- /client/src/i18n/fr/offdays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/offdays.json -------------------------------------------------------------------------------- /client/src/i18n/fr/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/order.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_document.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_edit.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_group.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_invoice.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_records.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_reg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_reg.json -------------------------------------------------------------------------------- /client/src/i18n/fr/patient_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/patient_registry.json -------------------------------------------------------------------------------- /client/src/i18n/fr/payroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/payroll.json -------------------------------------------------------------------------------- /client/src/i18n/fr/periods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/periods.json -------------------------------------------------------------------------------- /client/src/i18n/fr/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/person.json -------------------------------------------------------------------------------- /client/src/i18n/fr/posting_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/posting_journal.json -------------------------------------------------------------------------------- /client/src/i18n/fr/price_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/price_list.json -------------------------------------------------------------------------------- /client/src/i18n/fr/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/project.json -------------------------------------------------------------------------------- /client/src/i18n/fr/province.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/province.json -------------------------------------------------------------------------------- /client/src/i18n/fr/purchases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/purchases.json -------------------------------------------------------------------------------- /client/src/i18n/fr/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/reference.json -------------------------------------------------------------------------------- /client/src/i18n/fr/reference_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/reference_group.json -------------------------------------------------------------------------------- /client/src/i18n/fr/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/report.json -------------------------------------------------------------------------------- /client/src/i18n/fr/sector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/sector.json -------------------------------------------------------------------------------- /client/src/i18n/fr/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/service.json -------------------------------------------------------------------------------- /client/src/i18n/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/settings.json -------------------------------------------------------------------------------- /client/src/i18n/fr/shipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/shipment.json -------------------------------------------------------------------------------- /client/src/i18n/fr/stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/stock.json -------------------------------------------------------------------------------- /client/src/i18n/fr/subsidy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/subsidy.json -------------------------------------------------------------------------------- /client/src/i18n/fr/supplier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/supplier.json -------------------------------------------------------------------------------- /client/src/i18n/fr/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/system.json -------------------------------------------------------------------------------- /client/src/i18n/fr/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/table.json -------------------------------------------------------------------------------- /client/src/i18n/fr/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/tag.json -------------------------------------------------------------------------------- /client/src/i18n/fr/transaction_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/transaction_type.json -------------------------------------------------------------------------------- /client/src/i18n/fr/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/transactions.json -------------------------------------------------------------------------------- /client/src/i18n/fr/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/tree.json -------------------------------------------------------------------------------- /client/src/i18n/fr/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/users.json -------------------------------------------------------------------------------- /client/src/i18n/fr/village.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/village.json -------------------------------------------------------------------------------- /client/src/i18n/fr/voucher_registry.json: -------------------------------------------------------------------------------- 1 | {"VOUCHER_REGISTRY":{"TITLE":"Registre des bordereaux"}} 2 | -------------------------------------------------------------------------------- /client/src/i18n/fr/vouchers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/vouchers.json -------------------------------------------------------------------------------- /client/src/i18n/fr/ward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/i18n/fr/ward.json -------------------------------------------------------------------------------- /client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/index.html -------------------------------------------------------------------------------- /client/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/app.js -------------------------------------------------------------------------------- /client/src/js/components/bhAddItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhAddItem.js -------------------------------------------------------------------------------- /client/src/js/components/bhCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhCard.js -------------------------------------------------------------------------------- /client/src/js/components/bhCardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhCardList.js -------------------------------------------------------------------------------- /client/src/js/components/bhCashboxUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhCashboxUsers.js -------------------------------------------------------------------------------- /client/src/js/components/bhChangeDepot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhChangeDepot.js -------------------------------------------------------------------------------- /client/src/js/components/bhClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhClear.js -------------------------------------------------------------------------------- /client/src/js/components/bhDateEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhDateEditor.js -------------------------------------------------------------------------------- /client/src/js/components/bhDateInterval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhDateInterval.js -------------------------------------------------------------------------------- /client/src/js/components/bhDatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhDatePicker.js -------------------------------------------------------------------------------- /client/src/js/components/bhExchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhExchange.js -------------------------------------------------------------------------------- /client/src/js/components/bhExchangeRate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhExchangeRate.js -------------------------------------------------------------------------------- /client/src/js/components/bhFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFilter.js -------------------------------------------------------------------------------- /client/src/js/components/bhFilterToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFilterToggle.js -------------------------------------------------------------------------------- /client/src/js/components/bhFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFilters.js -------------------------------------------------------------------------------- /client/src/js/components/bhFindInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFindInvoice.js -------------------------------------------------------------------------------- /client/src/js/components/bhFindPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFindPatient.js -------------------------------------------------------------------------------- /client/src/js/components/bhFluxSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhFluxSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhGradeSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhGradeSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhHiddenField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhHiddenField.js -------------------------------------------------------------------------------- /client/src/js/components/bhInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhInfo.js -------------------------------------------------------------------------------- /client/src/js/components/bhInputText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhInputText.js -------------------------------------------------------------------------------- /client/src/js/components/bhIprScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhIprScale.js -------------------------------------------------------------------------------- /client/src/js/components/bhJournalLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhJournalLink.js -------------------------------------------------------------------------------- /client/src/js/components/bhNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhNavigation.js -------------------------------------------------------------------------------- /client/src/js/components/bhPDFPrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhPDFPrint.js -------------------------------------------------------------------------------- /client/src/js/components/bhPanelOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhPanelOverlay.js -------------------------------------------------------------------------------- /client/src/js/components/bhPeriodSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhPeriodSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhReceipt.js -------------------------------------------------------------------------------- /client/src/js/components/bhRenderOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhRenderOption.js -------------------------------------------------------------------------------- /client/src/js/components/bhReportSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhReportSource.js -------------------------------------------------------------------------------- /client/src/js/components/bhRubricSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhRubricSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhSearchButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhSearchButton.js -------------------------------------------------------------------------------- /client/src/js/components/bhStockReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhStockReceipt.js -------------------------------------------------------------------------------- /client/src/js/components/bhTitleSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhTitleSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhUser.js -------------------------------------------------------------------------------- /client/src/js/components/bhUserSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhUserSelect.js -------------------------------------------------------------------------------- /client/src/js/components/bhYesNoRadios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/components/bhYesNoRadios.js -------------------------------------------------------------------------------- /client/src/js/constants/bhConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/constants/bhConstants.js -------------------------------------------------------------------------------- /client/src/js/define.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/define.js -------------------------------------------------------------------------------- /client/src/js/directives/bhBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/bhBlur.js -------------------------------------------------------------------------------- /client/src/js/directives/bhDropdownMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/bhDropdownMenu.js -------------------------------------------------------------------------------- /client/src/js/directives/bhInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/bhInteger.js -------------------------------------------------------------------------------- /client/src/js/directives/bhSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/bhSubmit.js -------------------------------------------------------------------------------- /client/src/js/directives/bhUnique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/bhUnique.js -------------------------------------------------------------------------------- /client/src/js/directives/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/loading.js -------------------------------------------------------------------------------- /client/src/js/directives/totalsfooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/directives/totalsfooter.js -------------------------------------------------------------------------------- /client/src/js/filters/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/filters/bytes.js -------------------------------------------------------------------------------- /client/src/js/filters/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/filters/currency.js -------------------------------------------------------------------------------- /client/src/js/filters/percentage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/filters/percentage.js -------------------------------------------------------------------------------- /client/src/js/filters/telephone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/filters/telephone.js -------------------------------------------------------------------------------- /client/src/js/services/AppCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/AppCache.js -------------------------------------------------------------------------------- /client/src/js/services/BarcodeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/BarcodeService.js -------------------------------------------------------------------------------- /client/src/js/services/CronService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/CronService.js -------------------------------------------------------------------------------- /client/src/js/services/CurrencyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/CurrencyService.js -------------------------------------------------------------------------------- /client/src/js/services/ErrorInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/ErrorInterceptor.js -------------------------------------------------------------------------------- /client/src/js/services/ExportService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/ExportService.js -------------------------------------------------------------------------------- /client/src/js/services/FilterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/FilterService.js -------------------------------------------------------------------------------- /client/src/js/services/FinancialService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/FinancialService.js -------------------------------------------------------------------------------- /client/src/js/services/FluxService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/FluxService.js -------------------------------------------------------------------------------- /client/src/js/services/HttpCacheService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/HttpCacheService.js -------------------------------------------------------------------------------- /client/src/js/services/LanguageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/LanguageService.js -------------------------------------------------------------------------------- /client/src/js/services/LotService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/LotService.js -------------------------------------------------------------------------------- /client/src/js/services/ModalService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/ModalService.js -------------------------------------------------------------------------------- /client/src/js/services/NotifyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/NotifyService.js -------------------------------------------------------------------------------- /client/src/js/services/PeriodService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/PeriodService.js -------------------------------------------------------------------------------- /client/src/js/services/Pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/Pool.js -------------------------------------------------------------------------------- /client/src/js/services/ScrollService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/ScrollService.js -------------------------------------------------------------------------------- /client/src/js/services/SearchModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/SearchModal.js -------------------------------------------------------------------------------- /client/src/js/services/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/Session.js -------------------------------------------------------------------------------- /client/src/js/services/Snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/Snapshot.js -------------------------------------------------------------------------------- /client/src/js/services/StockService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/StockService.js -------------------------------------------------------------------------------- /client/src/js/services/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/Store.js -------------------------------------------------------------------------------- /client/src/js/services/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/System.js -------------------------------------------------------------------------------- /client/src/js/services/TreeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/TreeService.js -------------------------------------------------------------------------------- /client/src/js/services/authinjector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/authinjector.js -------------------------------------------------------------------------------- /client/src/js/services/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/color.js -------------------------------------------------------------------------------- /client/src/js/services/currencyFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/currencyFormat.js -------------------------------------------------------------------------------- /client/src/js/services/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/focus.js -------------------------------------------------------------------------------- /client/src/js/services/grid/GridColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/grid/GridColumns.js -------------------------------------------------------------------------------- /client/src/js/services/grid/GridEditors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/grid/GridEditors.js -------------------------------------------------------------------------------- /client/src/js/services/grid/GridExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/grid/GridExport.js -------------------------------------------------------------------------------- /client/src/js/services/grid/GridSorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/grid/GridSorting.js -------------------------------------------------------------------------------- /client/src/js/services/grid/GridState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/grid/GridState.js -------------------------------------------------------------------------------- /client/src/js/services/period.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/period.js -------------------------------------------------------------------------------- /client/src/js/services/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/tree.js -------------------------------------------------------------------------------- /client/src/js/services/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/util.js -------------------------------------------------------------------------------- /client/src/js/services/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/js/services/uuid.js -------------------------------------------------------------------------------- /client/src/less/bhima-bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/less/bhima-bootstrap.less -------------------------------------------------------------------------------- /client/src/less/bhima-print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/less/bhima-print.less -------------------------------------------------------------------------------- /client/src/modules/accounts/AccountGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/accounts/AccountGrid.js -------------------------------------------------------------------------------- /client/src/modules/accounts/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/accounts/accounts.html -------------------------------------------------------------------------------- /client/src/modules/accounts/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/accounts/accounts.js -------------------------------------------------------------------------------- /client/src/modules/budget/budget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/budget/budget.html -------------------------------------------------------------------------------- /client/src/modules/budget/budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/budget/budget.js -------------------------------------------------------------------------------- /client/src/modules/budget/budget.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/budget/budget.routes.js -------------------------------------------------------------------------------- /client/src/modules/budget/modal/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/budget/modal/import.js -------------------------------------------------------------------------------- /client/src/modules/cash/cash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/cash/cash.html -------------------------------------------------------------------------------- /client/src/modules/cash/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/cash/cash.js -------------------------------------------------------------------------------- /client/src/modules/cash/cash.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/cash/cash.routes.js -------------------------------------------------------------------------------- /client/src/modules/cash/cash.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/cash/cash.service.js -------------------------------------------------------------------------------- /client/src/modules/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/dashboard/dashboard.css -------------------------------------------------------------------------------- /client/src/modules/dashboard/finance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/dashboard/finance.html -------------------------------------------------------------------------------- /client/src/modules/dashboard/finance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/dashboard/finance.js -------------------------------------------------------------------------------- /client/src/modules/debtors/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/debtors/groups.html -------------------------------------------------------------------------------- /client/src/modules/debtors/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/debtors/groups.js -------------------------------------------------------------------------------- /client/src/modules/depots/depots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/depots/depots.html -------------------------------------------------------------------------------- /client/src/modules/depots/depots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/depots/depots.js -------------------------------------------------------------------------------- /client/src/modules/depots/depots.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/depots/depots.routes.js -------------------------------------------------------------------------------- /client/src/modules/entities/entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/entities/entities.html -------------------------------------------------------------------------------- /client/src/modules/entities/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/entities/entities.js -------------------------------------------------------------------------------- /client/src/modules/entities/types/categories.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/modules/entities/types/categories.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/modules/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/errors/403.html -------------------------------------------------------------------------------- /client/src/modules/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/errors/404.html -------------------------------------------------------------------------------- /client/src/modules/errors/errors.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/errors/errors.routes.js -------------------------------------------------------------------------------- /client/src/modules/exchange/exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/exchange/exchange.html -------------------------------------------------------------------------------- /client/src/modules/exchange/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/exchange/exchange.js -------------------------------------------------------------------------------- /client/src/modules/fill_form/fill_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fill_form/fill_form.js -------------------------------------------------------------------------------- /client/src/modules/fiscal/fiscal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fiscal/fiscal.html -------------------------------------------------------------------------------- /client/src/modules/fiscal/fiscal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fiscal/fiscal.js -------------------------------------------------------------------------------- /client/src/modules/fiscal/fiscal.list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fiscal/fiscal.list.html -------------------------------------------------------------------------------- /client/src/modules/fiscal/fiscal.manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fiscal/fiscal.manage.js -------------------------------------------------------------------------------- /client/src/modules/fiscal/fiscal.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/fiscal/fiscal.routes.js -------------------------------------------------------------------------------- /client/src/modules/functions/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/functions/functions.js -------------------------------------------------------------------------------- /client/src/modules/grades/grades.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/grades/grades.html -------------------------------------------------------------------------------- /client/src/modules/grades/grades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/grades/grades.js -------------------------------------------------------------------------------- /client/src/modules/grades/grades.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/grades/grades.routes.js -------------------------------------------------------------------------------- /client/src/modules/holidays/holidays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/holidays/holidays.html -------------------------------------------------------------------------------- /client/src/modules/holidays/holidays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/holidays/holidays.js -------------------------------------------------------------------------------- /client/src/modules/home/home.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/home/home.ctrl.js -------------------------------------------------------------------------------- /client/src/modules/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/home/home.html -------------------------------------------------------------------------------- /client/src/modules/install/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/install/install.html -------------------------------------------------------------------------------- /client/src/modules/install/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/install/install.js -------------------------------------------------------------------------------- /client/src/modules/inventory/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/inventory/list/list.js -------------------------------------------------------------------------------- /client/src/modules/ipr_tax/ipr_tax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/ipr_tax/ipr_tax.html -------------------------------------------------------------------------------- /client/src/modules/ipr_tax/ipr_tax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/ipr_tax/ipr_tax.js -------------------------------------------------------------------------------- /client/src/modules/journal/journal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/journal/journal.html -------------------------------------------------------------------------------- /client/src/modules/journal/journal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/journal/journal.js -------------------------------------------------------------------------------- /client/src/modules/journal/journal_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/journal/journal_log.js -------------------------------------------------------------------------------- /client/src/modules/locations/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/locations/locations.js -------------------------------------------------------------------------------- /client/src/modules/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/login/login.html -------------------------------------------------------------------------------- /client/src/modules/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/login/login.js -------------------------------------------------------------------------------- /client/src/modules/login/login.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/login/login.routes.js -------------------------------------------------------------------------------- /client/src/modules/offdays/offdays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/offdays/offdays.html -------------------------------------------------------------------------------- /client/src/modules/offdays/offdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/offdays/offdays.js -------------------------------------------------------------------------------- /client/src/modules/patients/edit/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/patients/edit/edit.html -------------------------------------------------------------------------------- /client/src/modules/patients/edit/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/patients/edit/edit.js -------------------------------------------------------------------------------- /client/src/modules/payroll/payroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/payroll/payroll.html -------------------------------------------------------------------------------- /client/src/modules/payroll/payroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/payroll/payroll.js -------------------------------------------------------------------------------- /client/src/modules/prices/modal/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/prices/modal/import.js -------------------------------------------------------------------------------- /client/src/modules/prices/prices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/prices/prices.html -------------------------------------------------------------------------------- /client/src/modules/prices/prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/prices/prices.js -------------------------------------------------------------------------------- /client/src/modules/prices/prices.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/prices/prices.routes.js -------------------------------------------------------------------------------- /client/src/modules/reports/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/reports/archive.html -------------------------------------------------------------------------------- /client/src/modules/reports/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/reports/reports.html -------------------------------------------------------------------------------- /client/src/modules/reports/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/reports/reports.js -------------------------------------------------------------------------------- /client/src/modules/reports/reports.save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/reports/reports.save.js -------------------------------------------------------------------------------- /client/src/modules/roles/createUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/roles/createUpdate.html -------------------------------------------------------------------------------- /client/src/modules/roles/createUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/roles/createUpdate.js -------------------------------------------------------------------------------- /client/src/modules/roles/modal/userRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/roles/modal/userRole.js -------------------------------------------------------------------------------- /client/src/modules/roles/roles.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/roles/roles.ctrl.js -------------------------------------------------------------------------------- /client/src/modules/roles/roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/roles/roles.html -------------------------------------------------------------------------------- /client/src/modules/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/services/services.js -------------------------------------------------------------------------------- /client/src/modules/shipment/shipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/shipment/shipment.js -------------------------------------------------------------------------------- /client/src/modules/stock/entry/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/stock/entry/entry.js -------------------------------------------------------------------------------- /client/src/modules/stock/entry/modals/templates/lot.number_box.tmpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/modules/stock/exit/exit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/stock/exit/exit.html -------------------------------------------------------------------------------- /client/src/modules/stock/exit/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/stock/exit/exit.js -------------------------------------------------------------------------------- /client/src/modules/tags/tags.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/tags/tags.ctrl.js -------------------------------------------------------------------------------- /client/src/modules/tags/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/tags/tags.html -------------------------------------------------------------------------------- /client/src/modules/tags/tags.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/tags/tags.routes.js -------------------------------------------------------------------------------- /client/src/modules/tags/tags.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/tags/tags.service.js -------------------------------------------------------------------------------- /client/src/modules/titles/titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/titles/titles.html -------------------------------------------------------------------------------- /client/src/modules/titles/titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/titles/titles.js -------------------------------------------------------------------------------- /client/src/modules/users/templates/password.policy.html: -------------------------------------------------------------------------------- 1 |
USERS.PASSWORDPOLICY
2 | -------------------------------------------------------------------------------- /client/src/modules/users/user.modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/users/user.modal.js -------------------------------------------------------------------------------- /client/src/modules/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/users/users.html -------------------------------------------------------------------------------- /client/src/modules/users/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/client/src/modules/users/users.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.bhi.ma -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/cloud-init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/cloud-init.yml -------------------------------------------------------------------------------- /docs/en/admin/cashboxes-depots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/admin/cashboxes-depots.md -------------------------------------------------------------------------------- /docs/en/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/admin/index.md -------------------------------------------------------------------------------- /docs/en/bhima-stock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/bhima-stock/index.md -------------------------------------------------------------------------------- /docs/en/finance/accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/accounts.md -------------------------------------------------------------------------------- /docs/en/finance/bookkeeping/vouchers.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/finance/core-concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/core-concepts/index.md -------------------------------------------------------------------------------- /docs/en/finance/cost-centers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/cost-centers/index.md -------------------------------------------------------------------------------- /docs/en/finance/fiscal-year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/fiscal-year.md -------------------------------------------------------------------------------- /docs/en/finance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/index.md -------------------------------------------------------------------------------- /docs/en/finance/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/finance/overview.md -------------------------------------------------------------------------------- /docs/en/for-developers/barcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/for-developers/barcodes.md -------------------------------------------------------------------------------- /docs/en/for-developers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/for-developers/index.md -------------------------------------------------------------------------------- /docs/en/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/getting-started/index.md -------------------------------------------------------------------------------- /docs/en/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/glossary.md -------------------------------------------------------------------------------- /docs/en/grid-features/column-sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/grid-features/column-sorting.md -------------------------------------------------------------------------------- /docs/en/grid-features/data-exporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/grid-features/data-exporting.md -------------------------------------------------------------------------------- /docs/en/grid-features/data-filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/grid-features/data-filtering.md -------------------------------------------------------------------------------- /docs/en/grid-features/row-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/grid-features/row-selection.md -------------------------------------------------------------------------------- /docs/en/grid-features/saving-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/grid-features/saving-changes.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/en/medical-records/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/medical-records/index.md -------------------------------------------------------------------------------- /docs/en/payroll-processes/classic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/payroll-processes/classic.md -------------------------------------------------------------------------------- /docs/en/payroll-processes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/payroll-processes/index.md -------------------------------------------------------------------------------- /docs/en/payroll-processes/indice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/payroll-processes/indice.md -------------------------------------------------------------------------------- /docs/en/stock-management/accounting/ifrs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/stock-management/depot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/depot.md -------------------------------------------------------------------------------- /docs/en/stock-management/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/glossary.md -------------------------------------------------------------------------------- /docs/en/stock-management/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/index.md -------------------------------------------------------------------------------- /docs/en/stock-management/inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/inventory.md -------------------------------------------------------------------------------- /docs/en/stock-management/movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/movement.md -------------------------------------------------------------------------------- /docs/en/stock-management/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/overview.md -------------------------------------------------------------------------------- /docs/en/stock-management/supplier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/en/stock-management/supplier.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fr/bhima-stock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/bhima-stock/index.md -------------------------------------------------------------------------------- /docs/fr/break-even/calcul_seuil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/calcul_seuil.md -------------------------------------------------------------------------------- /docs/fr/break-even/config_bhima.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/config_bhima.md -------------------------------------------------------------------------------- /docs/fr/break-even/illustration_sr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/illustration_sr.md -------------------------------------------------------------------------------- /docs/fr/break-even/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/index.md -------------------------------------------------------------------------------- /docs/fr/break-even/point_mort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/point_mort.md -------------------------------------------------------------------------------- /docs/fr/break-even/presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/presentation.md -------------------------------------------------------------------------------- /docs/fr/break-even/rapport_seuil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/break-even/rapport_seuil.md -------------------------------------------------------------------------------- /docs/fr/centre-des-frais/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/centre-des-frais/index.md -------------------------------------------------------------------------------- /docs/fr/finance/accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/finance/accounts.md -------------------------------------------------------------------------------- /docs/fr/finance/bookkeeping/vouchers.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/fr/finance/fiscal-year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/finance/fiscal-year.md -------------------------------------------------------------------------------- /docs/fr/finance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/finance/index.md -------------------------------------------------------------------------------- /docs/fr/finance/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/finance/overview.md -------------------------------------------------------------------------------- /docs/fr/for-developers/barcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/for-developers/barcodes.md -------------------------------------------------------------------------------- /docs/fr/for-developers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/for-developers/index.md -------------------------------------------------------------------------------- /docs/fr/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/getting-started/index.md -------------------------------------------------------------------------------- /docs/fr/grid-features/column-sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/grid-features/column-sorting.md -------------------------------------------------------------------------------- /docs/fr/grid-features/data-exporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/grid-features/data-exporting.md -------------------------------------------------------------------------------- /docs/fr/grid-features/data-filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/grid-features/data-filtering.md -------------------------------------------------------------------------------- /docs/fr/grid-features/row-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/grid-features/row-selection.md -------------------------------------------------------------------------------- /docs/fr/grid-features/saving-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/grid-features/saving-changes.md -------------------------------------------------------------------------------- /docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/index.md -------------------------------------------------------------------------------- /docs/fr/medical-records/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/medical-records/index.md -------------------------------------------------------------------------------- /docs/fr/payroll/config_baremes_ipr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/config_baremes_ipr.md -------------------------------------------------------------------------------- /docs/fr/payroll/config_paie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/config_paie.md -------------------------------------------------------------------------------- /docs/fr/payroll/gestion_employes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/gestion_employes.md -------------------------------------------------------------------------------- /docs/fr/payroll/gestion_grades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/gestion_grades.md -------------------------------------------------------------------------------- /docs/fr/payroll/gestion_professions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/gestion_professions.md -------------------------------------------------------------------------------- /docs/fr/payroll/gestion_rub_paie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/gestion_rub_paie.md -------------------------------------------------------------------------------- /docs/fr/payroll/gestion_taxe_ipr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/gestion_taxe_ipr.md -------------------------------------------------------------------------------- /docs/fr/payroll/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/index.md -------------------------------------------------------------------------------- /docs/fr/payroll/payroll_multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/payroll_multiple.md -------------------------------------------------------------------------------- /docs/fr/payroll/pratiques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/pratiques.md -------------------------------------------------------------------------------- /docs/fr/payroll/registre_employes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/payroll/registre_employes.md -------------------------------------------------------------------------------- /docs/fr/references-comptes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/references-comptes/index.md -------------------------------------------------------------------------------- /docs/fr/stock-management/depot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/stock-management/depot.md -------------------------------------------------------------------------------- /docs/fr/stock-management/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/stock-management/index.md -------------------------------------------------------------------------------- /docs/fr/stock-management/inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/stock-management/inventory.md -------------------------------------------------------------------------------- /docs/fr/stock-management/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/stock-management/overview.md -------------------------------------------------------------------------------- /docs/fr/stock-management/tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/fr/stock-management/tools/index.md -------------------------------------------------------------------------------- /docs/images/break_even/calcul_tmcv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/break_even/calcul_tmcv.jpg -------------------------------------------------------------------------------- /docs/images/break_even/graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/break_even/graphic.jpg -------------------------------------------------------------------------------- /docs/images/break_even/point_mort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/break_even/point_mort.jpg -------------------------------------------------------------------------------- /docs/images/fee_centers/bare_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/fee_centers/bare_menu.jpg -------------------------------------------------------------------------------- /docs/images/fee_centers/fiscal_year.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/fee_centers/fiscal_year.jpg -------------------------------------------------------------------------------- /docs/images/fee_centers/periode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/fee_centers/periode.jpg -------------------------------------------------------------------------------- /docs/images/fee_centers/type_centre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/fee_centers/type_centre.jpg -------------------------------------------------------------------------------- /docs/images/install/distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/install/distribution.png -------------------------------------------------------------------------------- /docs/images/install/user-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/install/user-data.png -------------------------------------------------------------------------------- /docs/images/payroll/actionConfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/actionConfig.jpg -------------------------------------------------------------------------------- /docs/images/payroll/bareme_ipr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/bareme_ipr.jpg -------------------------------------------------------------------------------- /docs/images/payroll/coche_unchecked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/coche_unchecked.jpg -------------------------------------------------------------------------------- /docs/images/payroll/conf_manuel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/conf_manuel.jpg -------------------------------------------------------------------------------- /docs/images/payroll/config_paiement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/config_paiement.jpg -------------------------------------------------------------------------------- /docs/images/payroll/config_week_end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/config_week_end.jpg -------------------------------------------------------------------------------- /docs/images/payroll/create_conf_rub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/create_conf_rub.jpg -------------------------------------------------------------------------------- /docs/images/payroll/employee_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/employee_config.jpg -------------------------------------------------------------------------------- /docs/images/payroll/extrait_payslip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/extrait_payslip.jpg -------------------------------------------------------------------------------- /docs/images/payroll/filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/filter.jpg -------------------------------------------------------------------------------- /docs/images/payroll/form_add_bareme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/form_add_bareme.jpg -------------------------------------------------------------------------------- /docs/images/payroll/gest_ipr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/gest_ipr.jpg -------------------------------------------------------------------------------- /docs/images/payroll/gest_vacances.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/gest_vacances.jpg -------------------------------------------------------------------------------- /docs/images/payroll/grille_grade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/grille_grade.jpg -------------------------------------------------------------------------------- /docs/images/payroll/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/menu.jpg -------------------------------------------------------------------------------- /docs/images/payroll/menu_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/menu_config.jpg -------------------------------------------------------------------------------- /docs/images/payroll/payroll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/payroll.jpg -------------------------------------------------------------------------------- /docs/images/payroll/payslip_drc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/payslip_drc.jpg -------------------------------------------------------------------------------- /docs/images/payroll/payslip_france.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/payslip_france.jpg -------------------------------------------------------------------------------- /docs/images/payroll/put_wait_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/put_wait_list.jpg -------------------------------------------------------------------------------- /docs/images/payroll/recherche.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/recherche.jpg -------------------------------------------------------------------------------- /docs/images/payroll/rub_payroll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/payroll/rub_payroll.jpg -------------------------------------------------------------------------------- /docs/images/r_a_interface_principal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/r_a_interface_principal.png -------------------------------------------------------------------------------- /docs/images/stock_dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_dependencies.svg -------------------------------------------------------------------------------- /docs/images/stock_lot_registry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_lot_registry.jpg -------------------------------------------------------------------------------- /docs/images/stock_movement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_movement.svg -------------------------------------------------------------------------------- /docs/images/stock_movement_registry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_movement_registry.jpg -------------------------------------------------------------------------------- /docs/images/stock_sheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_sheet.jpg -------------------------------------------------------------------------------- /docs/images/stock_sheet_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/images/stock_sheet_overview.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/docs/logo.png -------------------------------------------------------------------------------- /gulpfile.js/client-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-css.js -------------------------------------------------------------------------------- /gulpfile.js/client-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-fonts.js -------------------------------------------------------------------------------- /gulpfile.js/client-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-i18n.js -------------------------------------------------------------------------------- /gulpfile.js/client-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-js.js -------------------------------------------------------------------------------- /gulpfile.js/client-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-static.js -------------------------------------------------------------------------------- /gulpfile.js/client-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/client-vendor.js -------------------------------------------------------------------------------- /gulpfile.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/index.js -------------------------------------------------------------------------------- /gulpfile.js/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/server.js -------------------------------------------------------------------------------- /gulpfile.js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/gulpfile.js/util.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/karma.conf.js -------------------------------------------------------------------------------- /mocha-reporter-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/mocha-reporter-options.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/playwright.config.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/access.js -------------------------------------------------------------------------------- /server/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/constants.js -------------------------------------------------------------------------------- /server/config/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/express.js -------------------------------------------------------------------------------- /server/config/identifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/identifiers.js -------------------------------------------------------------------------------- /server/config/interceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/interceptors.js -------------------------------------------------------------------------------- /server/config/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/jwt.js -------------------------------------------------------------------------------- /server/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/config/routes.js -------------------------------------------------------------------------------- /server/controllers/admin/cron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/cron/index.js -------------------------------------------------------------------------------- /server/controllers/admin/enterprises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/enterprises.js -------------------------------------------------------------------------------- /server/controllers/admin/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/functions.js -------------------------------------------------------------------------------- /server/controllers/admin/grades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/grades.js -------------------------------------------------------------------------------- /server/controllers/admin/helpdesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/helpdesk.js -------------------------------------------------------------------------------- /server/controllers/admin/holidays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/holidays.js -------------------------------------------------------------------------------- /server/controllers/admin/iprTax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/iprTax.js -------------------------------------------------------------------------------- /server/controllers/admin/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/languages.js -------------------------------------------------------------------------------- /server/controllers/admin/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/locations.js -------------------------------------------------------------------------------- /server/controllers/admin/offdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/offdays.js -------------------------------------------------------------------------------- /server/controllers/admin/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/projects.js -------------------------------------------------------------------------------- /server/controllers/admin/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/roles.js -------------------------------------------------------------------------------- /server/controllers/admin/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/services.js -------------------------------------------------------------------------------- /server/controllers/admin/suppliers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/suppliers.js -------------------------------------------------------------------------------- /server/controllers/admin/surveyForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/surveyForm.js -------------------------------------------------------------------------------- /server/controllers/admin/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/tags.js -------------------------------------------------------------------------------- /server/controllers/admin/titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/titles.js -------------------------------------------------------------------------------- /server/controllers/admin/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/admin/users/index.js -------------------------------------------------------------------------------- /server/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/auth.js -------------------------------------------------------------------------------- /server/controllers/dashboard/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/dashboard/stats.js -------------------------------------------------------------------------------- /server/controllers/finance/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/cash.js -------------------------------------------------------------------------------- /server/controllers/finance/creditors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/creditors.js -------------------------------------------------------------------------------- /server/controllers/finance/discounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/discounts.js -------------------------------------------------------------------------------- /server/controllers/finance/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/exchange.js -------------------------------------------------------------------------------- /server/controllers/finance/fiscal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/fiscal.js -------------------------------------------------------------------------------- /server/controllers/finance/period.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/period.js -------------------------------------------------------------------------------- /server/controllers/finance/purchases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/purchases.js -------------------------------------------------------------------------------- /server/controllers/finance/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/shared.js -------------------------------------------------------------------------------- /server/controllers/finance/subsidies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/subsidies.js -------------------------------------------------------------------------------- /server/controllers/finance/vouchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/finance/vouchers.js -------------------------------------------------------------------------------- /server/controllers/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/groups.js -------------------------------------------------------------------------------- /server/controllers/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/install.js -------------------------------------------------------------------------------- /server/controllers/inventory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/inventory/index.js -------------------------------------------------------------------------------- /server/controllers/medical/diagnoses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/medical/diagnoses.js -------------------------------------------------------------------------------- /server/controllers/medical/snis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/medical/snis.js -------------------------------------------------------------------------------- /server/controllers/medical/ward/bed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/medical/ward/bed.js -------------------------------------------------------------------------------- /server/controllers/medical/ward/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/medical/ward/room.js -------------------------------------------------------------------------------- /server/controllers/medical/ward/ward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/medical/ward/ward.js -------------------------------------------------------------------------------- /server/controllers/payroll/multiplePayrollIndice/report.handlebars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/controllers/report.handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/report.handlers.js -------------------------------------------------------------------------------- /server/controllers/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/report.js -------------------------------------------------------------------------------- /server/controllers/stock/api/rumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/api/rumer.js -------------------------------------------------------------------------------- /server/controllers/stock/asset_scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/asset_scan.js -------------------------------------------------------------------------------- /server/controllers/stock/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/assign.js -------------------------------------------------------------------------------- /server/controllers/stock/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/core.js -------------------------------------------------------------------------------- /server/controllers/stock/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/import.js -------------------------------------------------------------------------------- /server/controllers/stock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/index.js -------------------------------------------------------------------------------- /server/controllers/stock/lots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/stock/lots.js -------------------------------------------------------------------------------- /server/controllers/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/system.js -------------------------------------------------------------------------------- /server/controllers/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/tree.js -------------------------------------------------------------------------------- /server/controllers/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/controllers/units.js -------------------------------------------------------------------------------- /server/lib/NumberToText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/NumberToText.js -------------------------------------------------------------------------------- /server/lib/ReportManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/ReportManager.js -------------------------------------------------------------------------------- /server/lib/barcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/barcode.js -------------------------------------------------------------------------------- /server/lib/bhMoment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/bhMoment.js -------------------------------------------------------------------------------- /server/lib/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/db/index.js -------------------------------------------------------------------------------- /server/lib/db/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/db/transaction.js -------------------------------------------------------------------------------- /server/lib/errors/BadRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/errors/BadRequest.js -------------------------------------------------------------------------------- /server/lib/errors/Forbidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/errors/Forbidden.js -------------------------------------------------------------------------------- /server/lib/errors/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/errors/NotFound.js -------------------------------------------------------------------------------- /server/lib/errors/Unauthorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/errors/Unauthorized.js -------------------------------------------------------------------------------- /server/lib/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/errors/index.js -------------------------------------------------------------------------------- /server/lib/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/filter.js -------------------------------------------------------------------------------- /server/lib/helpers/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/helpers/translate.js -------------------------------------------------------------------------------- /server/lib/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/mailer.js -------------------------------------------------------------------------------- /server/lib/period.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/period.js -------------------------------------------------------------------------------- /server/lib/referenceLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/referenceLookup.js -------------------------------------------------------------------------------- /server/lib/renderers/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/csv.js -------------------------------------------------------------------------------- /server/lib/renderers/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/doc.js -------------------------------------------------------------------------------- /server/lib/renderers/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/html.js -------------------------------------------------------------------------------- /server/lib/renderers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/json.js -------------------------------------------------------------------------------- /server/lib/renderers/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/pdf.js -------------------------------------------------------------------------------- /server/lib/renderers/xls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/xls.js -------------------------------------------------------------------------------- /server/lib/renderers/xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/xlsx.js -------------------------------------------------------------------------------- /server/lib/renderers/xlsxReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/xlsxReceipt.js -------------------------------------------------------------------------------- /server/lib/renderers/xlsxReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/renderers/xlsxReport.js -------------------------------------------------------------------------------- /server/lib/stepdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/stepdown.js -------------------------------------------------------------------------------- /server/lib/template/helpers/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/helpers/dates.js -------------------------------------------------------------------------------- /server/lib/template/helpers/finance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/helpers/finance.js -------------------------------------------------------------------------------- /server/lib/template/helpers/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/helpers/logic.js -------------------------------------------------------------------------------- /server/lib/template/helpers/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/helpers/math.js -------------------------------------------------------------------------------- /server/lib/template/helpers/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/helpers/objects.js -------------------------------------------------------------------------------- /server/lib/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/template/index.js -------------------------------------------------------------------------------- /server/lib/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/uploader.js -------------------------------------------------------------------------------- /server/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/lib/util.js -------------------------------------------------------------------------------- /server/models/01-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/01-schema.sql -------------------------------------------------------------------------------- /server/models/02-functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/02-functions.sql -------------------------------------------------------------------------------- /server/models/03-procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/03-procedures.sql -------------------------------------------------------------------------------- /server/models/04-triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/04-triggers.sql -------------------------------------------------------------------------------- /server/models/05-icd10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/05-icd10.sql -------------------------------------------------------------------------------- /server/models/06-bhima.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/06-bhima.sql -------------------------------------------------------------------------------- /server/models/98-admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/98-admin.sql -------------------------------------------------------------------------------- /server/models/99-debug.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/server/models/99-debug.sql -------------------------------------------------------------------------------- /server/models/migrations/next/migrate.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sh/build-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/build-database.sh -------------------------------------------------------------------------------- /sh/build-init-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/build-init-database.sh -------------------------------------------------------------------------------- /sh/build-stock-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/build-stock-database.sh -------------------------------------------------------------------------------- /sh/install-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/install-tests.sh -------------------------------------------------------------------------------- /sh/integration-stock-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/integration-stock-tests.sh -------------------------------------------------------------------------------- /sh/integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/integration-tests.sh -------------------------------------------------------------------------------- /sh/server-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/server-unit-tests.sh -------------------------------------------------------------------------------- /sh/setup-migration-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/setup-migration-script.sh -------------------------------------------------------------------------------- /sh/test-clean-reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test-clean-reports.sh -------------------------------------------------------------------------------- /sh/test-e2e-account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test-e2e-account.sh -------------------------------------------------------------------------------- /sh/test-e2e-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test-e2e-all.sh -------------------------------------------------------------------------------- /sh/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test-e2e.sh -------------------------------------------------------------------------------- /sh/test-show-results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test-show-results.sh -------------------------------------------------------------------------------- /sh/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/sh/test.sh -------------------------------------------------------------------------------- /test/client-unit/filters/bytes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/filters/bytes.spec.js -------------------------------------------------------------------------------- /test/client-unit/mocks/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/mocks/data.js -------------------------------------------------------------------------------- /test/client-unit/mocks/stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/mocks/stock.js -------------------------------------------------------------------------------- /test/client-unit/services/Focus.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/services/Focus.spec.js -------------------------------------------------------------------------------- /test/client-unit/services/Pool.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/services/Pool.spec.js -------------------------------------------------------------------------------- /test/client-unit/services/Store.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/services/Store.spec.js -------------------------------------------------------------------------------- /test/client-unit/services/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/services/util.spec.js -------------------------------------------------------------------------------- /test/client-unit/services/uuid.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/client-unit/services/uuid.spec.js -------------------------------------------------------------------------------- /test/data-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data-init.sql -------------------------------------------------------------------------------- /test/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data.sql -------------------------------------------------------------------------------- /test/data/accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/accounts.sql -------------------------------------------------------------------------------- /test/data/core.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/core.sql -------------------------------------------------------------------------------- /test/data/enterprise.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/enterprise.sql -------------------------------------------------------------------------------- /test/data/inventories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/inventories.sql -------------------------------------------------------------------------------- /test/data/service-stock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/service-stock.sql -------------------------------------------------------------------------------- /test/data/stock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/data/stock.sql -------------------------------------------------------------------------------- /test/end-to-end/cash/cash.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/cash/cash.spec.js -------------------------------------------------------------------------------- /test/end-to-end/depots/depots.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/depots/depots.page.js -------------------------------------------------------------------------------- /test/end-to-end/depots/depots.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/depots/depots.spec.js -------------------------------------------------------------------------------- /test/end-to-end/errors/errors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/errors/errors.spec.js -------------------------------------------------------------------------------- /test/end-to-end/grades/grades.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/grades/grades.page.js -------------------------------------------------------------------------------- /test/end-to-end/grades/grades.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/grades/grades.spec.js -------------------------------------------------------------------------------- /test/end-to-end/inventory/list.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/inventory/list.spec.js -------------------------------------------------------------------------------- /test/end-to-end/journal/journal.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/journal/journal.page.js -------------------------------------------------------------------------------- /test/end-to-end/journal/journal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/journal/journal.spec.js -------------------------------------------------------------------------------- /test/end-to-end/locations/modal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/locations/modal.spec.js -------------------------------------------------------------------------------- /test/end-to-end/login/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/login/login.spec.js -------------------------------------------------------------------------------- /test/end-to-end/offdays/offdays.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/offdays/offdays.page.js -------------------------------------------------------------------------------- /test/end-to-end/offdays/offdays.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/offdays/offdays.spec.js -------------------------------------------------------------------------------- /test/end-to-end/patient/groups.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/patient/groups.spec.js -------------------------------------------------------------------------------- /test/end-to-end/patient/picture.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/patient/picture.spec.js -------------------------------------------------------------------------------- /test/end-to-end/patient/record.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/patient/record.spec.js -------------------------------------------------------------------------------- /test/end-to-end/patient/update.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/patient/update.spec.js -------------------------------------------------------------------------------- /test/end-to-end/reports/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/reports/page.js -------------------------------------------------------------------------------- /test/end-to-end/rubrics/rubrics.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/rubrics/rubrics.page.js -------------------------------------------------------------------------------- /test/end-to-end/rubrics/rubrics.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/rubrics/rubrics.spec.js -------------------------------------------------------------------------------- /test/end-to-end/shared/GridAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/GridAction.js -------------------------------------------------------------------------------- /test/end-to-end/shared/GridRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/GridRow.js -------------------------------------------------------------------------------- /test/end-to-end/shared/GridUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/GridUtils.js -------------------------------------------------------------------------------- /test/end-to-end/shared/TestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/TestUtils.js -------------------------------------------------------------------------------- /test/end-to-end/shared/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/helpers.js -------------------------------------------------------------------------------- /test/end-to-end/shared/search.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/shared/search.page.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.assign.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.entry.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.exit.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.import.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.lots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.lots.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.setting.js -------------------------------------------------------------------------------- /test/end-to-end/stock/stock.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/stock/stock.spec.js -------------------------------------------------------------------------------- /test/end-to-end/tags/tags.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/tags/tags.page.js -------------------------------------------------------------------------------- /test/end-to-end/tags/tags.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/tags/tags.spec.js -------------------------------------------------------------------------------- /test/end-to-end/user/roles.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/user/roles.page.js -------------------------------------------------------------------------------- /test/end-to-end/user/roles.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/user/roles.spec.js -------------------------------------------------------------------------------- /test/end-to-end/user/user.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/user/user.page.js -------------------------------------------------------------------------------- /test/end-to-end/user/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/user/user.spec.js -------------------------------------------------------------------------------- /test/end-to-end/user/userCU.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/user/userCU.page.js -------------------------------------------------------------------------------- /test/end-to-end/visits/visits.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/visits/visits.page.js -------------------------------------------------------------------------------- /test/end-to-end/visits/visits.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/visits/visits.spec.js -------------------------------------------------------------------------------- /test/end-to-end/vouchers/simple.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/vouchers/simple.spec.js -------------------------------------------------------------------------------- /test/end-to-end/ward/bed/bed.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/bed/bed.page.js -------------------------------------------------------------------------------- /test/end-to-end/ward/bed/bed.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/bed/bed.spec.js -------------------------------------------------------------------------------- /test/end-to-end/ward/room/room.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/room/room.page.js -------------------------------------------------------------------------------- /test/end-to-end/ward/room/room.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/room/room.spec.js -------------------------------------------------------------------------------- /test/end-to-end/ward/ward/ward.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/ward/ward.page.js -------------------------------------------------------------------------------- /test/end-to-end/ward/ward/ward.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/end-to-end/ward/ward/ward.spec.js -------------------------------------------------------------------------------- /test/fixtures/bad-ohada-accounts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/bad-ohada-accounts.csv -------------------------------------------------------------------------------- /test/fixtures/bad-stock-to-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/bad-stock-to-import.csv -------------------------------------------------------------------------------- /test/fixtures/budget-to-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/budget-to-import.csv -------------------------------------------------------------------------------- /test/fixtures/custom-helpers.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/custom-helpers.handlebars -------------------------------------------------------------------------------- /test/fixtures/file.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/file.handlebars -------------------------------------------------------------------------------- /test/fixtures/file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/file.jpg -------------------------------------------------------------------------------- /test/fixtures/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/file.pdf -------------------------------------------------------------------------------- /test/fixtures/file.virus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/file.virus -------------------------------------------------------------------------------- /test/fixtures/inventory-to-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/inventory-to-import.csv -------------------------------------------------------------------------------- /test/fixtures/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/logo.ico -------------------------------------------------------------------------------- /test/fixtures/ohada-accounts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/ohada-accounts.csv -------------------------------------------------------------------------------- /test/fixtures/patient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/patient.png -------------------------------------------------------------------------------- /test/fixtures/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/sample.pdf -------------------------------------------------------------------------------- /test/fixtures/stock-to-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/stock-to-import.csv -------------------------------------------------------------------------------- /test/fixtures/translations-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/translations-en.json -------------------------------------------------------------------------------- /test/fixtures/translations-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/fixtures/translations-fr.json -------------------------------------------------------------------------------- /test/integration-install/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-install/install.js -------------------------------------------------------------------------------- /test/integration-install/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-install/setup.js -------------------------------------------------------------------------------- /test/integration-stock/depots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-stock/depots.js -------------------------------------------------------------------------------- /test/integration-stock/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-stock/helpers.js -------------------------------------------------------------------------------- /test/integration-stock/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-stock/setup.js -------------------------------------------------------------------------------- /test/integration-stock/shipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration-stock/shipment.js -------------------------------------------------------------------------------- /test/integration/accountCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accountCategories.js -------------------------------------------------------------------------------- /test/integration/accountConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accountConfig.js -------------------------------------------------------------------------------- /test/integration/accountFYBalances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accountFYBalances.js -------------------------------------------------------------------------------- /test/integration/accountReferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accountReferences.js -------------------------------------------------------------------------------- /test/integration/accountTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accountTypes.js -------------------------------------------------------------------------------- /test/integration/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/accounts.js -------------------------------------------------------------------------------- /test/integration/barcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/barcodes.js -------------------------------------------------------------------------------- /test/integration/budget/budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/budget/budget.js -------------------------------------------------------------------------------- /test/integration/budget/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/budget/import.js -------------------------------------------------------------------------------- /test/integration/cash.cautions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cash.cautions.js -------------------------------------------------------------------------------- /test/integration/cash.invoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cash.invoices.js -------------------------------------------------------------------------------- /test/integration/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cash.js -------------------------------------------------------------------------------- /test/integration/cash.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cash.search.js -------------------------------------------------------------------------------- /test/integration/cashboxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cashboxes.js -------------------------------------------------------------------------------- /test/integration/cost-centers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/cost-centers/index.js -------------------------------------------------------------------------------- /test/integration/creditorGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/creditorGroups.js -------------------------------------------------------------------------------- /test/integration/currencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/currencies.js -------------------------------------------------------------------------------- /test/integration/debtorGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/debtorGroups.js -------------------------------------------------------------------------------- /test/integration/debtors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/debtors.js -------------------------------------------------------------------------------- /test/integration/depots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/depots.js -------------------------------------------------------------------------------- /test/integration/discounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/discounts.js -------------------------------------------------------------------------------- /test/integration/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/employee.js -------------------------------------------------------------------------------- /test/integration/employeeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/employeeConfig.js -------------------------------------------------------------------------------- /test/integration/enterprises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/enterprises.js -------------------------------------------------------------------------------- /test/integration/entities/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/entities/entities.js -------------------------------------------------------------------------------- /test/integration/entities/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/entities/types.js -------------------------------------------------------------------------------- /test/integration/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/exchange.js -------------------------------------------------------------------------------- /test/integration/fillForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/fillForm.js -------------------------------------------------------------------------------- /test/integration/finance/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/finance/entities.js -------------------------------------------------------------------------------- /test/integration/finance/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/finance/records.js -------------------------------------------------------------------------------- /test/integration/fiscalYear.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/fiscalYear.extra.js -------------------------------------------------------------------------------- /test/integration/fiscalYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/fiscalYear.js -------------------------------------------------------------------------------- /test/integration/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/functions.js -------------------------------------------------------------------------------- /test/integration/fundingSources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/fundingSources.js -------------------------------------------------------------------------------- /test/integration/grades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/grades.js -------------------------------------------------------------------------------- /test/integration/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/groups.js -------------------------------------------------------------------------------- /test/integration/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/helpers.js -------------------------------------------------------------------------------- /test/integration/holidays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/holidays.js -------------------------------------------------------------------------------- /test/integration/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/indicator.js -------------------------------------------------------------------------------- /test/integration/inventory/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/group.js -------------------------------------------------------------------------------- /test/integration/inventory/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/import.js -------------------------------------------------------------------------------- /test/integration/inventory/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/metadata.js -------------------------------------------------------------------------------- /test/integration/inventory/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/shared.js -------------------------------------------------------------------------------- /test/integration/inventory/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/type.js -------------------------------------------------------------------------------- /test/integration/inventory/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/inventory/unit.js -------------------------------------------------------------------------------- /test/integration/invoicingFees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/invoicingFees.js -------------------------------------------------------------------------------- /test/integration/journal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/journal.js -------------------------------------------------------------------------------- /test/integration/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/locations.js -------------------------------------------------------------------------------- /test/integration/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/login.js -------------------------------------------------------------------------------- /test/integration/mergeLots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/mergeLots.js -------------------------------------------------------------------------------- /test/integration/offdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/offdays.js -------------------------------------------------------------------------------- /test/integration/patientDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientDocuments.js -------------------------------------------------------------------------------- /test/integration/patientGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientGroups.js -------------------------------------------------------------------------------- /test/integration/patientInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientInvoice.js -------------------------------------------------------------------------------- /test/integration/patientMatches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientMatches.js -------------------------------------------------------------------------------- /test/integration/patientPictures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientPictures.js -------------------------------------------------------------------------------- /test/integration/patientVisits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patientVisits.js -------------------------------------------------------------------------------- /test/integration/patients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/patients.js -------------------------------------------------------------------------------- /test/integration/payroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/payroll.js -------------------------------------------------------------------------------- /test/integration/payrollConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/payrollConfig.js -------------------------------------------------------------------------------- /test/integration/priceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/priceList.js -------------------------------------------------------------------------------- /test/integration/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/projects.js -------------------------------------------------------------------------------- /test/integration/purchase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/purchase.js -------------------------------------------------------------------------------- /test/integration/remoteAccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/remoteAccess.js -------------------------------------------------------------------------------- /test/integration/reports/rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/reports/rendering.js -------------------------------------------------------------------------------- /test/integration/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/role.js -------------------------------------------------------------------------------- /test/integration/rubrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/rubrics.js -------------------------------------------------------------------------------- /test/integration/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/services.js -------------------------------------------------------------------------------- /test/integration/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/setup.js -------------------------------------------------------------------------------- /test/integration/staffingIndices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/staffingIndices.js -------------------------------------------------------------------------------- /test/integration/stock/asset_scans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/asset_scans.js -------------------------------------------------------------------------------- /test/integration/stock/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/assign.js -------------------------------------------------------------------------------- /test/integration/stock/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/import.js -------------------------------------------------------------------------------- /test/integration/stock/lots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/lots.js -------------------------------------------------------------------------------- /test/integration/stock/requisition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/requisition.js -------------------------------------------------------------------------------- /test/integration/stock/rumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/rumer.js -------------------------------------------------------------------------------- /test/integration/stock/satisfication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/satisfication.js -------------------------------------------------------------------------------- /test/integration/stock/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/shared.js -------------------------------------------------------------------------------- /test/integration/stock/stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/stock.js -------------------------------------------------------------------------------- /test/integration/stock/stockSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/stock/stockSettings.js -------------------------------------------------------------------------------- /test/integration/subsidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/subsidy.js -------------------------------------------------------------------------------- /test/integration/suppliers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/suppliers.js -------------------------------------------------------------------------------- /test/integration/surveyForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/surveyForm.js -------------------------------------------------------------------------------- /test/integration/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/system.js -------------------------------------------------------------------------------- /test/integration/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/tags.js -------------------------------------------------------------------------------- /test/integration/taxIpr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/taxIpr.js -------------------------------------------------------------------------------- /test/integration/titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/titles.js -------------------------------------------------------------------------------- /test/integration/transactionType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/transactionType.js -------------------------------------------------------------------------------- /test/integration/trialBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/trialBalance.js -------------------------------------------------------------------------------- /test/integration/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/users.js -------------------------------------------------------------------------------- /test/integration/vouchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/vouchers.js -------------------------------------------------------------------------------- /test/integration/ward/bed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/ward/bed.js -------------------------------------------------------------------------------- /test/integration/ward/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/ward/room.js -------------------------------------------------------------------------------- /test/integration/ward/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/ward/shared.js -------------------------------------------------------------------------------- /test/integration/ward/ward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/ward/ward.js -------------------------------------------------------------------------------- /test/integration/weekEndConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/integration/weekEndConfig.js -------------------------------------------------------------------------------- /test/server-unit/bhMoment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/bhMoment.spec.js -------------------------------------------------------------------------------- /test/server-unit/cron/timers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/cron/timers.spec.js -------------------------------------------------------------------------------- /test/server-unit/csv.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/csv.spec.js -------------------------------------------------------------------------------- /test/server-unit/dates.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/dates.spec.js -------------------------------------------------------------------------------- /test/server-unit/db.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/db.spec.js -------------------------------------------------------------------------------- /test/server-unit/filter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/filter.spec.js -------------------------------------------------------------------------------- /test/server-unit/handlebars.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/handlebars.spec.js -------------------------------------------------------------------------------- /test/server-unit/numberToText.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/numberToText.spec.js -------------------------------------------------------------------------------- /test/server-unit/payroll/common.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/payroll/common.spec.js -------------------------------------------------------------------------------- /test/server-unit/pdf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/pdf.spec.js -------------------------------------------------------------------------------- /test/server-unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/setup.js -------------------------------------------------------------------------------- /test/server-unit/stepdown.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/stepdown.data.js -------------------------------------------------------------------------------- /test/server-unit/stepdown.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/stepdown.spec.js -------------------------------------------------------------------------------- /test/server-unit/translate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/translate.spec.js -------------------------------------------------------------------------------- /test/server-unit/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/util.spec.js -------------------------------------------------------------------------------- /test/server-unit/xlsx.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/test/server-unit/xlsx.spec.js -------------------------------------------------------------------------------- /utilities/translation/breakup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/utilities/translation/breakup.js -------------------------------------------------------------------------------- /utilities/translation/tfcomp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/utilities/translation/tfcomp.js -------------------------------------------------------------------------------- /utilities/translation/tfsort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/third-culture-software/bhima/HEAD/utilities/translation/tfsort.js --------------------------------------------------------------------------------