diff --git a/document_page_work_instruction/README.rst b/document_page_work_instruction/README.rst new file mode 100644 index 00000000000..a7801865e76 --- /dev/null +++ b/document_page_work_instruction/README.rst @@ -0,0 +1,85 @@ +============================================== +Document Management - Wiki - Work Instructions +============================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github + :target: https://github.com/OCA/management-system/tree/12.0/document_page_work_instruction + :alt: OCA/management-system +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/management-system-12-0/management-system-12-0-document_page_work_instruction + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/128/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module provides Work Instructions Template. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + + +To enter your work instruction template, you need to: + +* go to Management Systems > Configuration > Categories +* select the Work Instructions category and edit the template + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Savoir-faire Linux + +Contributors +~~~~~~~~~~~~ + +* Savoir-faire Linux +* Gervais Naoussi +* Eugen Don +* Jose Maria Alzaga + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/management-system `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/document_page_work_instruction/__init__.py b/document_page_work_instruction/__init__.py new file mode 100644 index 00000000000..12366ae8243 --- /dev/null +++ b/document_page_work_instruction/__init__.py @@ -0,0 +1,2 @@ +# Copyright (C) 2010 Savoir-faire Linux (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page_work_instruction/__manifest__.py b/document_page_work_instruction/__manifest__.py new file mode 100644 index 00000000000..acdc226c64d --- /dev/null +++ b/document_page_work_instruction/__manifest__.py @@ -0,0 +1,21 @@ +# Copyright (C) 2010 Savoir-faire Linux (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Document Management - Wiki - Work Instructions", + "version": "12.0.1.0.0", + "author": "Savoir-faire Linux,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/management-system", + "license": "AGPL-3", + "category": "Generic Modules/Others", + "depends": [ + 'document_page', + 'mgmtsystem', + ], + "data": [ + 'data/document_page.xml', + 'views/document_page_work_instructions.xml', + ], + "demo": [], + 'installable': True, +} diff --git a/document_page_work_instruction/data/document_page.xml b/document_page_work_instruction/data/document_page.xml new file mode 100644 index 00000000000..ca77e20488d --- /dev/null +++ b/document_page_work_instruction/data/document_page.xml @@ -0,0 +1,20 @@ + + + + + + Work Instructions + category + + Step 1 + +

Step 2

+ +

Step 3

+ ]]> +
+
+ +
+
diff --git a/document_page_work_instruction/i18n/de.po b/document_page_work_instruction/i18n/de.po new file mode 100644 index 00000000000..0b396dd266e --- /dev/null +++ b/document_page_work_instruction/i18n/de.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-07 01:45+0000\n" +"PO-Revision-Date: 2016-03-11 15:53+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Arbeitsanweisungen" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Arbeitsanweisungen Ihres Management-Systems." diff --git a/document_page_work_instruction/i18n/es.po b/document_page_work_instruction/i18n/es.po new file mode 100644 index 00000000000..9478ef91f9f --- /dev/null +++ b/document_page_work_instruction/i18n/es.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Instrucciones De Trabajo" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Instrucciones de trabajo de su sistema de gestión." diff --git a/document_page_work_instruction/i18n/es_CO.po b/document_page_work_instruction/i18n/es_CO.po new file mode 100644 index 00000000000..45bb2fcb87a --- /dev/null +++ b/document_page_work_instruction/i18n/es_CO.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 07:18+0000\n" +"PO-Revision-Date: 2018-01-16 07:18+0000\n" +"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Instructivo" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Instructivo de tu sistema de gestión." diff --git a/document_page_work_instruction/i18n/fr.po b/document_page_work_instruction/i18n/fr.po new file mode 100644 index 00000000000..4b68ff87736 --- /dev/null +++ b/document_page_work_instruction/i18n/fr.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# FIRST AUTHOR , 2013 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Instructions de travail" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Instructions de travail de votre système de gestion." diff --git a/document_page_work_instruction/i18n/hr_HR.po b/document_page_work_instruction/i18n/hr_HR.po new file mode 100644 index 00000000000..0c437d9d6a7 --- /dev/null +++ b/document_page_work_instruction/i18n/hr_HR.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 20:06+0000\n" +"PO-Revision-Date: 2017-05-01 20:06+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Radne upute" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Radne upute za vaš sustav upravljanja" diff --git a/document_page_work_instruction/i18n/it.po b/document_page_work_instruction/i18n/it.po new file mode 100644 index 00000000000..c5e9b861247 --- /dev/null +++ b/document_page_work_instruction/i18n/it.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-03-02 19:52+0000\n" +"Last-Translator: Sergio Zanchetta \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.4\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Istruzioni di lavoro" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Istruzioni di lavoro per il sistema di gestione." diff --git a/document_page_work_instruction/i18n/nb.po b/document_page_work_instruction/i18n/nb.po new file mode 100644 index 00000000000..cbef44c15a3 --- /dev/null +++ b/document_page_work_instruction/i18n/nb.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# FIRST AUTHOR , 2014 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Arbeidsinstrukser" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Arbeidsinstrukser for styringssystemet." diff --git a/document_page_work_instruction/i18n/nl_NL.po b/document_page_work_instruction/i18n/nl_NL.po new file mode 100644 index 00000000000..d973761c7f8 --- /dev/null +++ b/document_page_work_instruction/i18n/nl_NL.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 04:23+0000\n" +"PO-Revision-Date: 2017-06-17 04:23+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Werkinstructies" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Werkinstructies van uw managementsysteem" diff --git a/document_page_work_instruction/i18n/nn.po b/document_page_work_instruction/i18n/nn.po new file mode 100644 index 00000000000..5dc11dc1e38 --- /dev/null +++ b/document_page_work_instruction/i18n/nn.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# FIRST AUTHOR , 2014 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/oca/OCA-" +"management-system-9-0/language/nn/)\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Arbeidsinstruksar" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Arbeidsinstruksar for styringssystemet." diff --git a/document_page_work_instruction/i18n/no.po b/document_page_work_instruction/i18n/no.po new file mode 100644 index 00000000000..6e3950f8a4f --- /dev/null +++ b/document_page_work_instruction/i18n/no.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# FIRST AUTHOR , 2014 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/no/)\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Arbeidsinstrukser" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Arbeidsinstrukser til styringssystemet." diff --git a/document_page_work_instruction/i18n/pt_BR.po b/document_page_work_instruction/i18n/pt_BR.po new file mode 100644 index 00000000000..65d4df20e27 --- /dev/null +++ b/document_page_work_instruction/i18n/pt_BR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# FIRST AUTHOR , 2013 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"management-system-9-0/language/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Instruções de trabalho" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Instruções de trabalho do seu Sistema de Gestão." diff --git a/document_page_work_instruction/i18n/sl.po b/document_page_work_instruction/i18n/sl.po new file mode 100644 index 00000000000..354f3638e1c --- /dev/null +++ b/document_page_work_instruction/i18n/sl.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_work_instruction +# +# Translators: +# Matjaž Mozetič , 2015 +msgid "" +msgstr "" +"Project-Id-Version: management-system (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-05 01:40+0000\n" +"PO-Revision-Date: 2016-03-04 19:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-management-" +"system-9-0/language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "Delovni napotki" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "Delovni napotki za sistem upravljanja." diff --git a/document_page_work_instruction/i18n/vi.po b/document_page_work_instruction/i18n/vi.po new file mode 100644 index 00000000000..2ce1857d9bf --- /dev/null +++ b/document_page_work_instruction/i18n/vi.po @@ -0,0 +1,30 @@ +# Vietnamese translation for openerp-mgmtsystem +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openerp-mgmtsystem package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-mgmtsystem\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-27 21:21+0000\n" +"PO-Revision-Date: 2014-03-04 11:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-04-24 06:30+0000\n" +"X-Generator: Launchpad (build 16985)\n" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action +#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions +msgid "Work Instructions" +msgstr "" + +#. module: document_page_work_instruction +#: model:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action +msgid "Work instructions of your management system." +msgstr "" diff --git a/document_page_work_instruction/readme/CONFIGURE.rst b/document_page_work_instruction/readme/CONFIGURE.rst new file mode 100644 index 00000000000..c13a225d527 --- /dev/null +++ b/document_page_work_instruction/readme/CONFIGURE.rst @@ -0,0 +1,5 @@ + +To enter your work instruction template, you need to: + +* go to Management Systems > Configuration > Categories +* select the Work Instructions category and edit the template \ No newline at end of file diff --git a/document_page_work_instruction/readme/CONTRIBUTORS.rst b/document_page_work_instruction/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..6154bffc358 --- /dev/null +++ b/document_page_work_instruction/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Savoir-faire Linux +* Gervais Naoussi +* Eugen Don +* Jose Maria Alzaga diff --git a/document_page_work_instruction/readme/DESCRIPTION.rst b/document_page_work_instruction/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..f88168d2490 --- /dev/null +++ b/document_page_work_instruction/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module provides Work Instructions Template. diff --git a/document_page_work_instruction/static/description/icon.png b/document_page_work_instruction/static/description/icon.png new file mode 100644 index 00000000000..cb1620bf203 Binary files /dev/null and b/document_page_work_instruction/static/description/icon.png differ diff --git a/document_page_work_instruction/static/description/index.html b/document_page_work_instruction/static/description/index.html new file mode 100644 index 00000000000..74f66b9259a --- /dev/null +++ b/document_page_work_instruction/static/description/index.html @@ -0,0 +1,431 @@ + + + + + + +Document Management - Wiki - Work Instructions + + + +
+

Document Management - Wiki - Work Instructions

+ + +

Beta License: AGPL-3 OCA/management-system Translate me on Weblate Try me on Runbot

+

This module provides Work Instructions Template.

+

Table of contents

+ +
+

Configuration

+

To enter your work instruction template, you need to:

+
    +
  • go to Management Systems > Configuration > Categories
  • +
  • select the Work Instructions category and edit the template
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Savoir-faire Linux
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/management-system project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/document_page_work_instruction/views/document_page_work_instructions.xml b/document_page_work_instruction/views/document_page_work_instructions.xml new file mode 100644 index 00000000000..4d88eaf14ea --- /dev/null +++ b/document_page_work_instruction/views/document_page_work_instructions.xml @@ -0,0 +1,33 @@ + + + + + Work Instructions + document.page + form + tree,form + Work instructions of your management system. + + + + + + tree + + + + + + form + + + + + + +