~camptocamp/c2c-rd-addons/8.0a

« back to all changes in this revision

Viewing changes to account_financial_report/account_move.py

improved logging, improved import structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#
23
23
##############################################################################
24
24
 
25
 
import netsvc
26
 
import pooler
27
25
from osv import fields, osv
28
 
from tools.translate import _
29
26
 
30
 
import sys
31
27
class account_move(osv.osv):
32
28
    _inherit = "account.move"
33
29