Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[9.0] document_page_procedure #100

Merged
merged 1 commit into from
Mar 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions document_page_procedure/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

Procedures Template
===================

This module provides a Procedure Template.

Installation
============

No installation steps required.

Configuration
=============

To configure your template of procedures, you need to:

* go to Management Systems > Configuration > Categories
* select the Procedure category
* customize the template

Usage
=====

To enter your procedures, you need to:

* go to Management Systems > Documentation > Procedures
* click on create and select the 'Procedure' category
* add your content using the provided template

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/118/9.0

Known issues / Roadmap
======================

* Report any issue or ideas to https://github.com/OCA/management-system/issues


Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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
`here <https://github.com/OCA/management-system/issues/new?body=module:%20document_page_procedure%0Aversion:%209.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.


Credits
=======

Contributors
------------

* Savoir-faire Linux <support@savoirfairelinux.com>
* Gervais Naoussi <gervaisnaoussi@gmail.com>

Maintainer
----------

.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://odoo-community.org

This module is maintained by the OCA.

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.

To contribute to this module, please visit http://odoo-community.org.

Changelog
---------

v9.0.1.0.0

* Module updated to comply with OCA guidelines
2 changes: 1 addition & 1 deletion document_page_procedure/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# -*- encoding: utf-8 -*-
# -*- coding: utf-8 -*-
16 changes: 7 additions & 9 deletions document_page_procedure/__openerp__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
Expand All @@ -20,22 +20,20 @@
##############################################################################
{
"name": "Document Management - Wiki - Procedures",
"version": "8.0.1.0.0",
"version": "9.0.1.0.0",
"author": "Savoir-faire Linux,Odoo Community Association (OCA)",
"website": "http://www.savoirfairelinux.com",
"license": "AGPL-3",
"category": "Generic Modules/Others",
"description": """Procedure Template
""",
"depends": [
'document_page_work_instructions'
'document_page_work_instruction'
],
"data": [
'data/document_page.xml',
'views/document_page.xml',
'data/document_page_procedure.xml',
'views/document_page_procedure.xml',
],
"demo": [
'demo/document_page.xml',
'demo/document_page_procedure.xml',
],
'installable': False,
'installable': True,
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<odoo>


<record id="document_page_group_procedure" model="document.page">
<field name="name">Procedure</field>
Expand All @@ -20,5 +20,5 @@
</field>
</record>

</data>
</openerp>

</odoo>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<odoo>


<record id="document_page_procedure" model="document.page">
<field name="name">Procedure</field>
Expand All @@ -21,5 +21,5 @@
</field>
</record>

</data>
</openerp>

</odoo>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<odoo>


<record model="ir.actions.act_window" id="action_procedures">
<field name="name">Procedures</field>
Expand All @@ -24,13 +24,13 @@
<field name="act_window_id" ref="action_procedures"/>
</record>

<menuitem id="menu_mgmtsystem_manuals_procedures"
<menuitem id="menu_mgmtsystem_manuals_procedures"
name="Procedures"
action="action_procedures"
parent="mgmtsystem.menu_mgmtsystem_manuals"
sequence="10"
parent="mgmtsystem.menu_mgmtsystem_manuals"
sequence="10"
groups="base.group_user"
/>

</data>
</openerp>

</odoo>