├── .DS_Store ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── CODEOWNERS │ ├── codesee-arch-diagram.yml │ └── github-repo-stats.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── INSTALLATION-INSTRUCTIONS.md ├── LICENSE ├── README.md ├── SECURITY.md ├── backend ├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode │ └── settings.json ├── Dockerfile ├── jsconfig.json ├── package-lock.json ├── package.json └── src │ ├── app.js │ ├── controllers │ ├── appControllers │ │ ├── clientController │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── listAll.js │ │ │ ├── migrate.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ ├── search.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ ├── companyController │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ └── update.js │ │ ├── currencyController │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ └── update.js │ │ ├── index.js │ │ ├── invoiceController │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ ├── schemaValidate.js │ │ │ ├── sendMail.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ ├── leadController │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── listAll.js │ │ │ ├── migrate.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ ├── search.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ ├── offerController │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── sendMail.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ ├── orderController │ │ │ ├── create.js │ │ │ └── index.js │ │ ├── paymentController │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ ├── sendMail.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ ├── paymentModeController │ │ │ └── index.js │ │ ├── peopleController │ │ │ ├── index.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ └── update.js │ │ ├── quoteController │ │ │ ├── convertQuoteToInvoice.js │ │ │ ├── create.js │ │ │ ├── index.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── sendMail.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ └── taxesController │ │ │ └── index.js │ ├── coreControllers │ │ ├── adminAuth │ │ │ └── index.js │ │ ├── adminController │ │ │ └── index.js │ │ ├── emailController │ │ │ └── index.js │ │ ├── settingController │ │ │ ├── index.js │ │ │ ├── listAll.js │ │ │ ├── listBySettingKey.js │ │ │ ├── readBySettingKey.js │ │ │ ├── updateBySettingKey.js │ │ │ └── updateManySetting.js │ │ └── setup.js │ ├── middlewaresControllers │ │ ├── createAuthMiddleware │ │ │ ├── authUser.js │ │ │ ├── checkAndCorrectURL.js │ │ │ ├── forgetPassword.js │ │ │ ├── index.js │ │ │ ├── isValidAuthToken.js │ │ │ ├── login.js │ │ │ ├── logout.js │ │ │ ├── resetPassword.js │ │ │ ├── sendIdurarOffer.js │ │ │ └── sendMail.js │ │ ├── createCRUDController │ │ │ ├── create.js │ │ │ ├── filter.js │ │ │ ├── index.js │ │ │ ├── listAll.js │ │ │ ├── paginatedList.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ ├── search.js │ │ │ ├── summary.js │ │ │ └── update.js │ │ └── createUserController │ │ │ ├── create.js │ │ │ ├── disable.js │ │ │ ├── filter.js │ │ │ ├── index.js │ │ │ ├── listAll.js │ │ │ ├── paginatedList.js │ │ │ ├── photo.js │ │ │ ├── profile.js │ │ │ ├── read.js │ │ │ ├── remove.js │ │ │ ├── search.js │ │ │ ├── status.js │ │ │ ├── update.js │ │ │ ├── updatePassword.js │ │ │ ├── updateProfile.js │ │ │ └── updateProfilePassword.js │ └── pdfController │ │ └── index.js │ ├── emailTemplate │ ├── SendEmailTemplate.js │ └── emailVerfication.js │ ├── handlers │ ├── downloadHandler │ │ └── downloadPdf.js │ └── errorHandlers.js │ ├── helpers.js │ ├── locale │ ├── languages.js │ ├── translation │ │ ├── ar_eg.js │ │ ├── az_az.js │ │ ├── bg_bg.js │ │ ├── bn_bd.js │ │ ├── by_by.js │ │ ├── ca_es.js │ │ ├── cs_cz.js │ │ ├── da_dk.js │ │ ├── de_de.js │ │ ├── el_gr.js │ │ ├── en_us.js │ │ ├── es_es.js │ │ ├── et_ee.js │ │ ├── eu_es.js │ │ ├── fa_ir.js │ │ ├── fi_fi.js │ │ ├── fil_ph.js │ │ ├── fr_fr.js │ │ ├── gl_es.js │ │ ├── he_il.js │ │ ├── hi_in.js │ │ ├── hr_hr.js │ │ ├── hu_hu.js │ │ ├── hy_am.js │ │ ├── id_id.js │ │ ├── is_is.js │ │ ├── it_it.js │ │ ├── ja_jp.js │ │ ├── ka_ge.js │ │ ├── kb_dz.js │ │ ├── kk_kz.js │ │ ├── kmr_iq.js │ │ ├── ko_kr.js │ │ ├── lt_lt.js │ │ ├── lv_lv.js │ │ ├── mk_mk.js │ │ ├── mn_mn.js │ │ ├── ms_my.js │ │ ├── mt_mt.js │ │ ├── nb_no.js │ │ ├── ne_np.js │ │ ├── nl_nl.js │ │ ├── pl_pl.js │ │ ├── pt_br.js │ │ ├── pt_pt.js │ │ ├── ro_ro.js │ │ ├── ru_ru.js │ │ ├── sk_sk.js │ │ ├── sl_si.js │ │ ├── sq_al.js │ │ ├── sr_rs.js │ │ ├── sv_se.js │ │ ├── sw_ke.js │ │ ├── ta_in.js │ │ ├── th_th.js │ │ ├── tr_tr.js │ │ ├── uk_ua.js │ │ ├── ur_pk.js │ │ ├── uz_uz.js │ │ ├── vi_vn.js │ │ └── zh_cn.js │ └── useLanguage.js │ ├── middlewares │ ├── inventory │ │ ├── generateUniqueNumber.js │ │ └── index.js │ ├── permission.js │ ├── serverData.js │ ├── settings │ │ ├── increaseBySettingKey.js │ │ ├── index.js │ │ ├── listAllSettings.js │ │ ├── listBySettingKey.js │ │ ├── loadSettings.js │ │ ├── readBySettingKey.js │ │ └── updateBySettingKey.js │ └── uploadMiddleware │ │ ├── DoSingleStorage.js │ │ ├── LocalSingleStorage.js │ │ ├── index.js │ │ ├── singleStorageUpload.js │ │ └── utils │ │ ├── LocalfileFilter.js │ │ └── fileFilterMiddleware.js │ ├── models │ ├── .gitkeep │ ├── appModels │ │ ├── Client.js │ │ ├── Company.js │ │ ├── Currency.js │ │ ├── Employee.js │ │ ├── Expense.js │ │ ├── ExpenseCategory.js │ │ ├── Inventory.js │ │ ├── InventoryAdjustment.js │ │ ├── Invoice.js │ │ ├── Lead.js │ │ ├── Offer.js │ │ ├── Order.js │ │ ├── Payment.js │ │ ├── PaymentMode.js │ │ ├── People.js │ │ ├── Product.js │ │ ├── ProductCategory.js │ │ ├── Purchase.js │ │ ├── Quote.js │ │ ├── Salary.js │ │ ├── SalaryPayment.js │ │ ├── Shipment.js │ │ ├── Supplier.js │ │ ├── Survey.js │ │ └── Taxes.js │ ├── coreModels │ │ ├── Admin.js │ │ ├── AdminPassword.js │ │ ├── Email.js │ │ ├── Setting.js │ │ └── Upload.js │ └── utils │ │ └── index.js │ ├── pdf │ ├── Invoice.pug │ ├── Offer.pug │ ├── Payment.pug │ └── Quote.pug │ ├── public │ └── uploads │ │ ├── admin │ │ ├── capture-d-ecran-2024-02-21-a-12-w0hjt.png │ │ ├── favicon-ftos5.png │ │ ├── icon-idurar-g45k2.png │ │ ├── icon-idurar-jvz3e.png │ │ └── icon-idurar-vhpx5.png │ │ └── setting │ │ ├── icon-idurar-mjgtd.png │ │ ├── idurar-app-large-ll86m.png │ │ ├── idurar-crm-erp-consn.png │ │ ├── idurar-crm-erp-kez4s.png │ │ └── idurar-crm-erp-na1f3.png │ ├── routes │ ├── appRoutes │ │ └── appApi.js │ └── coreRoutes │ │ ├── coreApi.js │ │ ├── coreAuth.js │ │ ├── coreDownloadRouter.js │ │ └── corePublicRouter.js │ ├── server.js │ ├── settings │ ├── index.js │ ├── useAppSettings.js │ ├── useDate.js │ └── useMoney.js │ ├── setup │ ├── defaultSettings │ │ ├── appSettings.json │ │ ├── clientSettings.json │ │ ├── companySettings.json │ │ ├── emailSettings.json │ │ ├── financeSettings.json │ │ ├── inventorySettings.json │ │ ├── invoiceSettings.json │ │ ├── leadSettings.json │ │ ├── moneyFormatSettings.json │ │ ├── offerSettings.json │ │ └── quoteSettings.json │ ├── emailTemplate │ │ └── index.json │ ├── reset.js │ ├── setup.js │ ├── setupConfig.json │ └── upgrade.js │ └── utils │ ├── countryList.js │ ├── currency.js │ └── currencyList.js ├── doc ├── README.fr.md └── README.sp.md ├── docker-compose.yml ├── features ├── ar_eg_ملف_مفتوح_المصدر_مجاني_للبرمجيات_ERP_CRM.md ├── bg_bg_свободен_отворен_източник_erp_crm_софтуер.md ├── bn_bd_ফ্রি_ওপেন_সোর্স_ইআরপি_সিআরএম_সফটওয়্যার.md ├── ca_es_software_erp_crm_de_codi_obert_gratuït.md ├── cs_cz_volný_otevřený_zdroj_erp_crm_software.md ├── da_dk_gratis_åben_kilde_erp_crm_software.md ├── de_de_frei_offene_quelle_erp_crm_software.md ├── el_gr_ελεύθερο_ανοικτο_πηγαίο_erp_crm_λογισμικό.md ├── en_us_free_open_source_erp_crm_software.md ├── es_es_software_erp_crm_de_código_abierto_y_gratis.md ├── et_ee_tasuta_avatud_lähtekoodiga_erp_crm_tarkvara.md ├── fa_ir_رایگان_منبع_باز_نرم‌افزار_مدیریت_مالی_و_ارتباطات.md ├── fi_fi_ilmainen_avoin_lähdekoodi_erp_crm_ohjelmisto.md ├── fr_fr_gratuit_logiciel_erp_crm_open_source.md ├── hi_in_मुफ्त_खुला_स्रोत_ईआरपी_सीआरएम_सॉफ़्टवेयर.md ├── hr_hr_besplatni_otvoreni_izvor_erp_crm_softver.md ├── hu_hu_ingyenes_nyílt_forráskódú_erp_crm_szoftver.md ├── id_id_perangkat_lunak_erp_crm_sumber_terbuka_gratis.md ├── it_it_software_erp_crm_open_source_gratuito.md ├── ja_jp_フリーオープンソースERP CRMソフトウェア.md ├── ko_kr_자유_오픈_소스_ERP_CRM_소프트웨어.md ├── lt_lt_nemokamas_atviras_kodo_erp_crm_programinė_įranga.md ├── lv_lv_bezmaksas_atvērtā_koda_erp_crm_programmatūra.md ├── mk_mk_фрее_опен_сорсе_ерп_црм_софтвер.md ├── ms_my_fail_terbuka_sumber_erp_crm_perisian.md ├── nb_no_gratis_åpen_kilde_erp_crm_programvare.md ├── nl_nl_vrije_open_source_erp_crm_software.md ├── pl_pl_bezpłatne_otwarte_źródło_erp_crm_oprogramowanie.md ├── pt_br_software_de_erp_e_crm_de_código_aberto_gratuito.md ├── pt_pt_software_de_erp_crm_de_código_aberto_gratuito.md ├── ro_ro_software_erp_crm_open_source_gratuit.md ├── ru_ru_бесплатное_открытое_программное_обеспечение_erp_crm.md ├── sk_sk_zdarma_otvorene_zdrojove_erp_crm_software.md ├── sl_si_brezplačni_odprtokodni_erp_crm_programski_oprema.md ├── sr_rs_besplatni_otvoreni_izvor_erp_crm_softver.md ├── sv_se_fri_öppen_källkods_erp_crm_programvara.md ├── th_th_ฟรี_โปรแกรม_ตัวจัดการแหล่งข้อมูลโปรแกรม_ERP_CRM.md ├── tr_tr_ücretsiz_açık_kaynak_erp_crm_yazılımı.md ├── uk_ua_безкоштовне_відкрите_джерело_erp_crm_програмне_забезпечення.md ├── ur_pk_مفت_کھولیں_سورس_erp_crm_سافٹ ویئر.md ├── vi_vn_chương_trình_quản_lý_doanh_nghiệp_crm_nguồn_mở_miễn_phí.md └── zh_cn_免费开源ERP CRM软件.md ├── frontend ├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode │ └── settings.json ├── Dockerfile ├── README.md ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ └── robots.txt ├── rollup.config.js ├── src │ ├── RootApp.jsx │ ├── apps │ │ ├── ErpApp.jsx │ │ ├── Header │ │ │ ├── AppsButton.jsx │ │ │ ├── HeaderContainer.jsx │ │ │ └── UpgradeButton.jsx │ │ ├── IdurarOs.jsx │ │ └── Navigation │ │ │ ├── AppNav.jsx │ │ │ ├── ExpensesNav.jsx │ │ │ └── NavigationContainer.jsx │ ├── auth │ │ ├── auth.service.js │ │ └── index.js │ ├── components │ │ ├── AutoCompleteAsync │ │ │ └── index.jsx │ │ ├── ChooseCurrency │ │ │ └── index.jsx │ │ ├── CollapseBox │ │ │ └── index.jsx │ │ ├── CreateForm │ │ │ └── index.jsx │ │ ├── CrudModal │ │ │ └── index.jsx │ │ ├── DataTable │ │ │ └── DataTable.jsx │ │ ├── DeleteModal │ │ │ └── index.jsx │ │ ├── IconMenu │ │ │ └── index.jsx │ │ ├── Loading │ │ │ └── index.jsx │ │ ├── MoneyInputFormItem │ │ │ └── index.jsx │ │ ├── MultiStepSelectAsync │ │ │ └── index.jsx │ │ ├── NotFound │ │ │ └── index.jsx │ │ ├── Notification │ │ │ └── index.jsx │ │ ├── PageLoader │ │ │ └── index.jsx │ │ ├── PaypalButton │ │ │ └── Subscription.jsx │ │ ├── ReadItem │ │ │ └── index.jsx │ │ ├── SearchItem │ │ │ └── index.jsx │ │ ├── SelectAsync │ │ │ └── index.jsx │ │ ├── SelectCurrency │ │ │ └── index.jsx │ │ ├── SelectLanguage │ │ │ └── index.jsx │ │ ├── SelectTag │ │ │ └── index.jsx │ │ ├── SidePanel │ │ │ └── index.jsx │ │ ├── TabsContent │ │ │ └── TabsContent.jsx │ │ ├── Tag │ │ │ └── index.jsx │ │ ├── UpdateForm │ │ │ └── index.jsx │ │ ├── Visibility │ │ │ └── index.jsx │ │ └── outsideClick.js │ │ │ ├── demo.js │ │ │ └── index.js │ ├── config │ │ └── serverApiConfig.js │ ├── context │ │ ├── adavancedCrud │ │ │ ├── actions.jsx │ │ │ ├── index.jsx │ │ │ ├── reducer.jsx │ │ │ ├── selectors.jsx │ │ │ └── types.jsx │ │ ├── appContext │ │ │ ├── actions.jsx │ │ │ ├── index.jsx │ │ │ ├── reducer.jsx │ │ │ └── types.jsx │ │ ├── crud │ │ │ ├── actions.jsx │ │ │ ├── index.jsx │ │ │ ├── reducer.jsx │ │ │ ├── selectors.jsx │ │ │ └── types.jsx │ │ ├── erp │ │ │ ├── actions.jsx │ │ │ ├── index.jsx │ │ │ ├── reducer.jsx │ │ │ ├── selectors.jsx │ │ │ └── types.jsx │ │ └── profileContext │ │ │ ├── actions.jsx │ │ │ ├── index.jsx │ │ │ ├── reducer.jsx │ │ │ ├── selectors.jsx │ │ │ └── types.jsx │ ├── favicon.ico │ ├── forms │ │ ├── AdminForm.jsx │ │ ├── AdvancedSettingsForm.jsx │ │ ├── CurrencyForm.jsx │ │ ├── CustomerForm.jsx │ │ ├── DynamicForm │ │ │ └── index.jsx │ │ ├── EmployeeForm.jsx │ │ ├── ForgetPasswordForm.jsx │ │ ├── InventoryForm.jsx │ │ ├── LeadForm.jsx │ │ ├── LoginForm.jsx │ │ ├── OrderForm.jsx │ │ ├── PaymentForm.jsx │ │ ├── PaymentModeForm.jsx │ │ ├── RegisterForm.jsx │ │ ├── ResetPasswordForm.jsx │ │ ├── TaxForm.jsx │ │ └── UpdateEmail.jsx │ ├── hooks │ │ ├── useDebounce.jsx │ │ ├── useFetch.jsx │ │ ├── useMail.jsx │ │ ├── useNetwork.jsx │ │ ├── useOnFetch.jsx │ │ ├── useResponsive.jsx │ │ └── useTimeoutFn.jsx │ ├── layout │ │ ├── AuthLayout │ │ │ └── index.jsx │ │ ├── CrudLayout │ │ │ └── index.jsx │ │ ├── DashboardLayout │ │ │ └── index.jsx │ │ ├── DefaultLayout │ │ │ └── index.jsx │ │ ├── ErpLayout │ │ │ └── index.jsx │ │ ├── Footer │ │ │ └── index.jsx │ │ ├── ProfileLayout │ │ │ └── index.jsx │ │ ├── SettingsLayout │ │ │ └── index.jsx │ │ └── index.jsx │ ├── locale │ │ ├── Localization.jsx │ │ ├── antdLocale.js │ │ ├── coreTranslation.js │ │ ├── languages.js │ │ ├── translation │ │ │ ├── ar_eg.js │ │ │ ├── az_az.js │ │ │ ├── bg_bg.js │ │ │ ├── bn_bd.js │ │ │ ├── by_by.js │ │ │ ├── ca_es.js │ │ │ ├── cs_cz.js │ │ │ ├── da_dk.js │ │ │ ├── de_de.js │ │ │ ├── el_gr.js │ │ │ ├── en_us.js │ │ │ ├── es_es.js │ │ │ ├── et_ee.js │ │ │ ├── eu_es.js │ │ │ ├── fa_ir.js │ │ │ ├── fi_fi.js │ │ │ ├── fil_ph.js │ │ │ ├── fr_fr.js │ │ │ ├── gl_es.js │ │ │ ├── he_il.js │ │ │ ├── hi_in.js │ │ │ ├── hr_hr.js │ │ │ ├── hu_hu.js │ │ │ ├── hy_am.js │ │ │ ├── id_id.js │ │ │ ├── is_is.js │ │ │ ├── it_it.js │ │ │ ├── ja_jp.js │ │ │ ├── ka_ge.js │ │ │ ├── kb_dz.js │ │ │ ├── kk_kz.js │ │ │ ├── kmr_iq.js │ │ │ ├── ko_kr.js │ │ │ ├── lt_lt.js │ │ │ ├── lv_lv.js │ │ │ ├── mk_mk.js │ │ │ ├── mn_mn.js │ │ │ ├── ms_my.js │ │ │ ├── mt_mt.js │ │ │ ├── nb_no.js │ │ │ ├── ne_np.js │ │ │ ├── nl_nl.js │ │ │ ├── otherTranslation.js │ │ │ ├── pl_pl.js │ │ │ ├── pt_br.js │ │ │ ├── pt_pt.js │ │ │ ├── ro_ro.js │ │ │ ├── ru_ru.js │ │ │ ├── sk_sk.js │ │ │ ├── sl_si.js │ │ │ ├── sq_al.js │ │ │ ├── sr_rs.js │ │ │ ├── sv_se.js │ │ │ ├── sw_ke.js │ │ │ ├── ta_in.js │ │ │ ├── th_th.js │ │ │ ├── tr_tr.js │ │ │ ├── translation.js │ │ │ ├── uk_ua.js │ │ │ ├── ur_pk.js │ │ │ ├── uz_uz.js │ │ │ ├── vi_vn.js │ │ │ └── zh_cn.js │ │ └── useLanguage.jsx │ ├── logo-icon.svg │ ├── main.jsx │ ├── modules │ │ ├── AdminCrudModule │ │ │ ├── AdminDataTable.jsx │ │ │ ├── UpdateForm.jsx │ │ │ ├── UpdatePassword.jsx │ │ │ └── index.jsx │ │ ├── AdvancedCrudModule │ │ │ ├── CreateItem.jsx │ │ │ ├── DataTable.jsx │ │ │ ├── DeleteItem.jsx │ │ │ ├── ItemRow.jsx │ │ │ ├── ReadItem.jsx │ │ │ ├── SearchItem.jsx │ │ │ ├── UpdateItem.jsx │ │ │ └── index.jsx │ │ ├── AuthModule │ │ │ ├── SideContent.jsx │ │ │ └── index.jsx │ │ ├── CrudModule │ │ │ └── CrudModule.jsx │ │ ├── DashboardModule │ │ │ ├── components │ │ │ │ ├── CustomerPreviewCard.jsx │ │ │ │ ├── PreviewCard.jsx │ │ │ │ ├── RecentTable │ │ │ │ │ └── index.jsx │ │ │ │ └── SummaryCard.jsx │ │ │ └── index.jsx │ │ ├── EmailModule │ │ │ ├── EmailDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadEmailModule │ │ │ │ ├── components │ │ │ │ │ └── ReadItem.jsx │ │ │ │ └── index.jsx │ │ │ └── UpdateEmailModule │ │ │ │ ├── componenets │ │ │ │ └── EmailForm.jsx │ │ │ │ └── index.jsx │ │ ├── ErpPanelModule │ │ │ ├── CreateItem.jsx │ │ │ ├── DataTable.jsx │ │ │ ├── DeleteItem.jsx │ │ │ ├── ItemRow.jsx │ │ │ ├── ReadItem.jsx │ │ │ ├── SearchItem.jsx │ │ │ ├── UpdateItem.jsx │ │ │ └── index.jsx │ │ ├── InvoiceModule │ │ │ ├── CreateInvoiceModule │ │ │ │ └── index.jsx │ │ │ ├── Forms │ │ │ │ └── InvoiceForm.jsx │ │ │ ├── InvoiceDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadInvoiceModule │ │ │ │ └── index.jsx │ │ │ ├── RecordPaymentModule │ │ │ │ ├── components │ │ │ │ │ ├── Payment.jsx │ │ │ │ │ └── RecordPayment.jsx │ │ │ │ └── index.jsx │ │ │ └── UpdateInvoiceModule │ │ │ │ └── index.jsx │ │ ├── OfferModule │ │ │ ├── CreateOfferModule │ │ │ │ └── index.jsx │ │ │ ├── Forms │ │ │ │ └── OfferForm.jsx │ │ │ ├── OfferDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadOfferModule │ │ │ │ ├── ReadOfferItem.jsx │ │ │ │ └── index.jsx │ │ │ └── UpdateOfferModule │ │ │ │ └── index.jsx │ │ ├── OrderModule │ │ │ ├── CreateOrderModule │ │ │ │ └── index.jsx │ │ │ ├── Forms │ │ │ │ └── InvoiceForm.jsx │ │ │ ├── OrderDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadOrderModule │ │ │ │ └── index.jsx │ │ │ ├── RecordPaymentModule │ │ │ │ ├── components │ │ │ │ │ ├── Payment.jsx │ │ │ │ │ └── RecordPayment.jsx │ │ │ │ └── index.jsx │ │ │ └── UpdateInvoiceModule │ │ │ │ └── index.jsx │ │ ├── PaymentModule │ │ │ ├── PaymentDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadPaymentModule │ │ │ │ ├── components │ │ │ │ │ └── ReadItem.jsx │ │ │ │ └── index.jsx │ │ │ └── UpdatePaymentModule │ │ │ │ ├── components │ │ │ │ ├── Payment.jsx │ │ │ │ └── UpdatePayment.jsx │ │ │ │ └── index.jsx │ │ ├── ProfileModule │ │ │ ├── components │ │ │ │ ├── AdminInfo.jsx │ │ │ │ ├── PasswordModal.jsx │ │ │ │ ├── Profile.jsx │ │ │ │ ├── ProfileAdminForm.jsx │ │ │ │ ├── UpdateAdmin.jsx │ │ │ │ └── UploadImg.jsx │ │ │ └── index.jsx │ │ ├── QuoteModule │ │ │ ├── CreateQuoteModule │ │ │ │ └── index.jsx │ │ │ ├── Forms │ │ │ │ └── QuoteForm.jsx │ │ │ ├── QuoteDataTableModule │ │ │ │ └── index.jsx │ │ │ ├── ReadQuoteModule │ │ │ │ └── index.jsx │ │ │ └── UpdateQuoteModule │ │ │ │ └── index.jsx │ │ └── SettingModule │ │ │ ├── CompanyLogoSettingsModule │ │ │ ├── forms │ │ │ │ └── AppSettingForm.jsx │ │ │ └── index.jsx │ │ │ ├── CompanySettingsModule │ │ │ ├── SettingsForm.jsx │ │ │ └── index.jsx │ │ │ ├── FinanceSettingsModule │ │ │ ├── SettingsForm.jsx │ │ │ └── index.jsx │ │ │ ├── GeneralSettingsModule │ │ │ ├── forms │ │ │ │ └── GeneralSettingForm.jsx │ │ │ └── index.jsx │ │ │ ├── MoneyFormatSettingsModule │ │ │ ├── SettingsForm.jsx │ │ │ └── index.jsx │ │ │ └── components │ │ │ ├── SetingsSection.jsx │ │ │ ├── UpdateSettingForm.jsx │ │ │ └── UpdateSettingModule.jsx │ ├── pages │ │ ├── About.jsx │ │ ├── Admin │ │ │ └── index.jsx │ │ ├── AdvancedSettings │ │ │ └── index.jsx │ │ ├── Company │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── Currency │ │ │ ├── config.js │ │ │ ├── currencyList.js │ │ │ └── index.jsx │ │ ├── Customer │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── Dashboard.jsx │ │ ├── Email │ │ │ ├── EmailRead.jsx │ │ │ ├── EmailUpdate.jsx │ │ │ └── index.jsx │ │ ├── Employee │ │ │ └── index.jsx │ │ ├── Expense │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── ExpenseCategory │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── ForgetPassword.jsx │ │ ├── Inventory │ │ │ └── index.jsx │ │ ├── Invoice │ │ │ ├── InvoiceCreate.jsx │ │ │ ├── InvoiceRead.jsx │ │ │ ├── InvoiceRecordPayment.jsx │ │ │ ├── InvoiceUpdate.jsx │ │ │ └── index.jsx │ │ ├── Lead │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── Login.jsx │ │ ├── Logout.jsx │ │ ├── NotFound.jsx │ │ ├── Offer │ │ │ ├── OfferCreate.jsx │ │ │ ├── OfferRead.jsx │ │ │ ├── OfferUpdate.jsx │ │ │ └── index.jsx │ │ ├── Order │ │ │ └── index.jsx │ │ ├── Payment │ │ │ ├── PaymentRead.jsx │ │ │ ├── PaymentUpdate.jsx │ │ │ └── index.jsx │ │ ├── PaymentMode │ │ │ └── index.jsx │ │ ├── People │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── Product │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── ProductCategory │ │ │ ├── config.js │ │ │ └── index.jsx │ │ ├── Profile.jsx │ │ ├── Quote │ │ │ ├── QuoteCreate.jsx │ │ │ ├── QuoteRead.jsx │ │ │ ├── QuoteUpdate.jsx │ │ │ └── index.jsx │ │ ├── ResetPassword.jsx │ │ ├── Settings │ │ │ ├── CompanyLogoSettings.jsx │ │ │ ├── CompanySettings.jsx │ │ │ ├── FinanceSettings.jsx │ │ │ ├── GeneralSettings.jsx │ │ │ ├── MoneyFormatSettings.jsx │ │ │ └── Settings.jsx │ │ └── Taxes │ │ │ └── index.jsx │ ├── redux │ │ ├── adavancedCrud │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── auth │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── crud │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── currency │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── erp │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── rootReducer.js │ │ ├── settings │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ │ ├── store.js │ │ ├── storePersist.js │ │ └── translate │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── selectors.js │ │ │ └── types.js │ ├── request │ │ ├── checkImage.js │ │ ├── codeMessage.js │ │ ├── errorHandler.js │ │ ├── index.js │ │ ├── request.js │ │ └── successHandler.js │ ├── router │ │ ├── AppRouter.jsx │ │ ├── AuthRouter.jsx │ │ └── routes.jsx │ ├── settings │ │ ├── index.jsx │ │ ├── useDate.jsx │ │ └── useMoney.jsx │ ├── style │ │ ├── app.css │ │ ├── images │ │ │ ├── checklist.svg │ │ │ ├── fitbit-gray.svg │ │ │ ├── flow-xo-gray.svg │ │ │ ├── gitlab-gray.svg │ │ │ ├── idurar-crm-erp.svg │ │ │ ├── layar-gray.svg │ │ │ ├── logo-icon.png │ │ │ ├── logo-icon.svg │ │ │ ├── logo-menu.png │ │ │ ├── logo-text.png │ │ │ ├── logo-text.svg │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── logo4.png │ │ │ └── photo.png │ │ └── partials │ │ │ ├── auth.css │ │ │ ├── collapseBox.css │ │ │ ├── core.css │ │ │ ├── customAntd.css │ │ │ ├── erp.css │ │ │ ├── header.css │ │ │ ├── layout.css │ │ │ ├── navigation.css │ │ │ ├── rest.css │ │ │ ├── sidePanel.css │ │ │ └── transition.css │ └── utils │ │ ├── calculate.js │ │ ├── color.js │ │ ├── countryList.js │ │ ├── currencyList.js │ │ ├── dataStructure.jsx │ │ ├── helpers.js │ │ ├── isBrowser.js │ │ ├── statusTagColor.js │ │ ├── tagColor.js │ │ └── valueType.js ├── temp.env └── vite.config.js ├── idurar-crm-erp.svg └── image.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/workflows/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.github/workflows/github-repo-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/.github/workflows/github-repo-stats.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALLATION-INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/INSTALLATION-INSTRUCTIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.zip 3 | .DS_Store 4 | .idea 5 | notes.md 6 | .env.local 7 | 8 | *.pdf -------------------------------------------------------------------------------- /backend/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | node_modules -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/.vscode/settings.json -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/jsconfig.json -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/app.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/listAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/listAll.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/migrate.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/search.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/clientController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/clientController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/companyController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/companyController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/companyController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/companyController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/companyController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/companyController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/currencyController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/currencyController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/currencyController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/currencyController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/currencyController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/currencyController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/schemaValidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/schemaValidate.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/sendMail.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/invoiceController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/invoiceController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/listAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/listAll.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/migrate.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/search.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/leadController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/leadController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/sendMail.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/offerController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/offerController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/orderController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/orderController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/orderController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/orderController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/sendMail.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/paymentModeController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/paymentModeController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/peopleController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/peopleController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/peopleController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/peopleController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/peopleController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/peopleController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/peopleController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/peopleController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/peopleController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/peopleController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/convertQuoteToInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/convertQuoteToInvoice.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/sendMail.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/quoteController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/quoteController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/appControllers/taxesController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/appControllers/taxesController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/adminAuth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/adminAuth/index.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/adminController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/adminController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/emailController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/emailController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/listAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/listAll.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/listBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/listBySettingKey.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/readBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/readBySettingKey.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/updateBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/updateBySettingKey.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/settingController/updateManySetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/settingController/updateManySetting.js -------------------------------------------------------------------------------- /backend/src/controllers/coreControllers/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/coreControllers/setup.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/authUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/authUser.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/forgetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/forgetPassword.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/index.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/login.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/logout.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/resetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/resetPassword.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createAuthMiddleware/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createAuthMiddleware/sendMail.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/filter.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/listAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/listAll.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/search.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/summary.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createCRUDController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createCRUDController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/create.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/disable.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/filter.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/index.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/listAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/listAll.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/paginatedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/paginatedList.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/photo.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/profile.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/read.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/remove.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/search.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/status.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/update.js -------------------------------------------------------------------------------- /backend/src/controllers/middlewaresControllers/createUserController/updateProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/middlewaresControllers/createUserController/updateProfile.js -------------------------------------------------------------------------------- /backend/src/controllers/pdfController/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/controllers/pdfController/index.js -------------------------------------------------------------------------------- /backend/src/emailTemplate/SendEmailTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/emailTemplate/SendEmailTemplate.js -------------------------------------------------------------------------------- /backend/src/emailTemplate/emailVerfication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/emailTemplate/emailVerfication.js -------------------------------------------------------------------------------- /backend/src/handlers/downloadHandler/downloadPdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/handlers/downloadHandler/downloadPdf.js -------------------------------------------------------------------------------- /backend/src/handlers/errorHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/handlers/errorHandlers.js -------------------------------------------------------------------------------- /backend/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/helpers.js -------------------------------------------------------------------------------- /backend/src/locale/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/languages.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ar_eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ar_eg.js -------------------------------------------------------------------------------- /backend/src/locale/translation/az_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/az_az.js -------------------------------------------------------------------------------- /backend/src/locale/translation/bg_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/bg_bg.js -------------------------------------------------------------------------------- /backend/src/locale/translation/bn_bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/bn_bd.js -------------------------------------------------------------------------------- /backend/src/locale/translation/by_by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/by_by.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ca_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ca_es.js -------------------------------------------------------------------------------- /backend/src/locale/translation/cs_cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/cs_cz.js -------------------------------------------------------------------------------- /backend/src/locale/translation/da_dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/da_dk.js -------------------------------------------------------------------------------- /backend/src/locale/translation/de_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/de_de.js -------------------------------------------------------------------------------- /backend/src/locale/translation/el_gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/el_gr.js -------------------------------------------------------------------------------- /backend/src/locale/translation/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/en_us.js -------------------------------------------------------------------------------- /backend/src/locale/translation/es_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/es_es.js -------------------------------------------------------------------------------- /backend/src/locale/translation/et_ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/et_ee.js -------------------------------------------------------------------------------- /backend/src/locale/translation/eu_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/eu_es.js -------------------------------------------------------------------------------- /backend/src/locale/translation/fa_ir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/fa_ir.js -------------------------------------------------------------------------------- /backend/src/locale/translation/fi_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/fi_fi.js -------------------------------------------------------------------------------- /backend/src/locale/translation/fil_ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/fil_ph.js -------------------------------------------------------------------------------- /backend/src/locale/translation/fr_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/fr_fr.js -------------------------------------------------------------------------------- /backend/src/locale/translation/gl_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/gl_es.js -------------------------------------------------------------------------------- /backend/src/locale/translation/he_il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/he_il.js -------------------------------------------------------------------------------- /backend/src/locale/translation/hi_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/hi_in.js -------------------------------------------------------------------------------- /backend/src/locale/translation/hr_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/hr_hr.js -------------------------------------------------------------------------------- /backend/src/locale/translation/hu_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/hu_hu.js -------------------------------------------------------------------------------- /backend/src/locale/translation/hy_am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/hy_am.js -------------------------------------------------------------------------------- /backend/src/locale/translation/id_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/id_id.js -------------------------------------------------------------------------------- /backend/src/locale/translation/is_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/is_is.js -------------------------------------------------------------------------------- /backend/src/locale/translation/it_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/it_it.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ja_jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ja_jp.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ka_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ka_ge.js -------------------------------------------------------------------------------- /backend/src/locale/translation/kb_dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/kb_dz.js -------------------------------------------------------------------------------- /backend/src/locale/translation/kk_kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/kk_kz.js -------------------------------------------------------------------------------- /backend/src/locale/translation/kmr_iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/kmr_iq.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ko_kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ko_kr.js -------------------------------------------------------------------------------- /backend/src/locale/translation/lt_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/lt_lt.js -------------------------------------------------------------------------------- /backend/src/locale/translation/lv_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/lv_lv.js -------------------------------------------------------------------------------- /backend/src/locale/translation/mk_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/mk_mk.js -------------------------------------------------------------------------------- /backend/src/locale/translation/mn_mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/mn_mn.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ms_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ms_my.js -------------------------------------------------------------------------------- /backend/src/locale/translation/mt_mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/mt_mt.js -------------------------------------------------------------------------------- /backend/src/locale/translation/nb_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/nb_no.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ne_np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ne_np.js -------------------------------------------------------------------------------- /backend/src/locale/translation/nl_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/nl_nl.js -------------------------------------------------------------------------------- /backend/src/locale/translation/pl_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/pl_pl.js -------------------------------------------------------------------------------- /backend/src/locale/translation/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/pt_br.js -------------------------------------------------------------------------------- /backend/src/locale/translation/pt_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/pt_pt.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ro_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ro_ro.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ru_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ru_ru.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sk_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sk_sk.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sl_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sl_si.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sq_al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sq_al.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sr_rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sr_rs.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sv_se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sv_se.js -------------------------------------------------------------------------------- /backend/src/locale/translation/sw_ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/sw_ke.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ta_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ta_in.js -------------------------------------------------------------------------------- /backend/src/locale/translation/th_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/th_th.js -------------------------------------------------------------------------------- /backend/src/locale/translation/tr_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/tr_tr.js -------------------------------------------------------------------------------- /backend/src/locale/translation/uk_ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/uk_ua.js -------------------------------------------------------------------------------- /backend/src/locale/translation/ur_pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/ur_pk.js -------------------------------------------------------------------------------- /backend/src/locale/translation/uz_uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/uz_uz.js -------------------------------------------------------------------------------- /backend/src/locale/translation/vi_vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/vi_vn.js -------------------------------------------------------------------------------- /backend/src/locale/translation/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/translation/zh_cn.js -------------------------------------------------------------------------------- /backend/src/locale/useLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/locale/useLanguage.js -------------------------------------------------------------------------------- /backend/src/middlewares/inventory/generateUniqueNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/inventory/generateUniqueNumber.js -------------------------------------------------------------------------------- /backend/src/middlewares/inventory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/inventory/index.js -------------------------------------------------------------------------------- /backend/src/middlewares/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/permission.js -------------------------------------------------------------------------------- /backend/src/middlewares/serverData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/serverData.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/increaseBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/increaseBySettingKey.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/index.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/listAllSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/listAllSettings.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/listBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/listBySettingKey.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/loadSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/loadSettings.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/readBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/readBySettingKey.js -------------------------------------------------------------------------------- /backend/src/middlewares/settings/updateBySettingKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/settings/updateBySettingKey.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/DoSingleStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/DoSingleStorage.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/LocalSingleStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/LocalSingleStorage.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/index.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/singleStorageUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/singleStorageUpload.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/utils/LocalfileFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/utils/LocalfileFilter.js -------------------------------------------------------------------------------- /backend/src/middlewares/uploadMiddleware/utils/fileFilterMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/middlewares/uploadMiddleware/utils/fileFilterMiddleware.js -------------------------------------------------------------------------------- /backend/src/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/models/appModels/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Client.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Company.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Currency.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Employee.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Expense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Expense.js -------------------------------------------------------------------------------- /backend/src/models/appModels/ExpenseCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/ExpenseCategory.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Inventory.js -------------------------------------------------------------------------------- /backend/src/models/appModels/InventoryAdjustment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/InventoryAdjustment.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Invoice.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Lead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Lead.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Offer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Offer.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Order.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Payment.js -------------------------------------------------------------------------------- /backend/src/models/appModels/PaymentMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/PaymentMode.js -------------------------------------------------------------------------------- /backend/src/models/appModels/People.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/People.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Product.js -------------------------------------------------------------------------------- /backend/src/models/appModels/ProductCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/ProductCategory.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Purchase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Purchase.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Quote.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Salary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Salary.js -------------------------------------------------------------------------------- /backend/src/models/appModels/SalaryPayment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/SalaryPayment.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Shipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Shipment.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Supplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Supplier.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Survey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Survey.js -------------------------------------------------------------------------------- /backend/src/models/appModels/Taxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/appModels/Taxes.js -------------------------------------------------------------------------------- /backend/src/models/coreModels/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/coreModels/Admin.js -------------------------------------------------------------------------------- /backend/src/models/coreModels/AdminPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/coreModels/AdminPassword.js -------------------------------------------------------------------------------- /backend/src/models/coreModels/Email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/coreModels/Email.js -------------------------------------------------------------------------------- /backend/src/models/coreModels/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/coreModels/Setting.js -------------------------------------------------------------------------------- /backend/src/models/coreModels/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/coreModels/Upload.js -------------------------------------------------------------------------------- /backend/src/models/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/models/utils/index.js -------------------------------------------------------------------------------- /backend/src/pdf/Invoice.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/pdf/Invoice.pug -------------------------------------------------------------------------------- /backend/src/pdf/Offer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/pdf/Offer.pug -------------------------------------------------------------------------------- /backend/src/pdf/Payment.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/pdf/Payment.pug -------------------------------------------------------------------------------- /backend/src/pdf/Quote.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/pdf/Quote.pug -------------------------------------------------------------------------------- /backend/src/public/uploads/admin/capture-d-ecran-2024-02-21-a-12-w0hjt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/admin/capture-d-ecran-2024-02-21-a-12-w0hjt.png -------------------------------------------------------------------------------- /backend/src/public/uploads/admin/favicon-ftos5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/admin/favicon-ftos5.png -------------------------------------------------------------------------------- /backend/src/public/uploads/admin/icon-idurar-g45k2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/admin/icon-idurar-g45k2.png -------------------------------------------------------------------------------- /backend/src/public/uploads/admin/icon-idurar-jvz3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/admin/icon-idurar-jvz3e.png -------------------------------------------------------------------------------- /backend/src/public/uploads/admin/icon-idurar-vhpx5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/admin/icon-idurar-vhpx5.png -------------------------------------------------------------------------------- /backend/src/public/uploads/setting/icon-idurar-mjgtd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/setting/icon-idurar-mjgtd.png -------------------------------------------------------------------------------- /backend/src/public/uploads/setting/idurar-app-large-ll86m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/setting/idurar-app-large-ll86m.png -------------------------------------------------------------------------------- /backend/src/public/uploads/setting/idurar-crm-erp-consn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/setting/idurar-crm-erp-consn.png -------------------------------------------------------------------------------- /backend/src/public/uploads/setting/idurar-crm-erp-kez4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/setting/idurar-crm-erp-kez4s.png -------------------------------------------------------------------------------- /backend/src/public/uploads/setting/idurar-crm-erp-na1f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/public/uploads/setting/idurar-crm-erp-na1f3.png -------------------------------------------------------------------------------- /backend/src/routes/appRoutes/appApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/routes/appRoutes/appApi.js -------------------------------------------------------------------------------- /backend/src/routes/coreRoutes/coreApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/routes/coreRoutes/coreApi.js -------------------------------------------------------------------------------- /backend/src/routes/coreRoutes/coreAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/routes/coreRoutes/coreAuth.js -------------------------------------------------------------------------------- /backend/src/routes/coreRoutes/coreDownloadRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/routes/coreRoutes/coreDownloadRouter.js -------------------------------------------------------------------------------- /backend/src/routes/coreRoutes/corePublicRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/routes/coreRoutes/corePublicRouter.js -------------------------------------------------------------------------------- /backend/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/server.js -------------------------------------------------------------------------------- /backend/src/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/settings/index.js -------------------------------------------------------------------------------- /backend/src/settings/useAppSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/settings/useAppSettings.js -------------------------------------------------------------------------------- /backend/src/settings/useDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/settings/useDate.js -------------------------------------------------------------------------------- /backend/src/settings/useMoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/settings/useMoney.js -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/appSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/appSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/clientSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/clientSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/companySettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/companySettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/emailSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/emailSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/financeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/financeSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/inventorySettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/inventorySettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/invoiceSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/invoiceSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/leadSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/leadSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/moneyFormatSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/moneyFormatSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/offerSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/offerSettings.json -------------------------------------------------------------------------------- /backend/src/setup/defaultSettings/quoteSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/defaultSettings/quoteSettings.json -------------------------------------------------------------------------------- /backend/src/setup/emailTemplate/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/emailTemplate/index.json -------------------------------------------------------------------------------- /backend/src/setup/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/reset.js -------------------------------------------------------------------------------- /backend/src/setup/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/setup.js -------------------------------------------------------------------------------- /backend/src/setup/setupConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/setupConfig.json -------------------------------------------------------------------------------- /backend/src/setup/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/setup/upgrade.js -------------------------------------------------------------------------------- /backend/src/utils/countryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/utils/countryList.js -------------------------------------------------------------------------------- /backend/src/utils/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/utils/currency.js -------------------------------------------------------------------------------- /backend/src/utils/currencyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/backend/src/utils/currencyList.js -------------------------------------------------------------------------------- /doc/README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/doc/README.fr.md -------------------------------------------------------------------------------- /doc/README.sp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/doc/README.sp.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /features/ar_eg_ملف_مفتوح_المصدر_مجاني_للبرمجيات_ERP_CRM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ar_eg_ملف_مفتوح_المصدر_مجاني_للبرمجيات_ERP_CRM.md -------------------------------------------------------------------------------- /features/bg_bg_свободен_отворен_източник_erp_crm_софтуер.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/bg_bg_свободен_отворен_източник_erp_crm_софтуер.md -------------------------------------------------------------------------------- /features/bn_bd_ফ্রি_ওপেন_সোর্স_ইআরপি_সিআরএম_সফটওয়্যার.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/bn_bd_ফ্রি_ওপেন_সোর্স_ইআরপি_সিআরএম_সফটওয়্যার.md -------------------------------------------------------------------------------- /features/ca_es_software_erp_crm_de_codi_obert_gratuït.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ca_es_software_erp_crm_de_codi_obert_gratuït.md -------------------------------------------------------------------------------- /features/cs_cz_volný_otevřený_zdroj_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/cs_cz_volný_otevřený_zdroj_erp_crm_software.md -------------------------------------------------------------------------------- /features/da_dk_gratis_åben_kilde_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/da_dk_gratis_åben_kilde_erp_crm_software.md -------------------------------------------------------------------------------- /features/de_de_frei_offene_quelle_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/de_de_frei_offene_quelle_erp_crm_software.md -------------------------------------------------------------------------------- /features/el_gr_ελεύθερο_ανοικτο_πηγαίο_erp_crm_λογισμικό.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/el_gr_ελεύθερο_ανοικτο_πηγαίο_erp_crm_λογισμικό.md -------------------------------------------------------------------------------- /features/en_us_free_open_source_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/en_us_free_open_source_erp_crm_software.md -------------------------------------------------------------------------------- /features/es_es_software_erp_crm_de_código_abierto_y_gratis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/es_es_software_erp_crm_de_código_abierto_y_gratis.md -------------------------------------------------------------------------------- /features/et_ee_tasuta_avatud_lähtekoodiga_erp_crm_tarkvara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/et_ee_tasuta_avatud_lähtekoodiga_erp_crm_tarkvara.md -------------------------------------------------------------------------------- /features/fa_ir_رایگان_منبع_باز_نرم‌افزار_مدیریت_مالی_و_ارتباطات.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/fa_ir_رایگان_منبع_باز_نرم‌افزار_مدیریت_مالی_و_ارتباطات.md -------------------------------------------------------------------------------- /features/fi_fi_ilmainen_avoin_lähdekoodi_erp_crm_ohjelmisto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/fi_fi_ilmainen_avoin_lähdekoodi_erp_crm_ohjelmisto.md -------------------------------------------------------------------------------- /features/fr_fr_gratuit_logiciel_erp_crm_open_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/fr_fr_gratuit_logiciel_erp_crm_open_source.md -------------------------------------------------------------------------------- /features/hi_in_मुफ्त_खुला_स्रोत_ईआरपी_सीआरएम_सॉफ़्टवेयर.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/hi_in_मुफ्त_खुला_स्रोत_ईआरपी_सीआरएम_सॉफ़्टवेयर.md -------------------------------------------------------------------------------- /features/hr_hr_besplatni_otvoreni_izvor_erp_crm_softver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/hr_hr_besplatni_otvoreni_izvor_erp_crm_softver.md -------------------------------------------------------------------------------- /features/hu_hu_ingyenes_nyílt_forráskódú_erp_crm_szoftver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/hu_hu_ingyenes_nyílt_forráskódú_erp_crm_szoftver.md -------------------------------------------------------------------------------- /features/id_id_perangkat_lunak_erp_crm_sumber_terbuka_gratis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/id_id_perangkat_lunak_erp_crm_sumber_terbuka_gratis.md -------------------------------------------------------------------------------- /features/it_it_software_erp_crm_open_source_gratuito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/it_it_software_erp_crm_open_source_gratuito.md -------------------------------------------------------------------------------- /features/ja_jp_フリーオープンソースERP CRMソフトウェア.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ja_jp_フリーオープンソースERP CRMソフトウェア.md -------------------------------------------------------------------------------- /features/ko_kr_자유_오픈_소스_ERP_CRM_소프트웨어.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ko_kr_자유_오픈_소스_ERP_CRM_소프트웨어.md -------------------------------------------------------------------------------- /features/lt_lt_nemokamas_atviras_kodo_erp_crm_programinė_įranga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/lt_lt_nemokamas_atviras_kodo_erp_crm_programinė_įranga.md -------------------------------------------------------------------------------- /features/lv_lv_bezmaksas_atvērtā_koda_erp_crm_programmatūra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/lv_lv_bezmaksas_atvērtā_koda_erp_crm_programmatūra.md -------------------------------------------------------------------------------- /features/mk_mk_фрее_опен_сорсе_ерп_црм_софтвер.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/mk_mk_фрее_опен_сорсе_ерп_црм_софтвер.md -------------------------------------------------------------------------------- /features/ms_my_fail_terbuka_sumber_erp_crm_perisian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ms_my_fail_terbuka_sumber_erp_crm_perisian.md -------------------------------------------------------------------------------- /features/nb_no_gratis_åpen_kilde_erp_crm_programvare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/nb_no_gratis_åpen_kilde_erp_crm_programvare.md -------------------------------------------------------------------------------- /features/nl_nl_vrije_open_source_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/nl_nl_vrije_open_source_erp_crm_software.md -------------------------------------------------------------------------------- /features/pl_pl_bezpłatne_otwarte_źródło_erp_crm_oprogramowanie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/pl_pl_bezpłatne_otwarte_źródło_erp_crm_oprogramowanie.md -------------------------------------------------------------------------------- /features/pt_br_software_de_erp_e_crm_de_código_aberto_gratuito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/pt_br_software_de_erp_e_crm_de_código_aberto_gratuito.md -------------------------------------------------------------------------------- /features/pt_pt_software_de_erp_crm_de_código_aberto_gratuito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/pt_pt_software_de_erp_crm_de_código_aberto_gratuito.md -------------------------------------------------------------------------------- /features/ro_ro_software_erp_crm_open_source_gratuit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ro_ro_software_erp_crm_open_source_gratuit.md -------------------------------------------------------------------------------- /features/ru_ru_бесплатное_открытое_программное_обеспечение_erp_crm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ru_ru_бесплатное_открытое_программное_обеспечение_erp_crm.md -------------------------------------------------------------------------------- /features/sk_sk_zdarma_otvorene_zdrojove_erp_crm_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/sk_sk_zdarma_otvorene_zdrojove_erp_crm_software.md -------------------------------------------------------------------------------- /features/sl_si_brezplačni_odprtokodni_erp_crm_programski_oprema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/sl_si_brezplačni_odprtokodni_erp_crm_programski_oprema.md -------------------------------------------------------------------------------- /features/sr_rs_besplatni_otvoreni_izvor_erp_crm_softver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/sr_rs_besplatni_otvoreni_izvor_erp_crm_softver.md -------------------------------------------------------------------------------- /features/sv_se_fri_öppen_källkods_erp_crm_programvara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/sv_se_fri_öppen_källkods_erp_crm_programvara.md -------------------------------------------------------------------------------- /features/th_th_ฟรี_โปรแกรม_ตัวจัดการแหล่งข้อมูลโปรแกรม_ERP_CRM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/th_th_ฟรี_โปรแกรม_ตัวจัดการแหล่งข้อมูลโปรแกรม_ERP_CRM.md -------------------------------------------------------------------------------- /features/tr_tr_ücretsiz_açık_kaynak_erp_crm_yazılımı.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/tr_tr_ücretsiz_açık_kaynak_erp_crm_yazılımı.md -------------------------------------------------------------------------------- /features/uk_ua_безкоштовне_відкрите_джерело_erp_crm_програмне_забезпечення.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/uk_ua_безкоштовне_відкрите_джерело_erp_crm_програмне_забезпечення.md -------------------------------------------------------------------------------- /features/ur_pk_مفت_کھولیں_سورس_erp_crm_سافٹ ویئر.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/ur_pk_مفت_کھولیں_سورس_erp_crm_سافٹ ویئر.md -------------------------------------------------------------------------------- /features/vi_vn_chương_trình_quản_lý_doanh_nghiệp_crm_nguồn_mở_miễn_phí.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/vi_vn_chương_trình_quản_lý_doanh_nghiệp_crm_nguồn_mở_miễn_phí.md -------------------------------------------------------------------------------- /features/zh_cn_免费开源ERP CRM软件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/features/zh_cn_免费开源ERP CRM软件.md -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | node_modules 5 | public -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/rollup.config.js -------------------------------------------------------------------------------- /frontend/src/RootApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/RootApp.jsx -------------------------------------------------------------------------------- /frontend/src/apps/ErpApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/ErpApp.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Header/AppsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Header/AppsButton.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Header/HeaderContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Header/HeaderContainer.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Header/UpgradeButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Header/UpgradeButton.jsx -------------------------------------------------------------------------------- /frontend/src/apps/IdurarOs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/IdurarOs.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Navigation/AppNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Navigation/AppNav.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Navigation/ExpensesNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Navigation/ExpensesNav.jsx -------------------------------------------------------------------------------- /frontend/src/apps/Navigation/NavigationContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/apps/Navigation/NavigationContainer.jsx -------------------------------------------------------------------------------- /frontend/src/auth/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/auth/auth.service.js -------------------------------------------------------------------------------- /frontend/src/auth/index.js: -------------------------------------------------------------------------------- 1 | export * from './auth.service'; 2 | -------------------------------------------------------------------------------- /frontend/src/components/AutoCompleteAsync/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/AutoCompleteAsync/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/ChooseCurrency/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/ChooseCurrency/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/CollapseBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/CollapseBox/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/CreateForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/CreateForm/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/CrudModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/CrudModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/DataTable/DataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/DataTable/DataTable.jsx -------------------------------------------------------------------------------- /frontend/src/components/DeleteModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/DeleteModal/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/IconMenu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/IconMenu/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/Loading/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/Loading/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/MoneyInputFormItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/MoneyInputFormItem/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/MultiStepSelectAsync/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/MultiStepSelectAsync/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/NotFound/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/NotFound/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/Notification/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/Notification/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/PageLoader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/PageLoader/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/PaypalButton/Subscription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/PaypalButton/Subscription.jsx -------------------------------------------------------------------------------- /frontend/src/components/ReadItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/ReadItem/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SearchItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SearchItem/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SelectAsync/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SelectAsync/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SelectCurrency/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SelectCurrency/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SelectLanguage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SelectLanguage/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SelectTag/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SelectTag/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/SidePanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/SidePanel/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/TabsContent/TabsContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/TabsContent/TabsContent.jsx -------------------------------------------------------------------------------- /frontend/src/components/Tag/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/Tag/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/UpdateForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/UpdateForm/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/Visibility/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/Visibility/index.jsx -------------------------------------------------------------------------------- /frontend/src/components/outsideClick.js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/outsideClick.js/demo.js -------------------------------------------------------------------------------- /frontend/src/components/outsideClick.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/components/outsideClick.js/index.js -------------------------------------------------------------------------------- /frontend/src/config/serverApiConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/config/serverApiConfig.js -------------------------------------------------------------------------------- /frontend/src/context/adavancedCrud/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/adavancedCrud/actions.jsx -------------------------------------------------------------------------------- /frontend/src/context/adavancedCrud/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/adavancedCrud/index.jsx -------------------------------------------------------------------------------- /frontend/src/context/adavancedCrud/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/adavancedCrud/reducer.jsx -------------------------------------------------------------------------------- /frontend/src/context/adavancedCrud/selectors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/adavancedCrud/selectors.jsx -------------------------------------------------------------------------------- /frontend/src/context/adavancedCrud/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/adavancedCrud/types.jsx -------------------------------------------------------------------------------- /frontend/src/context/appContext/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/appContext/actions.jsx -------------------------------------------------------------------------------- /frontend/src/context/appContext/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/appContext/index.jsx -------------------------------------------------------------------------------- /frontend/src/context/appContext/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/appContext/reducer.jsx -------------------------------------------------------------------------------- /frontend/src/context/appContext/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/appContext/types.jsx -------------------------------------------------------------------------------- /frontend/src/context/crud/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/crud/actions.jsx -------------------------------------------------------------------------------- /frontend/src/context/crud/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/crud/index.jsx -------------------------------------------------------------------------------- /frontend/src/context/crud/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/crud/reducer.jsx -------------------------------------------------------------------------------- /frontend/src/context/crud/selectors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/crud/selectors.jsx -------------------------------------------------------------------------------- /frontend/src/context/crud/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/crud/types.jsx -------------------------------------------------------------------------------- /frontend/src/context/erp/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/erp/actions.jsx -------------------------------------------------------------------------------- /frontend/src/context/erp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/erp/index.jsx -------------------------------------------------------------------------------- /frontend/src/context/erp/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/erp/reducer.jsx -------------------------------------------------------------------------------- /frontend/src/context/erp/selectors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/erp/selectors.jsx -------------------------------------------------------------------------------- /frontend/src/context/erp/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/erp/types.jsx -------------------------------------------------------------------------------- /frontend/src/context/profileContext/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/profileContext/actions.jsx -------------------------------------------------------------------------------- /frontend/src/context/profileContext/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/profileContext/index.jsx -------------------------------------------------------------------------------- /frontend/src/context/profileContext/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/profileContext/reducer.jsx -------------------------------------------------------------------------------- /frontend/src/context/profileContext/selectors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/profileContext/selectors.jsx -------------------------------------------------------------------------------- /frontend/src/context/profileContext/types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/context/profileContext/types.jsx -------------------------------------------------------------------------------- /frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/favicon.ico -------------------------------------------------------------------------------- /frontend/src/forms/AdminForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/AdminForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/AdvancedSettingsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/AdvancedSettingsForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/CurrencyForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/CurrencyForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/CustomerForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/CustomerForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/DynamicForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/DynamicForm/index.jsx -------------------------------------------------------------------------------- /frontend/src/forms/EmployeeForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/EmployeeForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/ForgetPasswordForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/ForgetPasswordForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/InventoryForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/InventoryForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/LeadForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/LeadForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/LoginForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/LoginForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/OrderForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/OrderForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/PaymentForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/PaymentForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/PaymentModeForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/PaymentModeForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/RegisterForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/RegisterForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/ResetPasswordForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/ResetPasswordForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/TaxForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/forms/TaxForm.jsx -------------------------------------------------------------------------------- /frontend/src/forms/UpdateEmail.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/hooks/useDebounce.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useDebounce.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useFetch.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useMail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useMail.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useNetwork.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useNetwork.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useOnFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useOnFetch.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useResponsive.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useResponsive.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/useTimeoutFn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/hooks/useTimeoutFn.jsx -------------------------------------------------------------------------------- /frontend/src/layout/AuthLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/AuthLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/CrudLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/CrudLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/DashboardLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/DashboardLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/DefaultLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/DefaultLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/ErpLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/ErpLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/Footer/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/ProfileLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/ProfileLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/SettingsLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/SettingsLayout/index.jsx -------------------------------------------------------------------------------- /frontend/src/layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/layout/index.jsx -------------------------------------------------------------------------------- /frontend/src/locale/Localization.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/Localization.jsx -------------------------------------------------------------------------------- /frontend/src/locale/antdLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/antdLocale.js -------------------------------------------------------------------------------- /frontend/src/locale/coreTranslation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/coreTranslation.js -------------------------------------------------------------------------------- /frontend/src/locale/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/languages.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ar_eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ar_eg.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/az_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/az_az.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/bg_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/bg_bg.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/bn_bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/bn_bd.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/by_by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/by_by.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ca_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ca_es.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/cs_cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/cs_cz.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/da_dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/da_dk.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/de_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/de_de.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/el_gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/el_gr.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/en_us.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/es_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/es_es.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/et_ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/et_ee.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/eu_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/eu_es.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/fa_ir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/fa_ir.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/fi_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/fi_fi.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/fil_ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/fil_ph.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/fr_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/fr_fr.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/gl_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/gl_es.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/he_il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/he_il.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/hi_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/hi_in.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/hr_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/hr_hr.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/hu_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/hu_hu.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/hy_am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/hy_am.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/id_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/id_id.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/is_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/is_is.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/it_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/it_it.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ja_jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ja_jp.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ka_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ka_ge.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/kb_dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/kb_dz.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/kk_kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/kk_kz.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/kmr_iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/kmr_iq.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ko_kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ko_kr.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/lt_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/lt_lt.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/lv_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/lv_lv.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/mk_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/mk_mk.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/mn_mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/mn_mn.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ms_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ms_my.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/mt_mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/mt_mt.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/nb_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/nb_no.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ne_np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ne_np.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/nl_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/nl_nl.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/otherTranslation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/otherTranslation.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/pl_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/pl_pl.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/pt_br.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/pt_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/pt_pt.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ro_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ro_ro.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ru_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ru_ru.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sk_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sk_sk.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sl_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sl_si.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sq_al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sq_al.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sr_rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sr_rs.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sv_se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sv_se.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/sw_ke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/sw_ke.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ta_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ta_in.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/th_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/th_th.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/tr_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/tr_tr.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/translation.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/uk_ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/uk_ua.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/ur_pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/ur_pk.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/uz_uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/uz_uz.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/vi_vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/vi_vn.js -------------------------------------------------------------------------------- /frontend/src/locale/translation/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/translation/zh_cn.js -------------------------------------------------------------------------------- /frontend/src/locale/useLanguage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/locale/useLanguage.jsx -------------------------------------------------------------------------------- /frontend/src/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/logo-icon.svg -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdminCrudModule/AdminDataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdminCrudModule/AdminDataTable.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdminCrudModule/UpdateForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdminCrudModule/UpdateForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdminCrudModule/UpdatePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdminCrudModule/UpdatePassword.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdminCrudModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdminCrudModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/CreateItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/CreateItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/DataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/DataTable.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/DeleteItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/DeleteItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/ItemRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/ItemRow.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/ReadItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/ReadItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/SearchItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/SearchItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/UpdateItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/UpdateItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AdvancedCrudModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AdvancedCrudModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AuthModule/SideContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AuthModule/SideContent.jsx -------------------------------------------------------------------------------- /frontend/src/modules/AuthModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/AuthModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/CrudModule/CrudModule.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/CrudModule/CrudModule.jsx -------------------------------------------------------------------------------- /frontend/src/modules/DashboardModule/components/CustomerPreviewCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/DashboardModule/components/CustomerPreviewCard.jsx -------------------------------------------------------------------------------- /frontend/src/modules/DashboardModule/components/PreviewCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/DashboardModule/components/PreviewCard.jsx -------------------------------------------------------------------------------- /frontend/src/modules/DashboardModule/components/RecentTable/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/DashboardModule/components/RecentTable/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/DashboardModule/components/SummaryCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/DashboardModule/components/SummaryCard.jsx -------------------------------------------------------------------------------- /frontend/src/modules/DashboardModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/DashboardModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/EmailModule/EmailDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/EmailModule/EmailDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/EmailModule/ReadEmailModule/components/ReadItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/EmailModule/ReadEmailModule/components/ReadItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/EmailModule/ReadEmailModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/EmailModule/ReadEmailModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/EmailModule/UpdateEmailModule/componenets/EmailForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/EmailModule/UpdateEmailModule/componenets/EmailForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/EmailModule/UpdateEmailModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/EmailModule/UpdateEmailModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/CreateItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/CreateItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/DataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/DataTable.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/DeleteItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/DeleteItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/ItemRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/ItemRow.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/ReadItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/ReadItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/SearchItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/SearchItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/UpdateItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/UpdateItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ErpPanelModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ErpPanelModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/CreateInvoiceModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/CreateInvoiceModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/Forms/InvoiceForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/Forms/InvoiceForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/InvoiceDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/InvoiceDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/ReadInvoiceModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/ReadInvoiceModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/RecordPaymentModule/components/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/RecordPaymentModule/components/Payment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/RecordPaymentModule/components/RecordPayment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/RecordPaymentModule/components/RecordPayment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/RecordPaymentModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/RecordPaymentModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/InvoiceModule/UpdateInvoiceModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/InvoiceModule/UpdateInvoiceModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/CreateOfferModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/CreateOfferModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/Forms/OfferForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/Forms/OfferForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/OfferDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/OfferDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/ReadOfferModule/ReadOfferItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/ReadOfferModule/ReadOfferItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/ReadOfferModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/ReadOfferModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OfferModule/UpdateOfferModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OfferModule/UpdateOfferModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/CreateOrderModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/CreateOrderModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/Forms/InvoiceForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/Forms/InvoiceForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/OrderDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/OrderDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/ReadOrderModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/ReadOrderModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/RecordPaymentModule/components/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/RecordPaymentModule/components/Payment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/RecordPaymentModule/components/RecordPayment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/RecordPaymentModule/components/RecordPayment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/RecordPaymentModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/RecordPaymentModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/OrderModule/UpdateInvoiceModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/OrderModule/UpdateInvoiceModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/PaymentDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/PaymentDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/ReadPaymentModule/components/ReadItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/ReadPaymentModule/components/ReadItem.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/ReadPaymentModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/ReadPaymentModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/UpdatePaymentModule/components/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/UpdatePaymentModule/components/Payment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/UpdatePaymentModule/components/UpdatePayment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/UpdatePaymentModule/components/UpdatePayment.jsx -------------------------------------------------------------------------------- /frontend/src/modules/PaymentModule/UpdatePaymentModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/PaymentModule/UpdatePaymentModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/AdminInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/AdminInfo.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/PasswordModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/PasswordModal.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/Profile.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/ProfileAdminForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/ProfileAdminForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/UpdateAdmin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/UpdateAdmin.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/components/UploadImg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/components/UploadImg.jsx -------------------------------------------------------------------------------- /frontend/src/modules/ProfileModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/ProfileModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/QuoteModule/CreateQuoteModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/QuoteModule/CreateQuoteModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/QuoteModule/Forms/QuoteForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/QuoteModule/Forms/QuoteForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/QuoteModule/QuoteDataTableModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/QuoteModule/QuoteDataTableModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/QuoteModule/ReadQuoteModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/QuoteModule/ReadQuoteModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/QuoteModule/UpdateQuoteModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/QuoteModule/UpdateQuoteModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/CompanyLogoSettingsModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/CompanyLogoSettingsModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/CompanySettingsModule/SettingsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/CompanySettingsModule/SettingsForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/CompanySettingsModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/CompanySettingsModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/FinanceSettingsModule/SettingsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/FinanceSettingsModule/SettingsForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/FinanceSettingsModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/FinanceSettingsModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/GeneralSettingsModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/GeneralSettingsModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/MoneyFormatSettingsModule/SettingsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/MoneyFormatSettingsModule/SettingsForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/MoneyFormatSettingsModule/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/MoneyFormatSettingsModule/index.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/components/SetingsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/components/SetingsSection.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/components/UpdateSettingForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/components/UpdateSettingForm.jsx -------------------------------------------------------------------------------- /frontend/src/modules/SettingModule/components/UpdateSettingModule.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/modules/SettingModule/components/UpdateSettingModule.jsx -------------------------------------------------------------------------------- /frontend/src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/About.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Admin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Admin/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/AdvancedSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/AdvancedSettings/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Company/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Company/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Company/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Company/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Currency/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Currency/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Currency/currencyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Currency/currencyList.js -------------------------------------------------------------------------------- /frontend/src/pages/Currency/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Currency/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Customer/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Customer/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Customer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Customer/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Dashboard.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Email/EmailRead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Email/EmailRead.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Email/EmailUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Email/EmailUpdate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Email/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Email/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Employee/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Employee/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Expense/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Expense/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Expense/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Expense/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/ExpenseCategory/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ExpenseCategory/config.js -------------------------------------------------------------------------------- /frontend/src/pages/ExpenseCategory/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ExpenseCategory/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/ForgetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ForgetPassword.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Inventory/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Inventory/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invoice/InvoiceCreate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Invoice/InvoiceCreate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invoice/InvoiceRead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Invoice/InvoiceRead.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invoice/InvoiceRecordPayment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Invoice/InvoiceRecordPayment.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invoice/InvoiceUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Invoice/InvoiceUpdate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Invoice/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Invoice/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Lead/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Lead/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Lead/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Lead/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Login.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Logout.jsx -------------------------------------------------------------------------------- /frontend/src/pages/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/NotFound.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Offer/OfferCreate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Offer/OfferCreate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Offer/OfferRead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Offer/OfferRead.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Offer/OfferUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Offer/OfferUpdate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Offer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Offer/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Order/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Order/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Payment/PaymentRead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Payment/PaymentRead.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Payment/PaymentUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Payment/PaymentUpdate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Payment/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Payment/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/PaymentMode/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/PaymentMode/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/People/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/People/config.js -------------------------------------------------------------------------------- /frontend/src/pages/People/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/People/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Product/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Product/config.js -------------------------------------------------------------------------------- /frontend/src/pages/Product/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Product/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/ProductCategory/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ProductCategory/config.js -------------------------------------------------------------------------------- /frontend/src/pages/ProductCategory/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ProductCategory/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Profile.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Quote/QuoteCreate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Quote/QuoteCreate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Quote/QuoteRead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Quote/QuoteRead.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Quote/QuoteUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Quote/QuoteUpdate.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Quote/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Quote/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/ResetPassword.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/CompanyLogoSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/CompanyLogoSettings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/CompanySettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/CompanySettings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/FinanceSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/FinanceSettings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/GeneralSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/GeneralSettings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/MoneyFormatSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/MoneyFormatSettings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Settings/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Settings/Settings.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Taxes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/pages/Taxes/index.jsx -------------------------------------------------------------------------------- /frontend/src/redux/adavancedCrud/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/adavancedCrud/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/adavancedCrud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/adavancedCrud/index.js -------------------------------------------------------------------------------- /frontend/src/redux/adavancedCrud/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/adavancedCrud/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/adavancedCrud/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/adavancedCrud/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/adavancedCrud/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/adavancedCrud/types.js -------------------------------------------------------------------------------- /frontend/src/redux/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/auth/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/auth/index.js -------------------------------------------------------------------------------- /frontend/src/redux/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/auth/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/auth/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/auth/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/auth/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/auth/types.js -------------------------------------------------------------------------------- /frontend/src/redux/crud/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/crud/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/crud/index.js -------------------------------------------------------------------------------- /frontend/src/redux/crud/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/crud/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/crud/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/crud/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/crud/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/crud/types.js -------------------------------------------------------------------------------- /frontend/src/redux/currency/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/currency/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/currency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/currency/index.js -------------------------------------------------------------------------------- /frontend/src/redux/currency/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/currency/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/currency/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/currency/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/currency/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/currency/types.js -------------------------------------------------------------------------------- /frontend/src/redux/erp/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/erp/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/erp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/erp/index.js -------------------------------------------------------------------------------- /frontend/src/redux/erp/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/erp/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/erp/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/erp/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/erp/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/erp/types.js -------------------------------------------------------------------------------- /frontend/src/redux/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/rootReducer.js -------------------------------------------------------------------------------- /frontend/src/redux/settings/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/settings/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/settings/index.js -------------------------------------------------------------------------------- /frontend/src/redux/settings/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/settings/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/settings/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/settings/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/settings/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/settings/types.js -------------------------------------------------------------------------------- /frontend/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/store.js -------------------------------------------------------------------------------- /frontend/src/redux/storePersist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/storePersist.js -------------------------------------------------------------------------------- /frontend/src/redux/translate/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/translate/actions.js -------------------------------------------------------------------------------- /frontend/src/redux/translate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/translate/index.js -------------------------------------------------------------------------------- /frontend/src/redux/translate/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/translate/reducer.js -------------------------------------------------------------------------------- /frontend/src/redux/translate/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/translate/selectors.js -------------------------------------------------------------------------------- /frontend/src/redux/translate/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/redux/translate/types.js -------------------------------------------------------------------------------- /frontend/src/request/checkImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/checkImage.js -------------------------------------------------------------------------------- /frontend/src/request/codeMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/codeMessage.js -------------------------------------------------------------------------------- /frontend/src/request/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/errorHandler.js -------------------------------------------------------------------------------- /frontend/src/request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/index.js -------------------------------------------------------------------------------- /frontend/src/request/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/request.js -------------------------------------------------------------------------------- /frontend/src/request/successHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/request/successHandler.js -------------------------------------------------------------------------------- /frontend/src/router/AppRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/router/AppRouter.jsx -------------------------------------------------------------------------------- /frontend/src/router/AuthRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/router/AuthRouter.jsx -------------------------------------------------------------------------------- /frontend/src/router/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/router/routes.jsx -------------------------------------------------------------------------------- /frontend/src/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/settings/index.jsx -------------------------------------------------------------------------------- /frontend/src/settings/useDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/settings/useDate.jsx -------------------------------------------------------------------------------- /frontend/src/settings/useMoney.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/settings/useMoney.jsx -------------------------------------------------------------------------------- /frontend/src/style/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/app.css -------------------------------------------------------------------------------- /frontend/src/style/images/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/checklist.svg -------------------------------------------------------------------------------- /frontend/src/style/images/fitbit-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/fitbit-gray.svg -------------------------------------------------------------------------------- /frontend/src/style/images/flow-xo-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/flow-xo-gray.svg -------------------------------------------------------------------------------- /frontend/src/style/images/gitlab-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/gitlab-gray.svg -------------------------------------------------------------------------------- /frontend/src/style/images/idurar-crm-erp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/idurar-crm-erp.svg -------------------------------------------------------------------------------- /frontend/src/style/images/layar-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/layar-gray.svg -------------------------------------------------------------------------------- /frontend/src/style/images/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo-icon.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo-icon.svg -------------------------------------------------------------------------------- /frontend/src/style/images/logo-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo-menu.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo-text.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo-text.svg -------------------------------------------------------------------------------- /frontend/src/style/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo.svg -------------------------------------------------------------------------------- /frontend/src/style/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo1.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo2.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo3.png -------------------------------------------------------------------------------- /frontend/src/style/images/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/logo4.png -------------------------------------------------------------------------------- /frontend/src/style/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/images/photo.png -------------------------------------------------------------------------------- /frontend/src/style/partials/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/auth.css -------------------------------------------------------------------------------- /frontend/src/style/partials/collapseBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/collapseBox.css -------------------------------------------------------------------------------- /frontend/src/style/partials/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/core.css -------------------------------------------------------------------------------- /frontend/src/style/partials/customAntd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/customAntd.css -------------------------------------------------------------------------------- /frontend/src/style/partials/erp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/erp.css -------------------------------------------------------------------------------- /frontend/src/style/partials/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/header.css -------------------------------------------------------------------------------- /frontend/src/style/partials/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/layout.css -------------------------------------------------------------------------------- /frontend/src/style/partials/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/navigation.css -------------------------------------------------------------------------------- /frontend/src/style/partials/rest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/rest.css -------------------------------------------------------------------------------- /frontend/src/style/partials/sidePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/sidePanel.css -------------------------------------------------------------------------------- /frontend/src/style/partials/transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/style/partials/transition.css -------------------------------------------------------------------------------- /frontend/src/utils/calculate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/calculate.js -------------------------------------------------------------------------------- /frontend/src/utils/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/color.js -------------------------------------------------------------------------------- /frontend/src/utils/countryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/countryList.js -------------------------------------------------------------------------------- /frontend/src/utils/currencyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/currencyList.js -------------------------------------------------------------------------------- /frontend/src/utils/dataStructure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/dataStructure.jsx -------------------------------------------------------------------------------- /frontend/src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/helpers.js -------------------------------------------------------------------------------- /frontend/src/utils/isBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/isBrowser.js -------------------------------------------------------------------------------- /frontend/src/utils/statusTagColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/statusTagColor.js -------------------------------------------------------------------------------- /frontend/src/utils/tagColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/tagColor.js -------------------------------------------------------------------------------- /frontend/src/utils/valueType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/src/utils/valueType.js -------------------------------------------------------------------------------- /frontend/temp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/temp.env -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /idurar-crm-erp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/idurar-crm-erp.svg -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/idurar-erp-crm/HEAD/image.png --------------------------------------------------------------------------------