跳至內容
選單
此問題已被標幟
3 回覆
5941 瀏覽次數

Hi everyone,


I am struggling with creating AND condition on account.invoice model for o2m invoice_line_ids  field (relation to account.invoice.line model). I need to filter invoices having invoice line with Product=Downpayment and quantity=1 at the same time. With using domain filter in XML search view (see code below) it does not work because it takes in account all lines in order to satisfy the defined condition within one invoice.  Using Odoo v12.0.


<xpath expr="//search/filter[@name='myinvoices']" position="before">

   <filter name="Downpayments" domain="[('invoice_line_ids.product_id.name', '=', 'Downpayment'), ('invoice_line_ids.quantity', '=', 1)]"/>

</xpath>


Many thanks for your help


Best regards,

Marek


頭像
捨棄
作者 最佳答案

Hello Jainesh,

&amp is used by default therefore without specification, it has the same effect.

Regards,

頭像
捨棄
最佳答案

can you try

<filter name="Downpayments" domain="[('invoice_line_ids.sale_line_ids.is_downpayment', '!=', False)]"/> 

 there is no issue with domain AND or OR condition feel free to add more domain as needed




頭像
捨棄
最佳答案

Hello Marek,

You need to replace below code in your xpath:

<filter name="Downpayments" domain="['&amp;',('invoice_line_ids.product_id.name', '=', 'Down payment'), ('invoice_line_ids.quantity', '=', 1)]"/>

Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
4月 22
3349
3
8月 23
2851
0
1月 18
5257
3
3月 25
2692
0
6月 24
1471