0.4.1
by Olivier DOSSMANN
UF-183: [FIX] Some bugs and do code simplification |
1 |
#!/usr/bin/env python
|
2 |
#-*- encoding:utf-8 -*-
|
|
3 |
##############################################################################
|
|
4 |
#
|
|
1994.2.101
by Olivier DOSSMANN
REF-38 [IMP] Clean code from register_accounting module in order to move account.invoice model from it to account_override module |
5 |
# OpenERP, Open Source Management Solution
|
0.4.56
by Olivier DOSSMANN
UF-148: [MERGE] from unifield-addons |
6 |
# Copyright (C) 2011 TeMPO Consulting, MSF. All Rights Reserved
|
0.4.1
by Olivier DOSSMANN
UF-183: [FIX] Some bugs and do code simplification |
7 |
# Developer: Olivier DOSSMANN
|
8 |
#
|
|
9 |
# This program is free software: you can redistribute it and/or modify
|
|
10 |
# it under the terms of the GNU Affero General Public License as
|
|
11 |
# published by the Free Software Foundation, either version 3 of the
|
|
12 |
# License, or (at your option) any later version.
|
|
13 |
#
|
|
14 |
# This program is distributed in the hope that it will be useful,
|
|
15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 |
# GNU Affero General Public License for more details.
|
|
18 |
#
|
|
19 |
# You should have received a copy of the GNU Affero General Public License
|
|
20 |
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21 |
#
|
|
22 |
##############################################################################
|
|
23 |
||
24 |
import wizard |
|
0.4.60
by Olivier DOSSMANN
UF-178: [ADD] Some changements with Third Parties from: |
25 |
import partner |
0.4.32
by Olivier DOSSMANN
UF-193: [ADD] Third parties repercution on account_move_line |
26 |
import account_move_line |
0.4.1
by Olivier DOSSMANN
UF-183: [FIX] Some bugs and do code simplification |
27 |
import account_bank_statement |
28 |
import account_cash_statement |
|
0.4.27
by Olivier DOSSMANN
UF-193: [ADD] Views for Cheque Registers |
29 |
import account |
30 |
import account_cheque_register |
|
2.12.11
by Olivier DOSSMANN
UF-153: [ADD] Direct Invoice code mixture |
31 |
import invoice |
530.2.5
by Olivier DOSSMANN
UF-689 [ADD] Display down payments lines to purchase order and check amounts when register line validation |
32 |
import purchase |
631.3.2
by Matthieu Dietrich
UF-828: [IMP] first reports: |
33 |
import report |
1595.16.1
by Olivier DOSSMANN
UF-1944 [FIX] Change partner_txt field on analytic line from field.related to field.function |
34 |
import account_analytic_line |
0.4.1
by Olivier DOSSMANN
UF-183: [FIX] Some bugs and do code simplification |
35 |
|
1874.2.3
by Sean Carroll
UTP-917: [WIP] register accounting enhancements |
36 |
|
37 |
||
0.4.1
by Olivier DOSSMANN
UF-183: [FIX] Some bugs and do code simplification |
38 |
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|