You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

294 lines
14 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. # -*- encoding: utf-8 -*-
  2. ###########################################################################
  3. # Module Writen to OpenERP, Open Source Management Solution
  4. # Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
  5. # All Rights Reserved
  6. # Credits######################################################
  7. # Coded by: Humberto Arocha humberto@openerp.com.ve
  8. # Angelica Barrios angelicaisabelb@gmail.com
  9. # Jordi Esteve <jesteve@zikzakmedia.com>
  10. # Javier Duran <javieredm@gmail.com>
  11. # Planified by: Humberto Arocha
  12. # Finance by: LUBCAN COL S.A.S http://www.lubcancol.com
  13. # Audited by: Humberto Arocha humberto@openerp.com.ve
  14. #############################################################################
  15. # This program is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU General Public License as published by
  17. # the Free Software Foundation, either version 3 of the License, or
  18. # (at your option) any later version.
  19. #
  20. # This program is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. # GNU General Public License for more details.
  24. #
  25. # You should have received a copy of the GNU General Public License
  26. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  27. ##############################################################################
  28. from osv import osv, fields
  29. import pooler
  30. import time
  31. from tools.translate import _
  32. class wizard_report(osv.osv_memory):
  33. _name = "wizard.report"
  34. _columns = {
  35. 'afr_id': fields.many2one('afr', 'Custom Report', help='If you have already set a Custom Report, Select it Here.'),
  36. 'company_id': fields.many2one('res.company', 'Company', required=True),
  37. 'currency_id': fields.many2one('res.currency', 'Currency', help="Currency at which this report will be expressed. If not selected will be used the one set in the company"),
  38. 'inf_type': fields.selection([('BS', 'Balance Sheet'), ('IS', 'Income Statement')], 'Type', required=True),
  39. 'columns': fields.selection([('one', 'End. Balance'), ('two', 'Debit | Credit'), ('four', 'Initial | Debit | Credit | YTD'), ('five', 'Initial | Debit | Credit | Period | YTD'), ('qtr', "4 QTR's | YTD"), ('thirteen', '12 Months | YTD')], 'Columns', required=True),
  40. 'display_account': fields.selection([('all', 'All Accounts'), ('bal', 'With Balance'), ('mov', 'With movements'), ('bal_mov', 'With Balance / Movements')], 'Display accounts'),
  41. 'display_account_level': fields.integer('Up to level', help='Display accounts up to this level (0 to show all)'),
  42. 'account_list': fields.many2many('account.account', 'rel_wizard_account', 'account_list', 'account_id', 'Root accounts', required=True),
  43. 'fiscalyear': fields.many2one('account.fiscalyear', 'Fiscal year', help='Fiscal Year for this report', required=True),
  44. 'periods': fields.many2many('account.period', 'rel_wizard_period', 'wizard_id', 'period_id', 'Periods', help='All periods in the fiscal year if empty'),
  45. 'analytic_ledger': fields.boolean('Analytic Ledger', help="Allows to Generate an Analytic Ledger for accounts with moves. Available when Balance Sheet and 'Initial | Debit | Credit | YTD' are selected"),
  46. 'journal_ledger': fields.boolean('Journal Ledger', help="Allows to Generate an Journal Ledger for accounts with moves. Available when Balance Sheet and 'Initial | Debit | Credit | YTD' are selected"),
  47. 'partner_balance': fields.boolean('Partner Balance', help="Allows to "
  48. "Generate a Partner Balance for accounts with moves. Available when "
  49. "Balance Sheet and 'Initial | Debit | Credit | YTD' are selected"),
  50. 'tot_check': fields.boolean('Summarize?', help='Checking will add a new line at the end of the Report which will Summarize Columns in Report'),
  51. 'lab_str': fields.char('Description', help='Description for the Summary', size=128),
  52. 'target_move': fields.selection([('posted', 'All Posted Entries'),
  53. ('all', 'All Entries'),
  54. ], 'Entries to Include', required=True,
  55. help='Print All Accounting Entries or just Posted Accounting Entries'),
  56. #~ Deprecated fields
  57. 'filter': fields.selection([('bydate', 'By Date'), ('byperiod', 'By Period'), ('all', 'By Date and Period'), ('none', 'No Filter')], 'Date/Period Filter'),
  58. 'date_to': fields.date('End date'),
  59. 'date_from': fields.date('Start date'),
  60. }
  61. _defaults = {
  62. 'date_from': lambda *a: time.strftime('%Y-%m-%d'),
  63. 'date_to': lambda *a: time.strftime('%Y-%m-%d'),
  64. 'filter': lambda *a: 'byperiod',
  65. 'display_account_level': lambda *a: 0,
  66. 'inf_type': lambda *a: 'BS',
  67. 'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.invoice', context=c),
  68. 'fiscalyear': lambda self, cr, uid, c: self.pool.get('account.fiscalyear').find(cr, uid),
  69. 'display_account': lambda *a: 'bal_mov',
  70. 'columns': lambda *a: 'five',
  71. 'target_move': 'posted',
  72. }
  73. def onchange_inf_type(self, cr, uid, ids, inf_type, context=None):
  74. if context is None:
  75. context = {}
  76. res = {'value': {}}
  77. if inf_type != 'BS':
  78. res['value'].update({'analytic_ledger': False})
  79. return res
  80. def onchange_columns(self, cr, uid, ids, columns, fiscalyear, periods, context=None):
  81. if context is None:
  82. context = {}
  83. res = {'value': {}}
  84. p_obj = self.pool.get("account.period")
  85. all_periods = p_obj.search(cr, uid, [('fiscalyear_id', '=', fiscalyear), (
  86. 'special', '=', False)], context=context)
  87. s = set(periods[0][2])
  88. t = set(all_periods)
  89. go = periods[0][2] and s.issubset(t) or False
  90. if columns != 'four':
  91. res['value'].update({'analytic_ledger': False})
  92. if columns in ('qtr', 'thirteen'):
  93. res['value'].update({'periods': all_periods})
  94. else:
  95. if go:
  96. res['value'].update({'periods': periods})
  97. else:
  98. res['value'].update({'periods': []})
  99. return res
  100. def onchange_analytic_ledger(self, cr, uid, ids, company_id, analytic_ledger, context=None):
  101. if context is None:
  102. context = {}
  103. context['company_id'] = company_id
  104. res = {'value': {}}
  105. cur_id = self.pool.get('res.company').browse(
  106. cr, uid, company_id, context=context).currency_id.id
  107. res['value'].update({'currency_id': cur_id})
  108. return res
  109. def onchange_company_id(self, cr, uid, ids, company_id, context=None):
  110. if context is None:
  111. context = {}
  112. context['company_id'] = company_id
  113. res = {'value': {}}
  114. if not company_id:
  115. return res
  116. cur_id = self.pool.get('res.company').browse(
  117. cr, uid, company_id, context=context).currency_id.id
  118. fy_id = self.pool.get('account.fiscalyear').find(
  119. cr, uid, context=context)
  120. res['value'].update({'fiscalyear': fy_id})
  121. res['value'].update({'currency_id': cur_id})
  122. res['value'].update({'account_list': []})
  123. res['value'].update({'periods': []})
  124. res['value'].update({'afr_id': None})
  125. return res
  126. def onchange_afr_id(self, cr, uid, ids, afr_id, context=None):
  127. if context is None:
  128. context = {}
  129. res = {'value': {}}
  130. if not afr_id:
  131. return res
  132. afr_brw = self.pool.get('afr').browse(cr, uid, afr_id, context=context)
  133. res['value'].update({
  134. 'currency_id': afr_brw.currency_id and afr_brw.currency_id.id or afr_brw.company_id.currency_id.id})
  135. res['value'].update({'inf_type': afr_brw.inf_type or 'BS'})
  136. res['value'].update({'columns': afr_brw.columns or 'five'})
  137. res['value'].update({
  138. 'display_account': afr_brw.display_account or 'bal_mov'})
  139. res['value'].update({
  140. 'display_account_level': afr_brw.display_account_level or 0})
  141. res['value'].update({
  142. 'fiscalyear': afr_brw.fiscalyear_id and afr_brw.fiscalyear_id.id})
  143. res['value'].update({'account_list': [
  144. acc.id for acc in afr_brw.account_ids]})
  145. res['value'].update({'periods': [p.id for p in afr_brw.period_ids]})
  146. res['value'].update({
  147. 'analytic_ledger': afr_brw.analytic_ledger or False})
  148. res['value'].update({'tot_check': afr_brw.tot_check or False})
  149. res['value'].update({'lab_str': afr_brw.lab_str or _(
  150. 'Write a Description for your Summary Total')})
  151. return res
  152. def _get_defaults(self, cr, uid, data, context=None):
  153. if context is None:
  154. context = {}
  155. user = pooler.get_pool(cr.dbname).get(
  156. 'res.users').browse(cr, uid, uid, context=context)
  157. if user.company_id:
  158. company_id = user.company_id.id
  159. else:
  160. company_id = pooler.get_pool(cr.dbname).get(
  161. 'res.company').search(cr, uid, [('parent_id', '=', False)])[0]
  162. data['form']['company_id'] = company_id
  163. fiscalyear_obj = pooler.get_pool(cr.dbname).get('account.fiscalyear')
  164. data['form']['fiscalyear'] = fiscalyear_obj.find(cr, uid)
  165. data['form']['context'] = context
  166. return data['form']
  167. def _check_state(self, cr, uid, data, context=None):
  168. if context is None:
  169. context = {}
  170. if data['form']['filter'] == 'bydate':
  171. self._check_date(cr, uid, data, context)
  172. return data['form']
  173. def _check_date(self, cr, uid, data, context=None):
  174. if context is None:
  175. context = {}
  176. if data['form']['date_from'] > data['form']['date_to']:
  177. raise osv.except_osv(_('Error !'), (
  178. 'La fecha final debe ser mayor a la inicial'))
  179. sql = """SELECT f.id, f.date_start, f.date_stop
  180. FROM account_fiscalyear f
  181. WHERE '%s' = f.id """ % (data['form']['fiscalyear'])
  182. cr.execute(sql)
  183. res = cr.dictfetchall()
  184. if res:
  185. if (data['form']['date_to'] > res[0]['date_stop'] or data['form']['date_from'] < res[0]['date_start']):
  186. raise osv.except_osv(_('UserError'), 'Las fechas deben estar entre %s y %s' % (
  187. res[0]['date_start'], res[0]['date_stop']))
  188. else:
  189. return 'report'
  190. else:
  191. raise osv.except_osv(_('UserError'), 'No existe periodo fiscal')
  192. def period_span(self, cr, uid, ids, fy_id, context=None):
  193. if context is None:
  194. context = {}
  195. ap_obj = self.pool.get('account.period')
  196. fy_id = fy_id and type(fy_id) in (list, tuple) and fy_id[0] or fy_id
  197. if not ids:
  198. #~ No hay periodos
  199. return ap_obj.search(cr, uid, [('fiscalyear_id', '=', fy_id), ('special', '=', False)], order='date_start asc')
  200. ap_brws = ap_obj.browse(cr, uid, ids, context=context)
  201. date_start = min([period.date_start for period in ap_brws])
  202. date_stop = max([period.date_stop for period in ap_brws])
  203. return ap_obj.search(cr, uid, [('fiscalyear_id', '=', fy_id), ('special', '=', False), ('date_start', '>=', date_start), ('date_stop', '<=', date_stop)], order='date_start asc')
  204. def print_report(self, cr, uid, ids, data, context=None):
  205. if context is None:
  206. context = {}
  207. data = {}
  208. data['ids'] = context.get('active_ids', [])
  209. data['model'] = context.get('active_model', 'ir.ui.menu')
  210. data['form'] = self.read(cr, uid, ids[0])
  211. if data['form']['filter'] == 'byperiod':
  212. del data['form']['date_from']
  213. del data['form']['date_to']
  214. data['form']['periods'] = self.period_span(cr, uid, data[
  215. 'form']['periods'], data['form']['fiscalyear'])
  216. elif data['form']['filter'] == 'bydate':
  217. self._check_date(cr, uid, data)
  218. del data['form']['periods']
  219. elif data['form']['filter'] == 'none':
  220. del data['form']['date_from']
  221. del data['form']['date_to']
  222. del data['form']['periods']
  223. else:
  224. self._check_date(cr, uid, data)
  225. lis2 = str(data['form']['periods']).replace(
  226. "[", "(").replace("]", ")")
  227. sqlmm = """select min(p.date_start) as inicio, max(p.date_stop) as fin
  228. from account_period p
  229. where p.id in %s""" % lis2
  230. cr.execute(sqlmm)
  231. minmax = cr.dictfetchall()
  232. if minmax:
  233. if (data['form']['date_to'] < minmax[0]['inicio']) or (data['form']['date_from'] > minmax[0]['fin']):
  234. raise osv.except_osv(_('Error !'), _(
  235. 'La interseccion entre el periodo y fecha es vacio'))
  236. if data['form']['columns'] == 'one':
  237. name = 'afr.1cols'
  238. if data['form']['columns'] == 'two':
  239. name = 'afr.2cols'
  240. if data['form']['columns'] == 'four':
  241. if data['form']['analytic_ledger'] and data['form']['inf_type'] == 'BS':
  242. name = 'afr.analytic.ledger'
  243. elif data['form']['journal_ledger'] and data['form']['inf_type'] == 'BS':
  244. name = 'afr.journal.ledger'
  245. elif data['form']['partner_balance'] and data['form']['inf_type'] == 'BS':
  246. name = 'afr.partner.balance'
  247. else:
  248. name = 'afr.4cols'
  249. if data['form']['columns'] == 'five':
  250. name = 'afr.5cols'
  251. if data['form']['columns'] == 'qtr':
  252. name = 'afr.qtrcols'
  253. if data['form']['columns'] == 'thirteen':
  254. name = 'afr.13cols'
  255. return {'type': 'ir.actions.report.xml', 'report_name': name, 'datas': data}
  256. wizard_report()