[add] wiki_quality_manual: installs a basic quality manual template in the wiki

bzr revid: xmo@tinyerp.com-20100108161734-5cdus1nlh30q4j1u
This commit is contained in:
Xavier Morel 2010-01-08 17:17:34 +01:00
parent dbdd82d586
commit f45d355736
3 changed files with 160 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Document Management - Wiki - Quality Manual',
'version': '1.0',
'category': 'Generic Modules/Others',
'description': """Quality Manual Template
""",
'author': 'Tiny',
'website': 'http://openerp.com',
'depends': ['wiki'],
'init_xml': [],
'update_xml': ['wiki_quality_manual.xml'],
'demo_xml': [],
'installable': True,
'active': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<record id="wiki_quality_manual" model="wiki.wiki">
<field name="name">Quality Manual</field>
<field name="tags">quality, faq, manual</field>
<field name="minor_edit">0</field>
<field name="toc">1</field>
<field name="review">1</field>
<field name="section">2</field>
<field name="summary">Base template</field>
<field name="text_area">
=General=
==Index and revision status==
==Purpose==
=Background=
==Activities==
==History==
=Definitions and Abbreviations=
==Definitions and terminology==
==Abbreviations==
=Management Requirements=
==Organization==
==Management System==
==Document Control==
==Review of Contracts==
==Subcontracting==
==Purchasing==
==Service to the customer==
==Complaints==
==Control of non-conforming work==
==Improvement==
==Corrective actions==
==Preventive actions==
==Control of quality records==
==Internal audits==
==Management Reviews==
=Technical Requirements=
==General==
==Personnel==
==Accomodation==
==Test methods and validation==
==Equipment==
==Measurement traceability==
==Sampling==
==Test items==
==Quality control==
==Reports / calibration certificates==
=References=
=Acknowledgements=
</field>
</record>
<record id="wiki_group_quality_manual" model="wiki.groups">
<field name="name">Quality Manual</field>
<field name="section">2</field>
<field name="home" ref="wiki_quality_manual"/>
</record>
</data>
<data>
<record id="wiki_quality_manual" model="wiki.wiki">
<field name="group_id" ref="wiki_group_quality_manual"/>
</record>
</data>
</openerp>