Skip to content

Commit

Permalink
[FIX] purchase: Labels in purchase.order form view not displayed
Browse files Browse the repository at this point in the history
The labels Request for Quotation and Purchase Order were not displayed.

opw:1958631

closes #32281

Signed-off-by: Simon Goffin (sig) <sig@openerp.com>
  • Loading branch information
simongoffin committed Apr 1, 2019
1 parent c8095eb commit 0218b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/purchase/views/purchase_views.xml
Expand Up @@ -157,8 +157,8 @@
</button>
</div>
<div class="oe_title">
<span class="o_form_label" string="Request for Quotation " attrs="{'invisible': [('state','not in',('draft','sent'))]}"/>
<span class="o_form_label" string="Purchase Order " attrs="{'invisible': [('state','in',('draft','sent'))]}"/>
<span class="o_form_label" attrs="{'invisible': [('state','not in',('draft','sent'))]}">Request for Quotation </span>
<span class="o_form_label" attrs="{'invisible': [('state','in',('draft','sent'))]}">Purchase Order </span>
<h1>
<field name="name" readonly="1"/>
</h1>
Expand Down

0 comments on commit 0218b7f

Please sign in to comment.