├── 404Error.php ├── AdminController.php ├── AdminManager.php ├── AppointmentController.php ├── AppointmentManager.php ├── ClientController.php ├── ClientManager.php ├── DBManager.php ├── EmployeeController.php ├── EmployeeManager.php ├── EvaluateDaysController.php ├── EvaluateDaysManager.php ├── ForgotPasswordController.php ├── ForgotPasswordManager.php ├── GSTController.php ├── GSTManager.php ├── InvoiceController.php ├── InvoiceManager.php ├── LoaderController.php ├── LoaderManager.php ├── PayrollController.php ├── PayrollManager.php ├── README.md ├── ToDo ├── Validate.php ├── adminHome.php ├── bootstrap ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── changePasswordForm.php ├── clientNameList.php ├── companyProfile.php ├── composer.json ├── composer.lock ├── createClient.php ├── createEmployee.php ├── createInvoice.php ├── css ├── bootstrap-formhelpers.min.css ├── custom.css └── passwordStrength.css ├── currentGST.php ├── db └── ems.sql ├── dbconnect.php ├── descriptionOfReceivedServicesList.php ├── descriptionOfServicesList.php ├── dist ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ └── skins │ │ ├── _all-skins.css │ │ ├── _all-skins.min.css │ │ ├── skin-black-light.css │ │ ├── skin-black-light.min.css │ │ ├── skin-black.css │ │ ├── skin-black.min.css │ │ ├── skin-blue-light.css │ │ ├── skin-blue-light.min.css │ │ ├── skin-blue.css │ │ ├── skin-blue.min.css │ │ ├── skin-green-light.css │ │ ├── skin-green-light.min.css │ │ ├── skin-green.css │ │ ├── skin-green.min.css │ │ ├── skin-purple-light.css │ │ ├── skin-purple-light.min.css │ │ ├── skin-purple.css │ │ ├── skin-purple.min.css │ │ ├── skin-red-light.css │ │ ├── skin-red-light.min.css │ │ ├── skin-red.css │ │ ├── skin-red.min.css │ │ ├── skin-yellow-light.css │ │ ├── skin-yellow-light.min.css │ │ ├── skin-yellow.css │ │ └── skin-yellow.min.css ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ └── user8-128x128.jpg └── js │ ├── app.js │ ├── app.min.js │ ├── demo.js │ └── pages │ ├── dashboard.js │ └── dashboard2.js ├── editClient.php ├── editCreatedInvoice.php ├── editEmployee.php ├── edit_receive_invoice.php ├── emails ├── forgotPasswordEmailMessage.php ├── invoiceEmailToClient.php └── paysilipEmailToEmployee.php ├── employee ├── changePasswordForm.php ├── editProfile.php ├── employeeTermsConditions.php ├── error_log ├── home.php ├── include │ ├── footer.php │ └── header.php ├── logout.php ├── payroll.php ├── permanentAppointment.php ├── probationerAppointment.php └── profile.php ├── employeeLeaveHoliday.php ├── employeeTermsConditions.php ├── experienceCertificate.php ├── forgotPassword.php ├── functionMakeHtaccessDynamic.php ├── function_no_to_words.php ├── generateExperienceCertificate.php ├── generateGST.php ├── generateGSTXL.php ├── generateInvoice.php ├── generatePayrollPdf.php ├── generatePermanentAppointment.php ├── generatePrabationerAppointment.php ├── images ├── defaultuser.png ├── logo.png └── logo1.png ├── include ├── footer.php ├── header.php ├── notificationBell.php ├── rssfeeds.php ├── scrap.php └── simple_html_dom.php ├── index.php ├── js ├── bootstrap-formhelpers-countries.en_US.js ├── bootstrap-formhelpers-countries.js ├── custom.js ├── formValidate.js ├── jquery-2.2.3.min.js ├── jquery-ui.min.js ├── jquery.min.js ├── jquery.validate.js ├── passwordStrength.js └── printThis.js ├── logout.php ├── namelist.php ├── notifications.php ├── payroll.php ├── permanentAppointment.php ├── phpMailer ├── composer.json ├── composer.lock └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── phpmailer │ └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── plugins ├── Ionicons │ ├── css │ │ └── ionicons.min.css │ └── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── dataTables.bootstrap.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ └── dataTables.responsive.min.js │ │ ├── Scroller │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.scroller.css │ │ │ │ └── dataTables.scroller.min.css │ │ │ ├── examples │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── server-side_processing.html │ │ │ │ ├── simple.html │ │ │ │ └── state_saving.html │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── TableTools │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── dataTables.tableTools.css │ │ │ └── dataTables.tableTools.min.css │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── alter_buttons.html │ │ │ ├── bootstrap.html │ │ │ ├── button_text.html │ │ │ ├── collection.html │ │ │ ├── defaults.html │ │ │ ├── index.html │ │ │ ├── jqueryui.html │ │ │ ├── multi_instance.html │ │ │ ├── multiple_tables.html │ │ │ ├── new_init.html │ │ │ ├── pdf_message.html │ │ │ ├── plug-in.html │ │ │ ├── select_column.html │ │ │ ├── select_multi.html │ │ │ ├── select_os.html │ │ │ ├── select_single.html │ │ │ ├── simple.html │ │ │ └── swf_path.html │ │ │ ├── images │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── dataTables.tableTools.js │ │ │ └── dataTables.tableTools.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js ├── dropify │ ├── css │ │ ├── demo.css │ │ ├── dropify.css │ │ └── dropify.min.css │ ├── fonts │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ └── dropify.woff │ └── js │ │ ├── dropify.js │ │ └── dropify.min.js ├── font-awesome │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── moment │ ├── .bower.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── bower.json │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-nz.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-latn.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── th.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ └── zh-tw.js │ ├── min │ │ ├── locales.js │ │ ├── locales.min.js │ │ ├── moment-with-locales.js │ │ ├── moment-with-locales.min.js │ │ ├── moment.min.js │ │ └── tests.js │ ├── moment.d.ts │ ├── moment.js │ ├── src │ │ ├── lib │ │ │ ├── create │ │ │ │ ├── check-overflow.js │ │ │ │ ├── date-from-array.js │ │ │ │ ├── from-anything.js │ │ │ │ ├── from-array.js │ │ │ │ ├── from-object.js │ │ │ │ ├── from-string-and-array.js │ │ │ │ ├── from-string-and-format.js │ │ │ │ ├── from-string.js │ │ │ │ ├── local.js │ │ │ │ ├── parsing-flags.js │ │ │ │ ├── utc.js │ │ │ │ └── valid.js │ │ │ ├── duration │ │ │ │ ├── abs.js │ │ │ │ ├── add-subtract.js │ │ │ │ ├── as.js │ │ │ │ ├── bubble.js │ │ │ │ ├── constructor.js │ │ │ │ ├── create.js │ │ │ │ ├── duration.js │ │ │ │ ├── get.js │ │ │ │ ├── humanize.js │ │ │ │ ├── iso-string.js │ │ │ │ ├── prototype.js │ │ │ │ └── valid.js │ │ │ ├── format │ │ │ │ └── format.js │ │ │ ├── locale │ │ │ │ ├── base-config.js │ │ │ │ ├── calendar.js │ │ │ │ ├── constructor.js │ │ │ │ ├── en.js │ │ │ │ ├── formats.js │ │ │ │ ├── invalid.js │ │ │ │ ├── lists.js │ │ │ │ ├── locale.js │ │ │ │ ├── locales.js │ │ │ │ ├── ordinal.js │ │ │ │ ├── pre-post-format.js │ │ │ │ ├── prototype.js │ │ │ │ ├── relative.js │ │ │ │ └── set.js │ │ │ ├── moment │ │ │ │ ├── add-subtract.js │ │ │ │ ├── calendar.js │ │ │ │ ├── clone.js │ │ │ │ ├── compare.js │ │ │ │ ├── constructor.js │ │ │ │ ├── creation-data.js │ │ │ │ ├── diff.js │ │ │ │ ├── format.js │ │ │ │ ├── from.js │ │ │ │ ├── get-set.js │ │ │ │ ├── locale.js │ │ │ │ ├── min-max.js │ │ │ │ ├── moment.js │ │ │ │ ├── now.js │ │ │ │ ├── prototype.js │ │ │ │ ├── start-end-of.js │ │ │ │ ├── to-type.js │ │ │ │ ├── to.js │ │ │ │ └── valid.js │ │ │ ├── parse │ │ │ │ ├── regex.js │ │ │ │ └── token.js │ │ │ ├── units │ │ │ │ ├── aliases.js │ │ │ │ ├── constants.js │ │ │ │ ├── day-of-month.js │ │ │ │ ├── day-of-week.js │ │ │ │ ├── day-of-year.js │ │ │ │ ├── hour.js │ │ │ │ ├── millisecond.js │ │ │ │ ├── minute.js │ │ │ │ ├── month.js │ │ │ │ ├── offset.js │ │ │ │ ├── priorities.js │ │ │ │ ├── quarter.js │ │ │ │ ├── second.js │ │ │ │ ├── timestamp.js │ │ │ │ ├── timezone.js │ │ │ │ ├── units.js │ │ │ │ ├── week-calendar-utils.js │ │ │ │ ├── week-year.js │ │ │ │ ├── week.js │ │ │ │ └── year.js │ │ │ └── utils │ │ │ │ ├── abs-ceil.js │ │ │ │ ├── abs-floor.js │ │ │ │ ├── abs-round.js │ │ │ │ ├── compare-arrays.js │ │ │ │ ├── defaults.js │ │ │ │ ├── deprecate.js │ │ │ │ ├── extend.js │ │ │ │ ├── has-own-prop.js │ │ │ │ ├── hooks.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-array.js │ │ │ │ ├── is-date.js │ │ │ │ ├── is-function.js │ │ │ │ ├── is-number.js │ │ │ │ ├── is-object-empty.js │ │ │ │ ├── is-object.js │ │ │ │ ├── is-undefined.js │ │ │ │ ├── keys.js │ │ │ │ ├── map.js │ │ │ │ ├── some.js │ │ │ │ ├── to-int.js │ │ │ │ └── zero-fill.js │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-latn.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ │ └── moment.js │ └── templates │ │ ├── default.js │ │ ├── locale-header.js │ │ └── test-header.js ├── sweetalert │ ├── sweetalert.css │ └── sweetalert.min.js └── timepicker │ ├── bootstrap-timepicker.css │ ├── bootstrap-timepicker.js │ ├── bootstrap-timepicker.min.css │ └── bootstrap-timepicker.min.js ├── previewInvoice.php ├── probationerAppointment.php ├── receiveInvoice.php ├── resetPassword.php ├── rssfeeds.php ├── sacReceivedInvoiceList.php ├── searchGST.php ├── searchPayroll.php ├── sellerNameList.php ├── settings ├── config.php └── indian_bankname_list.php ├── setup.php ├── tinymceUploadImage.php ├── uploads ├── GST │ └── .gitkeep ├── appointment_pdf │ ├── permanent │ │ └── .gitkeep │ └── probationer │ │ └── .gitkeep ├── avatar04.png ├── avatar5.png ├── client_image │ └── defaultuser.png ├── company_profile_images │ ├── defaultuser.png │ ├── logo-black.png │ └── logo-white.png ├── defaultuser.png ├── employee │ └── images │ │ └── defaultuser.png ├── experience_certificate_pdf │ └── .gitkeep ├── invoices │ ├── createdInvoice │ │ └── .gitkeep │ └── receivedInvoice │ │ └── .gitkeep ├── letterLogo │ └── .gitkeep ├── payroll_pdf │ └── .gitkeep └── termsAndConditions_pdf │ └── EMPLOYEES-AGREMENT-TOMATO.pdf ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── doctrine │ ├── annotations │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Annotations │ │ │ │ ├── Annotation.php │ │ │ │ ├── Annotation │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── Enum.php │ │ │ │ ├── IgnoreAnnotation.php │ │ │ │ ├── Required.php │ │ │ │ └── Target.php │ │ │ │ ├── AnnotationException.php │ │ │ │ ├── AnnotationReader.php │ │ │ │ ├── AnnotationRegistry.php │ │ │ │ ├── CachedReader.php │ │ │ │ ├── DocLexer.php │ │ │ │ ├── DocParser.php │ │ │ │ ├── FileCacheReader.php │ │ │ │ ├── IndexedReader.php │ │ │ │ ├── PhpParser.php │ │ │ │ ├── Reader.php │ │ │ │ ├── SimpleAnnotationReader.php │ │ │ │ └── TokenParser.php │ │ └── phpstan.neon │ ├── cache │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── build.properties │ │ ├── build.xml │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Cache │ │ │ │ ├── ApcCache.php │ │ │ │ ├── ApcuCache.php │ │ │ │ ├── ArrayCache.php │ │ │ │ ├── Cache.php │ │ │ │ ├── CacheProvider.php │ │ │ │ ├── ChainCache.php │ │ │ │ ├── ClearableCache.php │ │ │ │ ├── CouchbaseCache.php │ │ │ │ ├── FileCache.php │ │ │ │ ├── FilesystemCache.php │ │ │ │ ├── FlushableCache.php │ │ │ │ ├── MemcacheCache.php │ │ │ │ ├── MemcachedCache.php │ │ │ │ ├── MongoDBCache.php │ │ │ │ ├── MultiGetCache.php │ │ │ │ ├── MultiPutCache.php │ │ │ │ ├── PhpFileCache.php │ │ │ │ ├── PredisCache.php │ │ │ │ ├── RedisCache.php │ │ │ │ ├── RiakCache.php │ │ │ │ ├── SQLite3Cache.php │ │ │ │ ├── Version.php │ │ │ │ ├── VoidCache.php │ │ │ │ ├── WinCacheCache.php │ │ │ │ ├── XcacheCache.php │ │ │ │ └── ZendDataCache.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ │ ├── Doctrine │ │ │ └── Tests │ │ │ │ ├── Common │ │ │ │ └── Cache │ │ │ │ │ ├── ApcCacheTest.php │ │ │ │ │ ├── ApcuCacheTest.php │ │ │ │ │ ├── ArrayCacheTest.php │ │ │ │ │ ├── BaseFileCacheTest.php │ │ │ │ │ ├── CacheProviderTest.php │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ ├── ChainCacheTest.php │ │ │ │ │ ├── CouchbaseCacheTest.php │ │ │ │ │ ├── FileCacheTest.php │ │ │ │ │ ├── FilesystemCacheTest.php │ │ │ │ │ ├── MemcacheCacheTest.php │ │ │ │ │ ├── MemcachedCacheTest.php │ │ │ │ │ ├── MongoDBCacheTest.php │ │ │ │ │ ├── PhpFileCacheTest.php │ │ │ │ │ ├── PredisCacheTest.php │ │ │ │ │ ├── RedisCacheTest.php │ │ │ │ │ ├── RiakCacheTest.php │ │ │ │ │ ├── SQLite3CacheTest.php │ │ │ │ │ ├── VoidCacheTest.php │ │ │ │ │ ├── WinCacheCacheTest.php │ │ │ │ │ ├── XcacheCacheTest.php │ │ │ │ │ └── ZendDataCacheTest.php │ │ │ │ └── DoctrineTestCase.php │ │ │ └── travis │ │ │ ├── php.ini │ │ │ └── phpunit.travis.xml │ ├── collections │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Collections │ │ │ ├── AbstractLazyCollection.php │ │ │ ├── ArrayCollection.php │ │ │ ├── Collection.php │ │ │ ├── Criteria.php │ │ │ ├── Expr │ │ │ ├── ClosureExpressionVisitor.php │ │ │ ├── Comparison.php │ │ │ ├── CompositeExpression.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionVisitor.php │ │ │ └── Value.php │ │ │ ├── ExpressionBuilder.php │ │ │ └── Selectable.php │ ├── common │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE_TO_2_1 │ │ ├── UPGRADE_TO_2_2 │ │ ├── composer.json │ │ ├── humbug.json.dist │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ ├── ClassLoader.php │ │ │ ├── CommonException.php │ │ │ ├── Comparable.php │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ ├── EventSubscriber.php │ │ │ ├── Lexer.php │ │ │ ├── NotifyPropertyChanged.php │ │ │ ├── Persistence │ │ │ ├── AbstractManagerRegistry.php │ │ │ ├── ConnectionRegistry.php │ │ │ ├── Event │ │ │ │ ├── LifecycleEventArgs.php │ │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ │ ├── ManagerEventArgs.php │ │ │ │ ├── OnClearEventArgs.php │ │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── ManagerRegistry.php │ │ │ ├── Mapping │ │ │ │ ├── AbstractClassMetadataFactory.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── Driver │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ │ ├── FileDriver.php │ │ │ │ │ ├── FileLocator.php │ │ │ │ │ ├── MappingDriver.php │ │ │ │ │ ├── MappingDriverChain.php │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ └── SymfonyFileLocator.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── ReflectionService.php │ │ │ │ ├── RuntimeReflectionService.php │ │ │ │ └── StaticReflectionService.php │ │ │ ├── ObjectManager.php │ │ │ ├── ObjectManagerAware.php │ │ │ ├── ObjectManagerDecorator.php │ │ │ ├── ObjectRepository.php │ │ │ ├── PersistentObject.php │ │ │ └── Proxy.php │ │ │ ├── PropertyChangedListener.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxyFactory.php │ │ │ ├── Autoloader.php │ │ │ ├── Exception │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── ProxyException.php │ │ │ │ └── UnexpectedValueException.php │ │ │ ├── Proxy.php │ │ │ ├── ProxyDefinition.php │ │ │ └── ProxyGenerator.php │ │ │ ├── Reflection │ │ │ ├── ClassFinderInterface.php │ │ │ ├── Psr0FindFile.php │ │ │ ├── ReflectionProviderInterface.php │ │ │ ├── RuntimePublicReflectionProperty.php │ │ │ ├── StaticReflectionClass.php │ │ │ ├── StaticReflectionMethod.php │ │ │ ├── StaticReflectionParser.php │ │ │ └── StaticReflectionProperty.php │ │ │ ├── Util │ │ │ ├── ClassUtils.php │ │ │ ├── Debug.php │ │ │ └── Inflector.php │ │ │ └── Version.php │ ├── inflector │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Inflector │ │ │ │ └── Inflector.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ │ └── Doctrine │ │ │ └── Tests │ │ │ ├── Common │ │ │ └── Inflector │ │ │ │ └── InflectorTest.php │ │ │ ├── DoctrineTestCase.php │ │ │ └── TestInit.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php ├── phpoffice │ └── phpexcel │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Classes │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ └── HTML.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ │ ├── Examples │ │ ├── .gitignore │ │ ├── 01pharSimple.php │ │ ├── 01simple-download-ods.php │ │ ├── 01simple-download-pdf.php │ │ ├── 01simple-download-xls.php │ │ ├── 01simple-download-xlsx.php │ │ ├── 01simple.php │ │ ├── 01simplePCLZip.php │ │ ├── 02types-xls.php │ │ ├── 02types.php │ │ ├── 03formulas.php │ │ ├── 04printing.php │ │ ├── 05featuredemo.inc.php │ │ ├── 05featuredemo.php │ │ ├── 06largescale-with-cellcaching-sqlite.php │ │ ├── 06largescale-with-cellcaching-sqlite3.php │ │ ├── 06largescale-with-cellcaching.php │ │ ├── 06largescale-xls.php │ │ ├── 06largescale.php │ │ ├── 07reader.php │ │ ├── 07readerPCLZip.php │ │ ├── 08conditionalformatting.php │ │ ├── 08conditionalformatting2.php │ │ ├── 09pagebreaks.php │ │ ├── 10autofilter-selection-1.php │ │ ├── 10autofilter-selection-2.php │ │ ├── 10autofilter-selection-display.php │ │ ├── 10autofilter.php │ │ ├── 11documentsecurity-xls.php │ │ ├── 11documentsecurity.php │ │ ├── 12cellProtection.php │ │ ├── 13calculation.php │ │ ├── 14excel5.php │ │ ├── 15datavalidation-xls.php │ │ ├── 15datavalidation.php │ │ ├── 16csv.php │ │ ├── 17html.php │ │ ├── 18extendedcalculation.php │ │ ├── 19namedrange.php │ │ ├── 20readexcel5.php │ │ ├── 21pdf.php │ │ ├── 22heavilyformatted.php │ │ ├── 23sharedstyles.php │ │ ├── 24readfilter.php │ │ ├── 25inmemoryimage.php │ │ ├── 26utf8.php │ │ ├── 27imagesexcel5.php │ │ ├── 28iterator.php │ │ ├── 29advancedvaluebinder.php │ │ ├── 30template.php │ │ ├── 31docproperties_write-xls.php │ │ ├── 31docproperties_write.php │ │ ├── 32chartreadwrite.php │ │ ├── 33chartcreate-area.php │ │ ├── 33chartcreate-bar-stacked.php │ │ ├── 33chartcreate-bar.php │ │ ├── 33chartcreate-column-2.php │ │ ├── 33chartcreate-column.php │ │ ├── 33chartcreate-composite.php │ │ ├── 33chartcreate-line.php │ │ ├── 33chartcreate-multiple-charts.php │ │ ├── 33chartcreate-pie.php │ │ ├── 33chartcreate-radar.php │ │ ├── 33chartcreate-scatter.php │ │ ├── 33chartcreate-stock.php │ │ ├── 34chartupdate.php │ │ ├── 35chartrender.php │ │ ├── 36chartreadwriteHTML.php │ │ ├── 36chartreadwritePDF.php │ │ ├── 37page_layout_view.php │ │ ├── 38cloneWorksheet.php │ │ ├── 39dropdown.php │ │ ├── 40duplicateStyle.php │ │ ├── 41password.php │ │ ├── 42richText.php │ │ ├── Excel2003XMLReader.php │ │ ├── Excel2003XMLTest.xml │ │ ├── GnumericReader.php │ │ ├── GnumericTest.gnumeric │ │ ├── OOCalcReader.php │ │ ├── OOCalcReaderPCLZip.php │ │ ├── OOCalcTest.ods │ │ ├── Quadratic.php │ │ ├── Quadratic2.php │ │ ├── SylkReader.php │ │ ├── SylkTest.slk │ │ ├── XMLReader.php │ │ ├── XMLTest.xml │ │ ├── data │ │ │ └── continents │ │ │ │ ├── Africa.txt │ │ │ │ ├── Asia.txt │ │ │ │ ├── Europe.txt │ │ │ │ ├── North America.txt │ │ │ │ ├── Oceania.txt │ │ │ │ └── South America.txt │ │ ├── images │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ ├── phpexcel_logo.gif │ │ │ └── termsconditions.jpg │ │ └── runall.php │ │ ├── changelog.txt │ │ ├── composer.json │ │ ├── install.txt │ │ ├── license.md │ │ └── unitTests │ │ ├── Classes │ │ └── PHPExcel │ │ │ ├── AutoloaderTest.php │ │ │ ├── Calculation │ │ │ ├── DateTimeTest.php │ │ │ ├── EngineeringTest.php │ │ │ ├── FinancialTest.php │ │ │ ├── FunctionsTest.php │ │ │ ├── LogicalTest.php │ │ │ ├── LookupRefTest.php │ │ │ ├── MathTrigTest.php │ │ │ └── TextDataTest.php │ │ │ ├── CalculationTest.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinderTest.php │ │ │ ├── DataTypeTest.php │ │ │ ├── DefaultValueBinderTest.php │ │ │ └── HyperlinkTest.php │ │ │ ├── CellTest.php │ │ │ ├── Chart │ │ │ ├── DataSeriesValuesTest.php │ │ │ ├── LayoutTest.php │ │ │ └── LegendTest.php │ │ │ ├── Reader │ │ │ └── XEEValidatorTest.php │ │ │ ├── ReferenceHelperTest.php │ │ │ ├── Shared │ │ │ ├── CodePageTest.php │ │ │ ├── DateTest.php │ │ │ ├── FileTest.php │ │ │ ├── FontTest.php │ │ │ ├── PasswordHasherTest.php │ │ │ ├── StringTest.php │ │ │ └── TimeZoneTest.php │ │ │ ├── Style │ │ │ ├── ColorTest.php │ │ │ └── NumberFormatTest.php │ │ │ └── Worksheet │ │ │ ├── AutoFilter │ │ │ ├── Column │ │ │ │ └── RuleTest.php │ │ │ └── ColumnTest.php │ │ │ ├── AutoFilterTest.php │ │ │ ├── CellCollectionTest.php │ │ │ ├── ColumnCellIteratorTest.php │ │ │ ├── ColumnIteratorTest.php │ │ │ ├── RowCellIteratorTest.php │ │ │ ├── RowIteratorTest.php │ │ │ ├── WorksheetColumnTest.php │ │ │ └── WorksheetRowTest.php │ │ ├── bootstrap.php │ │ ├── custom │ │ ├── Complex.php │ │ └── complexAssert.php │ │ ├── phpunit-cc.xml │ │ ├── phpunit.xml │ │ ├── rawTestData │ │ ├── Calculation │ │ │ ├── DateTime │ │ │ │ ├── DATE.data │ │ │ │ ├── DATEDIF.data │ │ │ │ ├── DATEVALUE.data │ │ │ │ ├── DAY.data │ │ │ │ ├── DAYS360.data │ │ │ │ ├── EDATE.data │ │ │ │ ├── EOMONTH.data │ │ │ │ ├── HOUR.data │ │ │ │ ├── MINUTE.data │ │ │ │ ├── MONTH.data │ │ │ │ ├── NETWORKDAYS.data │ │ │ │ ├── SECOND.data │ │ │ │ ├── TIME.data │ │ │ │ ├── TIMEVALUE.data │ │ │ │ ├── WEEKDAY.data │ │ │ │ ├── WEEKNUM.data │ │ │ │ ├── WORKDAY.data │ │ │ │ ├── YEAR.data │ │ │ │ └── YEARFRAC.data │ │ │ ├── Engineering │ │ │ │ ├── BESSELI.data │ │ │ │ ├── BESSELJ.data │ │ │ │ ├── BESSELK.data │ │ │ │ ├── BESSELY.data │ │ │ │ ├── BIN2DEC.data │ │ │ │ ├── BIN2HEX.data │ │ │ │ ├── BIN2OCT.data │ │ │ │ ├── COMPLEX.data │ │ │ │ ├── CONVERTUOM.data │ │ │ │ ├── DEC2BIN.data │ │ │ │ ├── DEC2HEX.data │ │ │ │ ├── DEC2OCT.data │ │ │ │ ├── DELTA.data │ │ │ │ ├── ERF.data │ │ │ │ ├── ERFC.data │ │ │ │ ├── GESTEP.data │ │ │ │ ├── HEX2BIN.data │ │ │ │ ├── HEX2DEC.data │ │ │ │ ├── HEX2OCT.data │ │ │ │ ├── IMABS.data │ │ │ │ ├── IMAGINARY.data │ │ │ │ ├── IMARGUMENT.data │ │ │ │ ├── IMCONJUGATE.data │ │ │ │ ├── IMCOS.data │ │ │ │ ├── IMDIV.data │ │ │ │ ├── IMEXP.data │ │ │ │ ├── IMLN.data │ │ │ │ ├── IMLOG10.data │ │ │ │ ├── IMLOG2.data │ │ │ │ ├── IMPOWER.data │ │ │ │ ├── IMPRODUCT.data │ │ │ │ ├── IMREAL.data │ │ │ │ ├── IMSIN.data │ │ │ │ ├── IMSQRT.data │ │ │ │ ├── IMSUB.data │ │ │ │ ├── IMSUM.data │ │ │ │ ├── OCT2BIN.data │ │ │ │ ├── OCT2DEC.data │ │ │ │ └── OCT2HEX.data │ │ │ ├── Financial │ │ │ │ ├── ACCRINT.data │ │ │ │ ├── ACCRINTM.data │ │ │ │ ├── AMORDEGRC.data │ │ │ │ ├── AMORLINC.data │ │ │ │ ├── COUPDAYBS.data │ │ │ │ ├── COUPDAYS.data │ │ │ │ ├── COUPDAYSNC.data │ │ │ │ ├── COUPNCD.data │ │ │ │ ├── COUPNUM.data │ │ │ │ ├── COUPPCD.data │ │ │ │ ├── CUMIPMT.data │ │ │ │ ├── CUMPRINC.data │ │ │ │ ├── DB.data │ │ │ │ ├── DDB.data │ │ │ │ ├── DISC.data │ │ │ │ ├── DOLLARDE.data │ │ │ │ ├── DOLLARFR.data │ │ │ │ ├── EFFECT.data │ │ │ │ ├── FV.data │ │ │ │ ├── FVSCHEDULE.data │ │ │ │ ├── INTRATE.data │ │ │ │ ├── IPMT.data │ │ │ │ ├── IRR.data │ │ │ │ ├── ISPMT.data │ │ │ │ ├── MIRR.data │ │ │ │ ├── NOMINAL.data │ │ │ │ ├── NPER.data │ │ │ │ ├── NPV.data │ │ │ │ ├── PRICE.data │ │ │ │ ├── RATE.data │ │ │ │ └── XIRR.data │ │ │ ├── Functions │ │ │ │ ├── ERROR_TYPE.data │ │ │ │ ├── IS_BLANK.data │ │ │ │ ├── IS_ERR.data │ │ │ │ ├── IS_ERROR.data │ │ │ │ ├── IS_EVEN.data │ │ │ │ ├── IS_LOGICAL.data │ │ │ │ ├── IS_NA.data │ │ │ │ ├── IS_NONTEXT.data │ │ │ │ ├── IS_NUMBER.data │ │ │ │ ├── IS_ODD.data │ │ │ │ ├── IS_TEXT.data │ │ │ │ ├── N.data │ │ │ │ └── TYPE.data │ │ │ ├── Logical │ │ │ │ ├── AND.data │ │ │ │ ├── IF.data │ │ │ │ ├── IFERROR.data │ │ │ │ ├── NOT.data │ │ │ │ └── OR.data │ │ │ ├── LookupRef │ │ │ │ ├── HLOOKUP.data │ │ │ │ └── VLOOKUP.data │ │ │ ├── MathTrig │ │ │ │ ├── ATAN2.data │ │ │ │ ├── CEILING.data │ │ │ │ ├── COMBIN.data │ │ │ │ ├── EVEN.data │ │ │ │ ├── FACT.data │ │ │ │ ├── FACTDOUBLE.data │ │ │ │ ├── FLOOR.data │ │ │ │ ├── GCD.data │ │ │ │ ├── INT.data │ │ │ │ ├── LCM.data │ │ │ │ ├── LOG.data │ │ │ │ ├── MDETERM.data │ │ │ │ ├── MINVERSE.data │ │ │ │ ├── MMULT.data │ │ │ │ ├── MOD.data │ │ │ │ ├── MROUND.data │ │ │ │ ├── MULTINOMIAL.data │ │ │ │ ├── ODD.data │ │ │ │ ├── POWER.data │ │ │ │ ├── PRODUCT.data │ │ │ │ ├── QUOTIENT.data │ │ │ │ ├── ROMAN.data │ │ │ │ ├── ROUNDDOWN.data │ │ │ │ ├── ROUNDUP.data │ │ │ │ ├── SERIESSUM.data │ │ │ │ ├── SIGN.data │ │ │ │ ├── SQRTPI.data │ │ │ │ ├── SUMSQ.data │ │ │ │ └── TRUNC.data │ │ │ └── TextData │ │ │ │ ├── CHAR.data │ │ │ │ ├── CLEAN.data │ │ │ │ ├── CODE.data │ │ │ │ ├── CONCATENATE.data │ │ │ │ ├── DOLLAR.data │ │ │ │ ├── FIND.data │ │ │ │ ├── FIXED.data │ │ │ │ ├── LEFT.data │ │ │ │ ├── LEN.data │ │ │ │ ├── LOWER.data │ │ │ │ ├── MID.data │ │ │ │ ├── PROPER.data │ │ │ │ ├── REPLACE.data │ │ │ │ ├── RIGHT.data │ │ │ │ ├── SEARCH.data │ │ │ │ ├── SUBSTITUTE.data │ │ │ │ ├── T.data │ │ │ │ ├── TEXT.data │ │ │ │ ├── TRIM.data │ │ │ │ ├── UPPER.data │ │ │ │ └── VALUE.data │ │ ├── CalculationBinaryComparisonOperation.data │ │ ├── Cell │ │ │ └── DefaultValueBinder.data │ │ ├── CellAbsoluteCoordinate.data │ │ ├── CellAbsoluteReference.data │ │ ├── CellBuildRange.data │ │ ├── CellCoordinates.data │ │ ├── CellExtractAllCellReferencesInRange.data │ │ ├── CellGetRangeBoundaries.data │ │ ├── CellRangeBoundaries.data │ │ ├── CellRangeDimension.data │ │ ├── CellSplitRange.data │ │ ├── ColumnIndex.data │ │ ├── ColumnString.data │ │ ├── Reader │ │ │ ├── XEETestInvalidUTF-16.xml │ │ │ ├── XEETestInvalidUTF-16BE.xml │ │ │ ├── XEETestInvalidUTF-16LE.xml │ │ │ ├── XEETestInvalidUTF-8.xml │ │ │ ├── XEETestValidUTF-16.xml │ │ │ ├── XEETestValidUTF-16BE.xml │ │ │ ├── XEETestValidUTF-16LE.xml │ │ │ └── XEETestValidUTF-8.xml │ │ ├── Shared │ │ │ ├── CentimeterSizeToPixels.data │ │ │ ├── CodePage.data │ │ │ ├── DateTimeExcelToPHP1900.data │ │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ │ ├── DateTimeExcelToPHP1904.data │ │ │ ├── DateTimeFormatCodes.data │ │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1904.data │ │ │ ├── FontSizeToPixels.data │ │ │ ├── InchSizeToPixels.data │ │ │ └── PasswordHashes.data │ │ └── Style │ │ │ ├── ColorChangeBrightness.data │ │ │ ├── ColorGetBlue.data │ │ │ ├── ColorGetGreen.data │ │ │ ├── ColorGetRed.data │ │ │ └── NumberFormat.data │ │ └── testDataFileIterator.php └── ticketpark │ └── htmlphpexcel │ ├── .gitignore │ ├── README.md │ ├── Resources │ └── meta │ │ └── LICENSE │ ├── composer.json │ ├── example │ ├── example.html │ └── example.php │ ├── lib │ └── HtmlPhpExcel │ │ ├── Elements │ │ ├── Base │ │ │ └── BaseElement.php │ │ ├── Cell.php │ │ ├── Document.php │ │ ├── Row.php │ │ └── Table.php │ │ ├── Exception │ │ └── HtmlPhpExcelException.php │ │ ├── HtmlPhpExcel.php │ │ └── Parser │ │ └── Parser.php │ ├── phpunit.xml │ └── tests │ ├── HtmlPhpExcel │ └── Tests │ │ ├── HtmlPhpExcelTest.php │ │ └── Parser │ │ └── ParserTest.php │ └── testfiles │ └── test.html ├── viewClientDetails.php ├── viewClientProjects.php ├── viewClients.php ├── viewEmployeeDetails.php ├── viewEmployees.php ├── viewGST.php ├── viewInvoices.php ├── viewProjects.php └── viewSingleProjectDetails.php /ToDo: -------------------------------------------------------------------------------- 1 | Currently there is no improvement 2 | Updated on 17th feb,2022 3 | Change logo 4 | Credit note 5 | -------------------------------------------------------------------------------- /Validate.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /clientNameList.php: -------------------------------------------------------------------------------- 1 | listClientName($term); 7 | echo json_encode($result); 8 | ?> -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "ticketpark/htmlphpexcel": "^0.4.1" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /dbconnect.php: -------------------------------------------------------------------------------- 1 | conn = mysqli_connect("localhost", "mukesh", "MKUghy49", "mukesh"); 7 | 8 | if (mysqli_connect_errno()) 9 | { 10 | echo "Failed to connect to MySQL: " . mysqli_connect_error(); 11 | } 12 | } 13 | } 14 | 15 | ?> -------------------------------------------------------------------------------- /descriptionOfReceivedServicesList.php: -------------------------------------------------------------------------------- 1 | listDescOfReceivedServices($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /descriptionOfServicesList.php: -------------------------------------------------------------------------------- 1 | listDescOfServices($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar.png -------------------------------------------------------------------------------- /dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar04.png -------------------------------------------------------------------------------- /dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar2.png -------------------------------------------------------------------------------- /dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar3.png -------------------------------------------------------------------------------- /dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar5.png -------------------------------------------------------------------------------- /dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/visa.png -------------------------------------------------------------------------------- /dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/icons.png -------------------------------------------------------------------------------- /dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo1.png -------------------------------------------------------------------------------- /dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo2.png -------------------------------------------------------------------------------- /dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo3.jpg -------------------------------------------------------------------------------- /dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo4.jpg -------------------------------------------------------------------------------- /dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /emails/invoiceEmailToClient.php: -------------------------------------------------------------------------------- 1 |
'; 10 | $message .= 'Dear '.$client_name.',
'; 11 | $message .= 'Invoice # '.$invoice_id.'.
'; 12 | $message .= 'Invoice Date: '.$invoice_date.'.
'; 13 | $message .= 'Please click the link below to download or view the invoice: '.$invoice_date.'.
'; 14 | $message .='Invoice'; 15 | $message .= 'Thanks
'.$companyInfo['company_name'].'