~camptocamp/account-invoicing/account-analytic-required-vre

« back to all changes in this revision

Viewing changes to invoice_fiscal_position_update/__openerp__.py

  • Committer: Alexis de Lattre
  • Date: 2014-01-02 23:18:16 UTC
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: alexis@via.ecp.fr-20140102231816-3wynetwrniin4ks5
Add module invoice_fiscal_position_update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Invoice Fiscal Position Update module for OpenERP
 
5
#    Copyright (C) 2011-2014 Julius Network Solutions SARL <contact@julius.fr>
 
6
#    Copyright (C) 2014 Akretion (http://www.akretion.com)
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{
 
24
    'name': 'Invoice Fiscal Position Update',
 
25
    'version': '1.0',
 
26
    'category': 'Accounting & Finance',
 
27
    'license': 'AGPL-3',
 
28
    'summary': 'Update the fiscal position of an invoice in one click',
 
29
    'description': """
 
30
Invoice Fiscal Position Update
 
31
==============================
 
32
 
 
33
When the invoice is in draft state, you can change the fiscal position and click on a button *(update)* next to the fiscal position to update the taxes and the accounts on all the invoice lines.
 
34
""",
 
35
    'author': 'Julius Network Solutions',
 
36
    'website': 'http://www.julius.fr/',
 
37
    'depends': ['account'],
 
38
    'data': ['account_invoice_view.xml'],
 
39
    'images': ['images/invoice_fiscal_position_update.jpg'],
 
40
    'installable': True,
 
41
    'active': False,
 
42
}