~vauxoo/addons-vauxoo/7.0-account_voucher_category-dev-hbto

« back to all changes in this revision

Viewing changes to account_periods_initial/account.py

  • Committer: Jose Morales
  • Date: 2013-05-16 15:44:16 UTC
  • mfrom: (544.1.9 addons-vauxoo)
  • Revision ID: jose@vauxoo.com-20130516154416-eago8zbxslb2scq8
 
[MERGE] Added new features in the user_story module to make easy the user story management, these improvements are:
         [IMP] Added a priority field in the user story to define the priority level for each user story for ease of handling and delivery
         [IMP] Added filter to show user story for priority level
         [IMP] Added automatically project in the task when you create a new task from user story view, this project is the seted in the user story
         [IMP] Added filter to show user story for state, to ease the user story management
         [IMP] Added sum in the planned hours field to control, the hours used for each user story, for we can see the progress in any project easily
         [IMP] Added translations in the user_story module
         [IMP] Added branch to clone field in the project task module
         
       [MERGE] Merge from trunk to apply pep8 and V7 migrate in all modules
       

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from openerp.tools.translate import _
26
26
 
27
27
 
28
 
 
29
28
class account_period(osv.Model):
30
29
    _inherit = "account.period"
31
30
 
34
33
        period_date_start = period_to.date_start
35
34
        company_id = period_to.company_id.id
36
35
        fiscalyear_id = period_to.fiscalyear_id.id
37
 
        return self.search(cr, uid, [('date_stop', '<=', period_date_start), ('company_id', '=', company_id), ('id', '<>', period_to_id), ('fiscalyear_id', '=', fiscalyear_id)])
 
36
        return self.search(cr, uid, [('date_stop', '<=', period_date_start),
 
37
                          ('company_id', '=', company_id), (
 
38
                              'id', '<>', period_to_id),
 
39
            ('fiscalyear_id', '=', fiscalyear_id)])
38
40
        # Falta validar cuando el period_to_id es special, ya que puede tomar
39
41
        # enero cuando no es necesario.
40