From 8fab04e6b65e28171df22b93a4ebe4a354a2a456 Mon Sep 17 00:00:00 2001 From: Leonardo Donelli Date: Thu, 29 Dec 2016 12:17:53 +0100 Subject: [PATCH] Add module document_type --- document_type/README.rst | 67 +++++++++++++++++++++++++++++++++++ document_type/__manifest__.py | 15 ++++++++ 2 files changed, 82 insertions(+) create mode 100644 document_type/README.rst create mode 100644 document_type/__manifest__.py diff --git a/document_type/README.rst b/document_type/README.rst new file mode 100644 index 00000000..2225547c --- /dev/null +++ b/document_type/README.rst @@ -0,0 +1,67 @@ +.. 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 + +============== +Document Types +============== + +Define type of documents per model, and choose what document you are uploading +when attaching a file to a record. + +Installation +============ + +* None + +Configuration +============= + +* None + +Usage +===== + +To use this module, you need to: + +* Go to Knowledge / Configuration / Document types and configure your document types + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/repo/118/9.0 + + +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 `here `_. + + +Credits +======= + +Contributors +------------ + +* Leonardo Donelli @ MONK Software (leonardo.donelli@monksoftware.it) + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://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. diff --git a/document_type/__manifest__.py b/document_type/__manifest__.py new file mode 100644 index 00000000..5a72e2bb --- /dev/null +++ b/document_type/__manifest__.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 MONK Software +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Document Types" + "version": "10.0.1.0.0", + "author": "MONK Software, Odoo Community Association (OCA)", + "category": "Knowledge", + "license": "AGPL-3", + "website": "https://odoo-community.org/", + "depends": ["knowledge"], + "data": [], + 'installable': True, + "auto_install": False, +}