~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to nan_account_invoice_sequence/__openerp__.py

  • Committer: Albert Cervera i Areny
  • Date: 2011-03-06 23:04:56 UTC
  • Revision ID: albert@nan-tic.com-20110306230456-3yhbfmhpi4ueazfo
[ADD] nan_account_invoice_sequence: New that changes the way invoice sequences are used, resembling v5 behaviour where invoice number had nothing to do with account move number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: latin-1 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2011 NaN Projectes de Programari Lliure, S.L. All Rights Reserved.
 
5
#                    http://www.NaN-tic.com
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 2
 
17
# of the License, or (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 General Public License for more details.
 
23
#
 
24
# You should have received a copy of the GNU General Public License
 
25
# along with this program; if not, write to the Free Software
 
26
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
#
 
28
##############################################################################
 
29
 
 
30
{
 
31
    "name" : "NaN Account Invoice Sequence",
 
32
    "version" : "1.0",
 
33
    "author" : "NaN",
 
34
    "category" : "Accounting",
 
35
    "website": "http://www.NaN-tic.com",
 
36
    "description": """\
 
37
This module separates invoice and account move sequences but instead of creating a new internal sequence in moves which would require changing lots of reports, it simply converts invoice's number related field into a normal char one.
 
38
""",
 
39
    "depends" : [
 
40
        'account',
 
41
        ],
 
42
    "init_xml" : [],
 
43
    "update_xml" : [
 
44
        'account_view.xml',
 
45
    ],
 
46
    "demo_xml" : [],
 
47
    "active": False,
 
48
    "installable": True,
 
49
}
 
50
 
 
51
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: