[ADD] : wiki_sale_faq: Add new Module

bzr revid: ksa@tinyerp.co.in-20100524050231-gjxr5qnp3eio2177
This commit is contained in:
ksa (Open ERP) 2010-05-24 10:32:31 +05:30
parent 5fd7901bf3
commit 7104b7ee9d
3 changed files with 159 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 -Sale - FAQ',
'version': '1.0',
'category': 'Generic Modules/Others',
'description': """This module provides a wiki FAQ Template
""",
'author': 'Tiny',
'website': 'http://openerp.com',
'depends': ['wiki','document','crm'],
'init_xml': [],
'update_xml': ['wiki_sale_faq.xml'],
'demo_xml': [],
'installable': True,
'active': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data noupdate="1">
<menuitem name="Sales Management" icon="terp-stock"
id="base.menu_document" sequence="4" />
<record id="wiki_groups_faq" model="wiki.groups">
<field name="name">Internal FAQ</field>
<field name="method">list</field>
<field eval="2" name="section"/>
<field name="template">== Question ==
== Answer ==
== External Links ==
</field>
</record>
<record id="wiki_wiki_dms" model="wiki.wiki">
<field name="name">Document Management System ?</field>
<field name="tags">dms, document</field>
<field name="group_id" ref="wiki_groups_faq"/>
<field name="minor_edit">0</field>
<field name="toc">1</field>
<field name="section">1</field>
<field name="summary">Initial Page</field>
<field name="text_area">== Question ==
What's the Document Management System ?
== Answer ==
The document management system allows you to store, classify, and search your
enterprise's documents. This module (called '''document''') provides an FTP access to all your ERP's
ressources. For a dynamic and efficient classification, the folders structure
is provided by others objects. It is very usefull to track documents related
to projects, products, sales, contracts, etc.
Keypoints:
* FTP Access
* Indexation of PDF, DOC, ODT.
* Virtual files and folders
Integration Benefits:
* Stores automatically ERP reports
* Automatic classification of ressources
* Shared access rights for DMS and ERP
* Store emails with outlook Plugin
== External Links ==
* The Open ERP Website : [http://openerp.com]
* The DMS Documentation : [http://openerp.com]
</field>
</record>
<record id="wiki_wiki_crm" model="wiki.wiki">
<field name="name">Customer Relationship Management ?</field>
<field name="tags">crm</field>
<field name="group_id" ref="wiki_groups_faq"/>
<field name="minor_edit">0</field>
<field name="toc">1</field>
<field name="section">1</field>
<field name="summary">Initial Page</field>
<field name="text_area">== Question ==
What's the Customer Relationship Management ?
== Answer ==
Customer Relationship Management system enables a group of people to intelligently
and efficiently manage leads, opportunities, meeting, phonecall etc.
It manages key tasks such as communication, identification, prioritization,
assignment, resolution and notification.
Keypoints:
* Automatic incoming and outgoing email processing using the mail gateway
* A generic and fully customizable system
* A configuration wizard to help you setup it as per your requirements.
Integration Benefits:
* Integrated with the enterprise calendars,
* Integrated with sales, purchases and after-sales services,
* Get your enterprise processes running through workflows.
== External Links ==
* The Open ERP Website : [http://openerp.com]
* The DMS Documentation : [http://openerp.com]
</field>
</record>
</data>
</openerp>