├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── dependabot.yml ├── label-commenter-config.yml ├── pull_request_template.md └── workflows │ ├── auto-tag-new-version.yml │ ├── close_stale_issue.yml │ ├── continuous-integration.yml │ ├── label-commenter.yml │ ├── locales-sync.yml │ ├── locales-update-source.yml │ └── release.yml ├── .gitignore ├── .php-cs-fixer.php ├── .stylelintrc.js ├── .twig_cs.dist.php ├── .tx └── config ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── ajax ├── billactions.php ├── dropdownReference.php ├── dropdownSupplier.php ├── inputnumber.php ├── linkactions.php ├── massreception.php └── referencespecifications.php ├── composer.json ├── composer.lock ├── front ├── bill.form.php ├── bill.php ├── config.form.php ├── documentcategory.form.php ├── export.php ├── menu.php ├── order.form.php ├── order.php ├── order_item.form.php ├── order_supplier.form.php ├── ordertype.php ├── othertype.form.php ├── preference.form.php ├── profile.form.php ├── reception.form.php ├── reference.form.php ├── reference.php ├── reference_supplier.form.php ├── signature.php └── surveysupplier.form.php ├── generate └── custom.php.example ├── glpi_network.png ├── hook.php ├── inc ├── accountsection.class.php ├── analyticnature.class.php ├── bill.class.php ├── billstate.class.php ├── billtype.class.php ├── config.class.php ├── deliverystate.class.php ├── documentcategory.class.php ├── link.class.php ├── menu.class.php ├── notificationtargetorder.class.php ├── order.class.php ├── order_item.class.php ├── order_supplier.class.php ├── orderinjection.class.php ├── orderpayment.class.php ├── orderstate.class.php ├── ordertax.class.php ├── ordertype.class.php ├── other.class.php ├── othertype.class.php ├── preference.class.php ├── profile.class.php ├── reception.class.php ├── reference.class.php ├── reference_supplier.class.php ├── referencefree.class.php ├── referenceinjection.class.php └── surveysupplier.class.php ├── locales ├── cs_CZ.mo ├── cs_CZ.po ├── de_DE.mo ├── de_DE.po ├── en_GB.mo ├── en_GB.po ├── es_EC.mo ├── es_EC.po ├── es_ES.mo ├── es_ES.po ├── fi_FI.mo ├── fi_FI.po ├── fr_CA.mo ├── fr_CA.po ├── fr_FR.mo ├── fr_FR.po ├── hr_HR.mo ├── hr_HR.po ├── it_IT.mo ├── it_IT.po ├── ko_KR.mo ├── ko_KR.po ├── order.pot ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── pt_PT.mo ├── pt_PT.po ├── ro_RO.mo ├── ro_RO.po ├── ru_RU.mo ├── ru_RU.po ├── tr_TR.mo ├── tr_TR.po ├── zh_CN.mo └── zh_CN.po ├── logo └── logo.jpg ├── order.png ├── phpstan.neon ├── pics ├── bill-icon.png ├── budget-icon.png ├── nothing.gif ├── order-icon.png └── reference-icon.png ├── plugin.xml ├── psalm.xml ├── public └── css │ └── order.css ├── rector.php ├── report ├── deliveryinfos │ └── deliveryinfos.php └── orderdelivery │ └── orderdelivery.php ├── screenshots ├── screenshot1.png ├── screenshot2.png └── screenshot3.png ├── setup.php ├── stubs └── PluginDatainjectionInjectionInterface.php ├── templates ├── example.odt ├── generate_item.html.twig ├── order_getitems.html.twig ├── order_infocom.html.twig └── order_link_item.html.twig └── tools └── HEADER /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-tag-new-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/auto-tag-new-version.yml -------------------------------------------------------------------------------- /.github/workflows/close_stale_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/close_stale_issue.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/locales-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/locales-sync.yml -------------------------------------------------------------------------------- /.github/workflows/locales-update-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/locales-update-source.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | vendor/ 3 | .gh_token 4 | *.min.* 5 | var/ 6 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.twig_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.twig_cs.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ajax/billactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/billactions.php -------------------------------------------------------------------------------- /ajax/dropdownReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/dropdownReference.php -------------------------------------------------------------------------------- /ajax/dropdownSupplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/dropdownSupplier.php -------------------------------------------------------------------------------- /ajax/inputnumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/inputnumber.php -------------------------------------------------------------------------------- /ajax/linkactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/linkactions.php -------------------------------------------------------------------------------- /ajax/massreception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/massreception.php -------------------------------------------------------------------------------- /ajax/referencespecifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/ajax/referencespecifications.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/composer.lock -------------------------------------------------------------------------------- /front/bill.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/bill.form.php -------------------------------------------------------------------------------- /front/bill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/bill.php -------------------------------------------------------------------------------- /front/config.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/config.form.php -------------------------------------------------------------------------------- /front/documentcategory.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/documentcategory.form.php -------------------------------------------------------------------------------- /front/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/export.php -------------------------------------------------------------------------------- /front/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/menu.php -------------------------------------------------------------------------------- /front/order.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/order.form.php -------------------------------------------------------------------------------- /front/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/order.php -------------------------------------------------------------------------------- /front/order_item.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/order_item.form.php -------------------------------------------------------------------------------- /front/order_supplier.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/order_supplier.form.php -------------------------------------------------------------------------------- /front/ordertype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/ordertype.php -------------------------------------------------------------------------------- /front/othertype.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/othertype.form.php -------------------------------------------------------------------------------- /front/preference.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/preference.form.php -------------------------------------------------------------------------------- /front/profile.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/profile.form.php -------------------------------------------------------------------------------- /front/reception.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/reception.form.php -------------------------------------------------------------------------------- /front/reference.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/reference.form.php -------------------------------------------------------------------------------- /front/reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/reference.php -------------------------------------------------------------------------------- /front/reference_supplier.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/reference_supplier.form.php -------------------------------------------------------------------------------- /front/signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/signature.php -------------------------------------------------------------------------------- /front/surveysupplier.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/front/surveysupplier.form.php -------------------------------------------------------------------------------- /generate/custom.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/generate/custom.php.example -------------------------------------------------------------------------------- /glpi_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/glpi_network.png -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/hook.php -------------------------------------------------------------------------------- /inc/accountsection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/accountsection.class.php -------------------------------------------------------------------------------- /inc/analyticnature.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/analyticnature.class.php -------------------------------------------------------------------------------- /inc/bill.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/bill.class.php -------------------------------------------------------------------------------- /inc/billstate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/billstate.class.php -------------------------------------------------------------------------------- /inc/billtype.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/billtype.class.php -------------------------------------------------------------------------------- /inc/config.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/config.class.php -------------------------------------------------------------------------------- /inc/deliverystate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/deliverystate.class.php -------------------------------------------------------------------------------- /inc/documentcategory.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/documentcategory.class.php -------------------------------------------------------------------------------- /inc/link.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/link.class.php -------------------------------------------------------------------------------- /inc/menu.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/menu.class.php -------------------------------------------------------------------------------- /inc/notificationtargetorder.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/notificationtargetorder.class.php -------------------------------------------------------------------------------- /inc/order.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/order.class.php -------------------------------------------------------------------------------- /inc/order_item.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/order_item.class.php -------------------------------------------------------------------------------- /inc/order_supplier.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/order_supplier.class.php -------------------------------------------------------------------------------- /inc/orderinjection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/orderinjection.class.php -------------------------------------------------------------------------------- /inc/orderpayment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/orderpayment.class.php -------------------------------------------------------------------------------- /inc/orderstate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/orderstate.class.php -------------------------------------------------------------------------------- /inc/ordertax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/ordertax.class.php -------------------------------------------------------------------------------- /inc/ordertype.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/ordertype.class.php -------------------------------------------------------------------------------- /inc/other.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/other.class.php -------------------------------------------------------------------------------- /inc/othertype.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/othertype.class.php -------------------------------------------------------------------------------- /inc/preference.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/preference.class.php -------------------------------------------------------------------------------- /inc/profile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/profile.class.php -------------------------------------------------------------------------------- /inc/reception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/reception.class.php -------------------------------------------------------------------------------- /inc/reference.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/reference.class.php -------------------------------------------------------------------------------- /inc/reference_supplier.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/reference_supplier.class.php -------------------------------------------------------------------------------- /inc/referencefree.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/referencefree.class.php -------------------------------------------------------------------------------- /inc/referenceinjection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/referenceinjection.class.php -------------------------------------------------------------------------------- /inc/surveysupplier.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/inc/surveysupplier.class.php -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/de_DE.mo -------------------------------------------------------------------------------- /locales/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/de_DE.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/es_EC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/es_EC.mo -------------------------------------------------------------------------------- /locales/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/es_EC.po -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/es_ES.po -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fi_FI.po -------------------------------------------------------------------------------- /locales/fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fr_CA.mo -------------------------------------------------------------------------------- /locales/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fr_CA.po -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/hr_HR.mo -------------------------------------------------------------------------------- /locales/hr_HR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/hr_HR.po -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/it_IT.po -------------------------------------------------------------------------------- /locales/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ko_KR.mo -------------------------------------------------------------------------------- /locales/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ko_KR.po -------------------------------------------------------------------------------- /locales/order.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/order.pot -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/pt_PT.po -------------------------------------------------------------------------------- /locales/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ro_RO.mo -------------------------------------------------------------------------------- /locales/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ro_RO.po -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/tr_TR.po -------------------------------------------------------------------------------- /locales/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/zh_CN.mo -------------------------------------------------------------------------------- /locales/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/locales/zh_CN.po -------------------------------------------------------------------------------- /logo/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/logo/logo.jpg -------------------------------------------------------------------------------- /order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/order.png -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/phpstan.neon -------------------------------------------------------------------------------- /pics/bill-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/pics/bill-icon.png -------------------------------------------------------------------------------- /pics/budget-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/pics/budget-icon.png -------------------------------------------------------------------------------- /pics/nothing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/pics/nothing.gif -------------------------------------------------------------------------------- /pics/order-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/pics/order-icon.png -------------------------------------------------------------------------------- /pics/reference-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/pics/reference-icon.png -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/plugin.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/public/css/order.css -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/rector.php -------------------------------------------------------------------------------- /report/deliveryinfos/deliveryinfos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/report/deliveryinfos/deliveryinfos.php -------------------------------------------------------------------------------- /report/orderdelivery/orderdelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/report/orderdelivery/orderdelivery.php -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/screenshots/screenshot3.png -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/setup.php -------------------------------------------------------------------------------- /stubs/PluginDatainjectionInjectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/stubs/PluginDatainjectionInjectionInterface.php -------------------------------------------------------------------------------- /templates/example.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/templates/example.odt -------------------------------------------------------------------------------- /templates/generate_item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/templates/generate_item.html.twig -------------------------------------------------------------------------------- /templates/order_getitems.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/templates/order_getitems.html.twig -------------------------------------------------------------------------------- /templates/order_infocom.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/templates/order_infocom.html.twig -------------------------------------------------------------------------------- /templates/order_link_item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/templates/order_link_item.html.twig -------------------------------------------------------------------------------- /tools/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/order/HEAD/tools/HEADER --------------------------------------------------------------------------------