~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to crm_cost_issue/__openerp__.py

  • Committer: Gabriela (Vauxoo)
  • Date: 2012-01-02 16:24:49 UTC
  • Revision ID: gabrielaquilarque97@gmail.com-20120102162449-lhxnrtif2ud36du2

[ADD] Added new module invoice_so.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
# -*- encoding: utf-8 -*-
3
 
###########################################################################
4
 
#    Module Writen to OpenERP, Open Source Management Solution
5
 
#    Copyright (C) Vauxoo (<http://vauxoo.com>).
6
 
#    All Rights Reserved
7
 
###############Credits######################################################
8
 
#    Coded by: Luis Escobar                <luis@vauxoo.com>
9
 
#              María Gabriela Quilarque    <gabriela@vauxoo.com>
10
 
#    Planified by: Nhomar Hernandez        <nhomar@vauxoo.com>
11
 
#    Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
12
 
#    Audited by: María Gabriela Quilarque  <gabriela@vauxoo.com>
13
 
#############################################################################
14
 
#    This program is free software: you can redistribute it and/or modify
15
 
#    it under the terms of the GNU Affero General Public License as published by
16
 
#    the Free Software Foundation, either version 3 of the License, or
17
 
#    (at your option) any later version.
18
 
#
19
 
#    This program is distributed in the hope that it will be useful,
20
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 
#    GNU Affero General Public License for more details.
23
 
#
24
 
#    You should have received a copy of the GNU Affero General Public License
25
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
 
################################################################################
27
 
 
28
 
###  
29
 
 
30
 
{
31
 
    "name" : "CRM Cost Issue",
32
 
    "version" : "0.2",
33
 
    "author" : "Vauxoo",
34
 
    "website" : "http://vauxoo.com",
35
 
    "category": 'Generic Modules/Accounting',
36
 
    "description": """
37
 
        Este modulo agrega el costo de una incidencia segun las horas estimadas.
38
 
 
39
 
        Para definir el costo de la Hora, hay que crear un producto de tipo servicio y asociarlo al usuario para que asi pueda generar el costo.
40
 
 
41
 
    """,
42
 
    'init_xml': [],
43
 
    "depends" : ["base", "crm", "project", "project_issue", "product"],
44
 
    'update_xml': [
45
 
        'view/project_task_view.xml'
46
 
    ],
47
 
    'demo_xml': [],
48
 
    'test': [],
49
 
    'installable': True,
50
 
    'active': False,
51
 
    'external_dependencies': {},
52
 
}
53
 
 
54
 
 
55
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: