├── .editorconfig ├── .gitignore ├── .hound.yml ├── .symfony.insight.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── htdocs └── timesheet │ ├── AttendanceClock.php │ ├── AttendanceEventAdmin.php │ ├── ChangeLog.md │ ├── Timesheet.php │ ├── TimesheetFavouriteAdmin.php │ ├── TimesheetOtherApproval.php │ ├── TimesheetProjectInvoice.php │ ├── TimesheetReportProject.php │ ├── TimesheetReportUser.php │ ├── TimesheetTeamApproval.php │ ├── TimesheetUserTasksAdmin.php │ ├── admin │ ├── index.php │ └── timesheetsetup.php │ ├── ajax.php │ ├── class │ ├── AttendanceEvent.class.php │ ├── TimesheetFavourite.class.php │ ├── TimesheetHoliday.class.php │ ├── TimesheetPublicHoliday.class.php │ ├── TimesheetReport.class.php │ ├── TimesheetTask.class.php │ ├── TimesheetUserTasks.class.php │ └── index.php │ ├── core │ ├── ajaxGenericSelectHandler.php │ ├── boxes │ │ ├── box_approval.php │ │ ├── box_time.php │ │ └── index.php │ ├── css │ │ ├── index.php │ │ ├── stopWatch.css │ │ └── timesheet.css │ ├── index.php │ ├── js │ │ ├── index.php │ │ ├── jscolor.js │ │ ├── jscolor.min.js │ │ ├── jsparameters.php │ │ ├── stopWatch.js │ │ ├── timesheet.js │ │ └── timesheetAjax.js │ ├── lib │ │ ├── dev.inc.php │ │ ├── generic.lib.php │ │ ├── includeMain.lib.php │ │ ├── index.php │ │ └── timesheet.lib.php │ └── modules │ │ ├── index.php │ │ ├── modtimesheet.class.php │ │ ├── modules_timesheet.php │ │ └── pdf │ │ ├── index.php │ │ └── pdf_rat.modules.php │ ├── doc │ ├── Module_timesheet.docx │ ├── Module_timesheet.pdf │ ├── html │ │ ├── .buildinfo │ │ ├── Approval.html │ │ ├── Attendance.html │ │ ├── Favourite.html │ │ ├── Holiday.html │ │ ├── Permission.html │ │ ├── ProjectInvoice.html │ │ ├── ProjectReports.html │ │ ├── TimesheetView.html │ │ ├── _images │ │ │ ├── image1.png │ │ │ ├── image10.png │ │ │ ├── image11.png │ │ │ ├── image12.png │ │ │ ├── image13.png │ │ │ ├── image14.png │ │ │ ├── image15.png │ │ │ ├── image16.png │ │ │ ├── image17.png │ │ │ ├── image18.png │ │ │ ├── image19.png │ │ │ ├── image2.png │ │ │ ├── image20.png │ │ │ ├── image21.png │ │ │ ├── image22.png │ │ │ ├── image23.png │ │ │ ├── image24.png │ │ │ ├── image25.png │ │ │ ├── image26.png │ │ │ ├── image27.png │ │ │ ├── image28.png │ │ │ ├── image29.png │ │ │ ├── image3.png │ │ │ ├── image30.png │ │ │ ├── image31.png │ │ │ ├── image32.png │ │ │ ├── image33.png │ │ │ ├── image34.png │ │ │ ├── image35.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ ├── image7.png │ │ │ ├── image8.png │ │ │ └── image9.png │ │ ├── _sources │ │ │ ├── Approval.rst.txt │ │ │ ├── Attendance.rst.txt │ │ │ ├── Favourite.rst.txt │ │ │ ├── Holiday.rst.txt │ │ │ ├── Permission.rst.txt │ │ │ ├── ProjectInvoice.rst.txt │ │ │ ├── ProjectReports.rst.txt │ │ │ ├── TimesheetView.rst.txt │ │ │ ├── index.rst.txt │ │ │ ├── prerequisite.rst.txt │ │ │ └── setup.rst.txt │ │ ├── _static │ │ │ ├── alabaster.css │ │ │ ├── basic.css │ │ │ ├── custom.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.12.0.js │ │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── prerequisite.html │ │ ├── search.html │ │ ├── searchindex.js │ │ └── setup.html │ └── index.php │ ├── img │ ├── 512-play-arrow.png │ ├── 512-stop-square.png │ ├── fav_off.png │ ├── fav_on.png │ ├── index.php │ ├── object_timesheet.png │ ├── play-arrow.png │ ├── stop-square.png │ ├── timesheet.png │ ├── timesheet16.png │ ├── timesheet22.png │ ├── timesheet32.png │ ├── timesheet48.png │ ├── timesheet_over.png │ ├── tinyblack.gif │ └── tinyblack.png │ ├── index.php │ ├── langs │ ├── de_DE │ │ ├── index.php │ │ └── timesheet.lang │ ├── en_US │ │ ├── index.php │ │ └── timesheet.lang │ ├── es_ES │ │ ├── index.php │ │ └── timesheet.lang │ ├── fr_FR │ │ ├── index.php │ │ └── timesheet.lang │ ├── index.php │ └── it_IT │ │ ├── index.php │ │ └── timesheet.lang │ └── sql │ ├── index.php │ ├── llx_attendance_event.key.sql │ ├── llx_attendance_event.sql │ ├── llx_project_task_time_approval.key.sql │ ├── llx_project_task_time_approval.sql │ ├── llx_project_task_timesheet.key.sql │ ├── llx_project_task_timesheet.sql │ ├── llx_projet_task_time.key.sql │ └── llx_timesheet_whitelist.sql └── test └── phpunit └── TimesheetTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | phpcs: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /.symfony.insight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/.symfony.insight.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/README.md -------------------------------------------------------------------------------- /htdocs/timesheet/AttendanceClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/AttendanceClock.php -------------------------------------------------------------------------------- /htdocs/timesheet/AttendanceEventAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/AttendanceEventAdmin.php -------------------------------------------------------------------------------- /htdocs/timesheet/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/timesheet/Timesheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/Timesheet.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetFavouriteAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetFavouriteAdmin.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetOtherApproval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetOtherApproval.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetProjectInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetProjectInvoice.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetReportProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetReportProject.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetReportUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetReportUser.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetTeamApproval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetTeamApproval.php -------------------------------------------------------------------------------- /htdocs/timesheet/TimesheetUserTasksAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/TimesheetUserTasksAdmin.php -------------------------------------------------------------------------------- /htdocs/timesheet/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/admin/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/admin/timesheetsetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/admin/timesheetsetup.php -------------------------------------------------------------------------------- /htdocs/timesheet/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/ajax.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/AttendanceEvent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/AttendanceEvent.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetFavourite.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetFavourite.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetHoliday.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetHoliday.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetPublicHoliday.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetPublicHoliday.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetReport.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetReport.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetTask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetTask.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/TimesheetUserTasks.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/TimesheetUserTasks.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/class/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/class/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/ajaxGenericSelectHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/ajaxGenericSelectHandler.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/boxes/box_approval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/boxes/box_approval.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/boxes/box_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/boxes/box_time.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/boxes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/boxes/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/css/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/css/stopWatch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/css/stopWatch.css -------------------------------------------------------------------------------- /htdocs/timesheet/core/css/timesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/css/timesheet.css -------------------------------------------------------------------------------- /htdocs/timesheet/core/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/jscolor.js -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/jscolor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/jscolor.min.js -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/jsparameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/jsparameters.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/stopWatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/stopWatch.js -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/timesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/timesheet.js -------------------------------------------------------------------------------- /htdocs/timesheet/core/js/timesheetAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/js/timesheetAjax.js -------------------------------------------------------------------------------- /htdocs/timesheet/core/lib/dev.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/lib/dev.inc.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/lib/generic.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/lib/generic.lib.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/lib/includeMain.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/lib/includeMain.lib.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/lib/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/lib/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/lib/timesheet.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/lib/timesheet.lib.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/modules/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/modules/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/modules/modtimesheet.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/modules/modtimesheet.class.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/modules/modules_timesheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/modules/modules_timesheet.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/modules/pdf/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/modules/pdf/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/core/modules/pdf/pdf_rat.modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/core/modules/pdf/pdf_rat.modules.php -------------------------------------------------------------------------------- /htdocs/timesheet/doc/Module_timesheet.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/Module_timesheet.docx -------------------------------------------------------------------------------- /htdocs/timesheet/doc/Module_timesheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/Module_timesheet.pdf -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/.buildinfo -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/Approval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/Approval.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/Attendance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/Attendance.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/Favourite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/Favourite.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/Holiday.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/Holiday.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/Permission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/Permission.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/ProjectInvoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/ProjectInvoice.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/ProjectReports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/ProjectReports.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/TimesheetView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/TimesheetView.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image1.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image10.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image11.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image12.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image13.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image14.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image15.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image16.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image17.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image18.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image19.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image2.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image20.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image21.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image22.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image23.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image24.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image25.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image26.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image27.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image28.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image29.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image3.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image30.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image31.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image32.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image33.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image34.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image35.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image4.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image5.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image6.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image7.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image8.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_images/image9.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/Approval.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/Approval.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/Attendance.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/Attendance.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/Favourite.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/Favourite.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/Holiday.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/Holiday.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/Permission.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/Permission.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/ProjectInvoice.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/ProjectInvoice.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/ProjectReports.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/ProjectReports.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/TimesheetView.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/TimesheetView.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/prerequisite.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/prerequisite.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_sources/setup.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_sources/setup.rst.txt -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/alabaster.css -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/basic.css -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/doctools.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/documentation_options.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/file.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/jquery.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/language_data.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/minus.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/plus.png -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/pygments.css -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/searchtools.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/_static/underscore.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/genindex.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/index.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/objects.inv -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/prerequisite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/prerequisite.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/search.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/searchindex.js -------------------------------------------------------------------------------- /htdocs/timesheet/doc/html/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/html/setup.html -------------------------------------------------------------------------------- /htdocs/timesheet/doc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/doc/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/img/512-play-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/512-play-arrow.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/512-stop-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/512-stop-square.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/fav_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/fav_off.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/fav_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/fav_on.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/img/object_timesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/object_timesheet.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/play-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/play-arrow.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/stop-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/stop-square.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet16.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet22.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet32.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet48.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/timesheet_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/timesheet_over.png -------------------------------------------------------------------------------- /htdocs/timesheet/img/tinyblack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/tinyblack.gif -------------------------------------------------------------------------------- /htdocs/timesheet/img/tinyblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/img/tinyblack.png -------------------------------------------------------------------------------- /htdocs/timesheet/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/de_DE/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/de_DE/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/de_DE/timesheet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/de_DE/timesheet.lang -------------------------------------------------------------------------------- /htdocs/timesheet/langs/en_US/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/en_US/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/en_US/timesheet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/en_US/timesheet.lang -------------------------------------------------------------------------------- /htdocs/timesheet/langs/es_ES/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/es_ES/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/es_ES/timesheet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/es_ES/timesheet.lang -------------------------------------------------------------------------------- /htdocs/timesheet/langs/fr_FR/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/fr_FR/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/fr_FR/timesheet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/fr_FR/timesheet.lang -------------------------------------------------------------------------------- /htdocs/timesheet/langs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/it_IT/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/it_IT/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/langs/it_IT/timesheet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/langs/it_IT/timesheet.lang -------------------------------------------------------------------------------- /htdocs/timesheet/sql/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/index.php -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_attendance_event.key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_attendance_event.key.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_attendance_event.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_attendance_event.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_project_task_time_approval.key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_project_task_time_approval.key.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_project_task_time_approval.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_project_task_time_approval.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_project_task_timesheet.key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_project_task_timesheet.key.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_project_task_timesheet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_project_task_timesheet.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_projet_task_time.key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_projet_task_time.key.sql -------------------------------------------------------------------------------- /htdocs/timesheet/sql/llx_timesheet_whitelist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/htdocs/timesheet/sql/llx_timesheet_whitelist.sql -------------------------------------------------------------------------------- /test/phpunit/TimesheetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delcroip/dolibarr_project_timesheet/HEAD/test/phpunit/TimesheetTest.php --------------------------------------------------------------------------------