Public bug reported:

Hi
I find a bug in the stock module.
Indeed if you check in the stock_view.xml, you will see that the first filter 
doesn't have a name and the name should be "available"

        <record id="view_picking_internal_search" model="ir.ui.view">
            <field name="name">stock.picking.internal.search</field>
            <field name="model">stock.picking</field>
            <field name="type">search</field>
            <field name="arch" type="xml">
                <search string="Internal Picking List">
                    <group col="8" colspan="4">
 HERE=>         <filter icon="terp-check" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>
                        <filter icon="terp-camera_test" name="confirmed" 
string="Confirmed" domain="[('state','=','confirmed')]" help="Confirmed 
Internal Moves" />
                        <separator orientation="vertical"/>
                        <field name="name"/>


latter in the code in the action_search, we try to set as default the filter 
available

HERE=>   <field name="context">{'contact_display': 
'partner_address',"search_default_available":1}</field>
            <field name="search_view_id" ref="view_picking_internal_search"/>
            <field name="help">Internal Moves display all inventory operations 
you have to perform in your warehouse. All operations can be categorized into 
stock journals, so that each worker has his own list of operations to perform 
in his own journal. Most operations are prepared automatically by OpenERP 
according to your preconfigured logistics rules, but you can also record manual 
stock operations.</field>
        </record>

But as the filter doen't have a name it's not working.
Just replace
-         <filter icon="terp-check" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>
By
+         <filter icon="terp-check" name="available" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>


And you're done.

Have a nice day ;)

PS : I send a mail to warranty team my customer impacted have an OPW

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to OpenERP Project Group.
https://bugs.launchpad.net/bugs/896604

Title:
  [6.0 STOCK] internal move, search_default_available doesn't work

Status in OpenERP Addons (modules):
  New

Bug description:
  Hi
  I find a bug in the stock module.
  Indeed if you check in the stock_view.xml, you will see that the first filter 
doesn't have a name and the name should be "available"

          <record id="view_picking_internal_search" model="ir.ui.view">
              <field name="name">stock.picking.internal.search</field>
              <field name="model">stock.picking</field>
              <field name="type">search</field>
              <field name="arch" type="xml">
                  <search string="Internal Picking List">
                      <group col="8" colspan="4">
   HERE=>         <filter icon="terp-check" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>
                          <filter icon="terp-camera_test" name="confirmed" 
string="Confirmed" domain="[('state','=','confirmed')]" help="Confirmed 
Internal Moves" />
                          <separator orientation="vertical"/>
                          <field name="name"/>

  
  latter in the code in the action_search, we try to set as default the filter 
available

  HERE=>   <field name="context">{'contact_display': 
'partner_address',"search_default_available":1}</field>
              <field name="search_view_id" ref="view_picking_internal_search"/>
              <field name="help">Internal Moves display all inventory 
operations you have to perform in your warehouse. All operations can be 
categorized into stock journals, so that each worker has his own list of 
operations to perform in his own journal. Most operations are prepared 
automatically by OpenERP according to your preconfigured logistics rules, but 
you can also record manual stock operations.</field>
          </record>

  But as the filter doen't have a name it's not working.
  Just replace
  -         <filter icon="terp-check" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>
  By
  +         <filter icon="terp-check" name="available" string="Available" 
domain="[('state','=','assigned')]" help="Assigned Internal Moves"/>

  
  And you're done.

  Have a nice day ;)

  PS : I send a mail to warranty team my customer impacted have an OPW

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/896604/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~c2c-oerpscenario
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~c2c-oerpscenario
More help   : https://help.launchpad.net/ListHelp

Reply via email to