~camptocamp/account-invoicing/7.0-pending-merge

« back to all changes in this revision

Viewing changes to sale_order_partial_invoice/__openerp__.py

[ADD] sale_order_partial_invoice

This module allows invoicing a partial quantity of Sale Order lines

From the module description:

    With a sale order in 'manual' invoicing policy, when the user selects to
    invoice some SO lines, a new wizard is display in which it is possible to
    select how much of the different lines is to be invoiced. The amounts
    invoiced and the amounts delivered are also displayed. When generating an
    invoice for the whole sale order, the partial invoices are taken into
    account and only the amounts not already invoiced are part of the new
    invoice

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Author: Alexandre Fayolle
 
5
#    Copyright 2013 Camptocamp SA
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
 
 
22
{
 
23
    'name': 'Sale Partial Invoice',
 
24
    'version': '1.1',
 
25
    'category': 'Accounting & Finance',
 
26
    'description': """Allow to partialy invoice Sale Order lines
 
27
 
 
28
    With a sale order in 'manual' invoicing policy, when the user selects to
 
29
    invoice some SO lines, a new wizard is display in which it is possible to
 
30
    select how much of the different lines is to be invoiced. The amounts
 
31
    invoiced and the amounts delivered are also displayed. When generating an
 
32
    invoice for the whole sale order, the partial invoices are taken into
 
33
    account and only the amounts not already invoiced are part of the new
 
34
    invoice
 
35
    """,
 
36
    'author': 'Camptocamp',
 
37
    'website': 'http://www.camptocamp.com',
 
38
    'license': 'AGPL-3',
 
39
    'depends': ['sale', 'account', 'sale_stock'],
 
40
    'data': [
 
41
        'sale_view.xml',
 
42
    ],
 
43
    'test': [
 
44
        'test/partial_so_invoice.yml',
 
45
        'test/make_remaining_invoice.yml',
 
46
    ],
 
47
    'demo': [],
 
48
    'installable': True,
 
49
    'active': False,
 
50
}
 
51
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: