Skip to content
Snippets Groups Projects
Unverified Commit 7c584d3e authored by Levent Karakas's avatar Levent Karakas Committed by Martin Trigaux
Browse files

[FIX] sale: untranslated label

attribute string is translatable on a search filter, not name (which is used as fallback label
Closes #10419
parent 9d445442
No related branches found
No related tags found
No related merge requests found
......@@ -1446,6 +1446,7 @@ msgstr ""
#: model:ir.actions.act_window,name:sale.action_quotations_salesteams
#: model:ir.ui.menu,name:sale.menu_sale_quotations
#: view:sale.order:sale.view_sales_order_filter
#: view:sale.report:sale.view_order_product_search
msgid "Quotations"
msgstr ""
......
......@@ -49,7 +49,7 @@
<field name="date"/>
<field name="date_confirm"/>
<filter string="This Year" name="year" invisible="1" domain="[('date','&lt;=', time.strftime('%%Y-12-31')),('date','&gt;=',time.strftime('%%Y-01-01'))]"/>
<filter name="Quotations" domain="[('state','=','draft')]"/>
<filter name="Quotations" string="Quotations" domain="[('state','=','draft')]"/>
<filter name="Sales" string="Sales" domain="[('state','not in',('draft', 'cancel'))]"/>
<separator/>
<filter string="My Sales" help="My Sales" domain="[('user_id','=',uid)]"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment