├── .editorconfig ├── .gitattributes ├── .tx └── config ├── COPYING ├── ChangeLog.md ├── LICENSE ├── README.md ├── admin ├── about.php ├── orderprinters.php └── setup.php ├── ajax.php ├── bin └── module_takepos-7.0.zip ├── class ├── actions_takepos.class.php └── api_takepos.class.php ├── core ├── boxes │ ├── README.md │ └── takeposwidget1.php ├── modules │ ├── mailings │ │ └── mailinglist_takepos_myobject.modules.php │ └── modTakePos.class.php ├── tpl │ └── mytemplate.tpl.php └── triggers │ ├── README.md │ └── interface_99_modTakePos_TakePosTriggers.class.php ├── css ├── colorbox.css ├── images │ ├── border.png │ ├── controls.png │ ├── loading.gif │ └── loading_background.png └── pos.css ├── customers.php ├── dev ├── codesniffer │ └── DolibarrPSR2.xml ├── git-hooks │ ├── README │ ├── post-commit │ ├── pre-commit │ └── pre-push └── img │ ├── README.md │ ├── gfdl-129x44.png │ ├── gfdl-66x23.png │ ├── gfdl-logo.svg │ ├── gpl-v3-logo.svg │ ├── gplv3-127x51.png │ ├── gplv3-88x31.png │ └── takepos.svg ├── doc ├── Specifications.asciidoc ├── Specifications_full_en.notindoc.asciidoc └── user │ ├── Makefile │ ├── make.bat │ └── source │ ├── conf.py │ └── index.rst ├── floors.php ├── freezone.php ├── genimg ├── add.jpg ├── empty.jpg └── index.php ├── img ├── arrow-next-top.png ├── arrow-next.png ├── arrow-prev-top.png ├── arrow-prev.png ├── gfdl.png ├── gplv3.png ├── marketplace │ ├── cashcontrol.jpg │ └── takeposmobile.jpg ├── object_takepos.png ├── table.gif └── takepos.png ├── invoice.php ├── js ├── jquery.colorbox-min.js └── takepos.js ├── langs ├── en_US │ └── takepos.lang ├── es_ES │ └── takepos.lang └── fr_FR │ └── takepos.lang ├── lib └── takepos.lib.php ├── modulebuilder.txt ├── pay.php ├── phpdoc.dist.xml ├── receipt.php ├── sql └── llx_takepos_floor_tables.sql ├── takepos.php └── test └── phpunit └── TakePosFunctionalTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/.tx/config -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG TAKEPOS FOR DOLIBARR ERP CRM 2 | 3 | ## 1.0 4 | Initial version 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/README.md -------------------------------------------------------------------------------- /admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/admin/about.php -------------------------------------------------------------------------------- /admin/orderprinters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/admin/orderprinters.php -------------------------------------------------------------------------------- /admin/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/admin/setup.php -------------------------------------------------------------------------------- /ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/ajax.php -------------------------------------------------------------------------------- /bin/module_takepos-7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/bin/module_takepos-7.0.zip -------------------------------------------------------------------------------- /class/actions_takepos.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/class/actions_takepos.class.php -------------------------------------------------------------------------------- /class/api_takepos.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/class/api_takepos.class.php -------------------------------------------------------------------------------- /core/boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/boxes/README.md -------------------------------------------------------------------------------- /core/boxes/takeposwidget1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/boxes/takeposwidget1.php -------------------------------------------------------------------------------- /core/modules/mailings/mailinglist_takepos_myobject.modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/modules/mailings/mailinglist_takepos_myobject.modules.php -------------------------------------------------------------------------------- /core/modules/modTakePos.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/modules/modTakePos.class.php -------------------------------------------------------------------------------- /core/tpl/mytemplate.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/tpl/mytemplate.tpl.php -------------------------------------------------------------------------------- /core/triggers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/triggers/README.md -------------------------------------------------------------------------------- /core/triggers/interface_99_modTakePos_TakePosTriggers.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/core/triggers/interface_99_modTakePos_TakePosTriggers.class.php -------------------------------------------------------------------------------- /css/colorbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/colorbox.css -------------------------------------------------------------------------------- /css/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/images/border.png -------------------------------------------------------------------------------- /css/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/images/controls.png -------------------------------------------------------------------------------- /css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/images/loading.gif -------------------------------------------------------------------------------- /css/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/images/loading_background.png -------------------------------------------------------------------------------- /css/pos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/css/pos.css -------------------------------------------------------------------------------- /customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/customers.php -------------------------------------------------------------------------------- /dev/codesniffer/DolibarrPSR2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/codesniffer/DolibarrPSR2.xml -------------------------------------------------------------------------------- /dev/git-hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/git-hooks/README -------------------------------------------------------------------------------- /dev/git-hooks/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/git-hooks/post-commit -------------------------------------------------------------------------------- /dev/git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | composer git_pre_commit 3 | -------------------------------------------------------------------------------- /dev/git-hooks/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | composer git_pre_push 3 | -------------------------------------------------------------------------------- /dev/img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/README.md -------------------------------------------------------------------------------- /dev/img/gfdl-129x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gfdl-129x44.png -------------------------------------------------------------------------------- /dev/img/gfdl-66x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gfdl-66x23.png -------------------------------------------------------------------------------- /dev/img/gfdl-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gfdl-logo.svg -------------------------------------------------------------------------------- /dev/img/gpl-v3-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gpl-v3-logo.svg -------------------------------------------------------------------------------- /dev/img/gplv3-127x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gplv3-127x51.png -------------------------------------------------------------------------------- /dev/img/gplv3-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/gplv3-88x31.png -------------------------------------------------------------------------------- /dev/img/takepos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/dev/img/takepos.svg -------------------------------------------------------------------------------- /doc/Specifications.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/Specifications.asciidoc -------------------------------------------------------------------------------- /doc/Specifications_full_en.notindoc.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/Specifications_full_en.notindoc.asciidoc -------------------------------------------------------------------------------- /doc/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/user/Makefile -------------------------------------------------------------------------------- /doc/user/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/user/make.bat -------------------------------------------------------------------------------- /doc/user/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/user/source/conf.py -------------------------------------------------------------------------------- /doc/user/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/doc/user/source/index.rst -------------------------------------------------------------------------------- /floors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/floors.php -------------------------------------------------------------------------------- /freezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/freezone.php -------------------------------------------------------------------------------- /genimg/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/genimg/add.jpg -------------------------------------------------------------------------------- /genimg/empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/genimg/empty.jpg -------------------------------------------------------------------------------- /genimg/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/genimg/index.php -------------------------------------------------------------------------------- /img/arrow-next-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/arrow-next-top.png -------------------------------------------------------------------------------- /img/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/arrow-next.png -------------------------------------------------------------------------------- /img/arrow-prev-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/arrow-prev-top.png -------------------------------------------------------------------------------- /img/arrow-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/arrow-prev.png -------------------------------------------------------------------------------- /img/gfdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/gfdl.png -------------------------------------------------------------------------------- /img/gplv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/gplv3.png -------------------------------------------------------------------------------- /img/marketplace/cashcontrol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/marketplace/cashcontrol.jpg -------------------------------------------------------------------------------- /img/marketplace/takeposmobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/marketplace/takeposmobile.jpg -------------------------------------------------------------------------------- /img/object_takepos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/object_takepos.png -------------------------------------------------------------------------------- /img/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/table.gif -------------------------------------------------------------------------------- /img/takepos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/img/takepos.png -------------------------------------------------------------------------------- /invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/invoice.php -------------------------------------------------------------------------------- /js/jquery.colorbox-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/js/jquery.colorbox-min.js -------------------------------------------------------------------------------- /js/takepos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/js/takepos.js -------------------------------------------------------------------------------- /langs/en_US/takepos.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/langs/en_US/takepos.lang -------------------------------------------------------------------------------- /langs/es_ES/takepos.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/langs/es_ES/takepos.lang -------------------------------------------------------------------------------- /langs/fr_FR/takepos.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/langs/fr_FR/takepos.lang -------------------------------------------------------------------------------- /lib/takepos.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/lib/takepos.lib.php -------------------------------------------------------------------------------- /modulebuilder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/modulebuilder.txt -------------------------------------------------------------------------------- /pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/pay.php -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/receipt.php -------------------------------------------------------------------------------- /sql/llx_takepos_floor_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/sql/llx_takepos_floor_tables.sql -------------------------------------------------------------------------------- /takepos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/takepos.php -------------------------------------------------------------------------------- /test/phpunit/TakePosFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreubisquerra/TakePOS/HEAD/test/phpunit/TakePosFunctionalTest.php --------------------------------------------------------------------------------