← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 649148] Re: [trunk] stock move analysis - wrong domain

 

Hello Ferdinand,

 it has been fixed in branch lp:~openerp-dev/openobject-addons/ksa-addons2
 Revision NO - 3842
 Revision ID: ksa@xxxxxxxxxxxxx-20101112104123-oncdy8iuqhys4ah2

Thanks.

** Changed in: openobject-addons
       Status: Confirmed => Fix Released

-- 
[trunk] stock move analysis - wrong domain
https://bugs.launchpad.net/bugs/649148
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.

Status in OpenObject Addons Modules: Fix Released

Bug description:
                 domain="[('date_planned','<=', (datetime.date (int(time.strftime('%%Y')), datetime.date.today().month, 1) - datetime.timedelta (days = 1)).strftime('%%Y-%%m-%%d')),('date_planned','>',(datetime.date (int(time.strftime('%%Y')), datetime.date.today().month-1, 1)).strftime('%%Y-%%m-%%d'))]"

should be 
'>=' 

domain="[('date_planned','<=', (datetime.date (int(time.strftime('%%Y')), datetime.date.today().month, 1) - datetime.timedelta (days = 1)).strftime('%%Y-%%m-%%d')),('date_planned','>=',(datetime.date (int(time.strftime('%%Y')), datetime.date.today().month-1, 1)).strftime('%%Y-%%m-%%d'))]"

I really wonder why OpenERP uses unreadable code - see suggestions
https://bugs.launchpad.net/openobject-addons/+bug/626867