← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 674264] Re: [6.0RC1] invoice - automatic proposal of journal causes user errors

 

Hello,
Thank you for your suggestion! However this is unfortunately out of the scope of the current OpenERP release, so we cannot implement it.
Let's close this bug for now, for the sake of clarity in Launchpad, it can always be reopened later when we consider new features for future roadmaps.
Thank you for your understanding!


** Changed in: openobject-addons
   Importance: Low => Wishlist

** Changed in: openobject-addons
       Status: Confirmed => Won't Fix

-- 
[6.0RC1] invoice - automatic proposal of journal causes user errors
https://bugs.launchpad.net/bugs/674264
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: Won't Fix

Bug description:
this is one of these usability bugs .... 

invoice.py _get_journal

in V5 I modified the code to only propose a journal if one journal is defined 
Reason: users accept much to easy the (wrong) automatical proposal
IMHO user must  choose if more than one possibility is available (or define default per partner etc)  

         res = journal_obj.search(cr, uid, [('type', '=', type2journal.get(type_inv, 'sale')), ('refund_journal', '=', refund_journal.get(type_inv, False))])
        if len(res) == 1:
            return res[0]
        else:
            return False

in V6 we have a selection widget which always shows the first found journal
How can this be altered to show a blank entry as first item (for a mandatory field)?





References