Merge lp:~openerp-dev/openobject-addons/7.0-opw-601655-fka into lp:openobject-addons/7.0

Proposed by Foram Katharotiya (OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/7.0-opw-601655-fka
Merge into: lp:openobject-addons/7.0
Diff against target: 25 lines (+3/-2)
1 file modified
stock/stock_view.xml (+3/-2)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/7.0-opw-601655-fka
Reviewer Review Type Date Requested Status
Vinay Rana (OpenERP) Pending
Naresh(OpenERP) Pending
Review via email: mp+199657@code.launchpad.net

Description of the change

Hello,

I have fixed the issue of 'cancel availability' button which is missing from stock move form view in version 7.0.

Regards,
FKA

To post a comment you must log in.
9682. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9683. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9684. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9685. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9686. By Foram Katharotiya (OpenERP)

[IMP] improve priority of stock.move form view

Unmerged revisions

9686. By Foram Katharotiya (OpenERP)

[IMP] improve priority of stock.move form view

9685. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9684. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9683. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9682. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9681. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9680. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9679. By Foram Katharotiya (OpenERP)

[IMP] add cancel button in stock move for cancelling stock moves from stock picking

9678. By Foram Katharotiya (OpenERP)

[MERGE] with 7.0

9677. By Foram Katharotiya (OpenERP)

[IMP] visible 'cancel availability' button in stock.picking form view

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'stock/stock_view.xml'
--- stock/stock_view.xml 2013-12-10 16:05:05 +0000
+++ stock/stock_view.xml 2014-01-16 11:11:19 +0000
@@ -1204,7 +1204,7 @@
1204 <record id="view_move_form" model="ir.ui.view">1204 <record id="view_move_form" model="ir.ui.view">
1205 <field name="name">stock.move.form</field>1205 <field name="name">stock.move.form</field>
1206 <field name="model">stock.move</field>1206 <field name="model">stock.move</field>
1207 <field eval="1" name="priority"/>1207 <field eval="2" name="priority"/>
1208 <field name="arch" type="xml">1208 <field name="arch" type="xml">
1209 <form string="Stock Moves" version="7.0">1209 <form string="Stock Moves" version="7.0">
1210 <header>1210 <header>
@@ -1284,10 +1284,11 @@
1284 <record id="view_move_picking_form" model="ir.ui.view">1284 <record id="view_move_picking_form" model="ir.ui.view">
1285 <field name="name">stock.move.form</field>1285 <field name="name">stock.move.form</field>
1286 <field name="model">stock.move</field>1286 <field name="model">stock.move</field>
1287 <field eval="2" name="priority"/>1287 <field eval="1" name="priority"/>
1288 <field name="arch" type="xml">1288 <field name="arch" type="xml">
1289 <form string="Stock Moves" version="7.0">1289 <form string="Stock Moves" version="7.0">
1290 <header>1290 <header>
1291 <button name="action_cancel" states="assigned" string="Cancel" type="object" groups="base.group_user"/>
1291 <button name="force_assign" states="confirmed" string="Force Availability" type="object" groups="base.group_user"/>1292 <button name="force_assign" states="confirmed" string="Force Availability" type="object" groups="base.group_user"/>
1292 <button name="action_confirm" states="draft" string="Confirm" type="object" groups="base.group_user"/>1293 <button name="action_confirm" states="draft" string="Confirm" type="object" groups="base.group_user"/>
1293 <button name="cancel_assign" states="assigned" string="Cancel Availability" type="object" groups="base.group_user"/>1294 <button name="cancel_assign" states="assigned" string="Cancel Availability" type="object" groups="base.group_user"/>