Browse Source

[imp] imports and copyright

pull/605/head
Lorenzo Battistini 12 years ago
committed by mreficent
parent
commit
c4655f73e8
  1. 7
      account_financial_report_horizontal/__openerp__.py
  2. 12
      account_financial_report_horizontal/wizard/account_report_balance_sheet.py
  3. 9
      account_financial_report_horizontal/wizard/account_report_common.py
  4. 9
      account_financial_report_horizontal/wizard/account_report_common_account.py
  5. 9
      account_financial_report_horizontal/wizard/account_report_profit_loss.py

7
account_financial_report_horizontal/__openerp__.py

@ -4,7 +4,7 @@
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# This module copyright (C) 2012 Therp BV (<http://therp.nl>). # This module copyright (C) 2012 Therp BV (<http://therp.nl>).
# Copyright (C) 2013 Agile Business Group sagl # Copyright (C) 2013 Agile Business Group sagl
# (<http://www.agilebg.com>)
# (<http://www.agilebg.com>) (<lorenzo.battistini@agilebg.com>)
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -32,16 +32,15 @@ This is a port of the horizontal financial reports 'Balance sheet' and
""", """,
'website': 'http://therp.nl', 'website': 'http://therp.nl',
'images' : [], 'images' : [],
'init_xml': [],
"depends" : ["account"], "depends" : ["account"],
'update_xml': [
'data': [
'menu.xml', 'menu.xml',
'account_report.xml', 'account_report.xml',
'wizard/account_report_common_view.xml', 'wizard/account_report_common_view.xml',
'wizard/account_report_balance_sheet_view.xml', 'wizard/account_report_balance_sheet_view.xml',
'wizard/account_report_profit_loss_view.xml', 'wizard/account_report_profit_loss_view.xml',
], ],
'demo_xml': [],
'demo': [],
'test': [ ], 'test': [ ],
'installable': True, 'installable': True,
'active': False, 'active': False,

12
account_financial_report_horizontal/wizard/account_report_balance_sheet.py

@ -3,6 +3,8 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 Agile Business Group sagl
# (<http://www.agilebg.com>) (<lorenzo.battistini@agilebg.com>)
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -19,10 +21,10 @@
# #
############################################################################## ##############################################################################
from osv import osv, fields
from osv import orm, fields
from tools.translate import _ from tools.translate import _
class account_bs_report(osv.osv_memory):
class account_bs_report(orm.TransientModel):
""" """
This wizard will provide the account balance sheet report by periods, between any two dates. This wizard will provide the account balance sheet report by periods, between any two dates.
""" """
@ -50,7 +52,7 @@ class account_bs_report(osv.osv_memory):
context = {} context = {}
data['form'].update(self.read(cr, uid, ids, ['display_type','reserve_account_id'])[0]) data['form'].update(self.read(cr, uid, ids, ['display_type','reserve_account_id'])[0])
if not data['form']['reserve_account_id']: if not data['form']['reserve_account_id']:
raise osv.except_osv(_('Warning'),_('Please define the Reserve and Profit/Loss account for current user company !'))
raise orm.except_orm(_('Warning'),_('Please define the Reserve and Profit/Loss account for current user company !'))
data = self.pre_print_report(cr, uid, ids, data, context=context) data = self.pre_print_report(cr, uid, ids, data, context=context)
if data['form']['display_type']: if data['form']['display_type']:
return { return {
@ -64,7 +66,3 @@ class account_bs_report(osv.osv_memory):
'report_name': 'account.balancesheet', 'report_name': 'account.balancesheet',
'datas': data, 'datas': data,
} }
account_bs_report()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

9
account_financial_report_horizontal/wizard/account_report_common.py

@ -3,6 +3,8 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 Agile Business Group sagl
# (<http://www.agilebg.com>) (<lorenzo.battistini@agilebg.com>)
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -22,10 +24,10 @@
import time import time
from lxml import etree from lxml import etree
from osv import fields, osv
from osv import fields, orm
from tools.translate import _ from tools.translate import _
class account_common_report(osv.osv_memory):
class account_common_report(orm.TransientModel):
_name = "account_financial_report_horizontal.common.report" _name = "account_financial_report_horizontal.common.report"
_description = "Account Common Report" _description = "Account Common Report"
@ -139,6 +141,3 @@ class account_common_report(osv.osv_memory):
data['form']['used_context'] = used_context data['form']['used_context'] = used_context
return self._print_report(cr, uid, ids, data, context=context) return self._print_report(cr, uid, ids, data, context=context)
account_common_report()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

9
account_financial_report_horizontal/wizard/account_report_common_account.py

@ -3,6 +3,8 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 Agile Business Group sagl
# (<http://www.agilebg.com>) (<lorenzo.battistini@agilebg.com>)
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -19,9 +21,9 @@
# #
############################################################################## ##############################################################################
from osv import osv, fields
from osv import orm, fields
class account_common_account_report(osv.osv_memory):
class account_common_account_report(orm.TransientModel):
_name = 'account_financial_report_horizontal.common.account.report' _name = 'account_financial_report_horizontal.common.account.report'
_description = 'Account Common Account Report' _description = 'Account Common Account Report'
_inherit = "account_financial_report_horizontal.common.report" _inherit = "account_financial_report_horizontal.common.report"
@ -41,6 +43,3 @@ class account_common_account_report(osv.osv_memory):
data['form'].update(self.read(cr, uid, ids, ['display_account'], context=context)[0]) data['form'].update(self.read(cr, uid, ids, ['display_account'], context=context)[0])
return data return data
account_common_account_report()
#vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

9
account_financial_report_horizontal/wizard/account_report_profit_loss.py

@ -3,6 +3,8 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 Agile Business Group sagl
# (<http://www.agilebg.com>) (<lorenzo.battistini@agilebg.com>)
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -19,9 +21,9 @@
# #
############################################################################## ##############################################################################
from osv import osv, fields
from osv import orm, fields
class account_pl_report(osv.osv_memory):
class account_pl_report(orm.TransientModel):
""" """
This wizard will provide the account profit and loss report by periods, between any two dates. This wizard will provide the account profit and loss report by periods, between any two dates.
""" """
@ -56,6 +58,3 @@ class account_pl_report(osv.osv_memory):
'datas': data, 'datas': data,
} }
account_pl_report()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
Loading…
Cancel
Save