Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
1598 Lượt xem

 def button_get_payments_attachments(self):        

​self.ensure_one()        

​ids=[]        

​for invoice in self.invoice_ids:          

​​print('----------------',invoice.payment_ids)            

​print('----------------',invoice.payment_id)            


no results

---------------- account.payment()

---------------- account.payment()



            

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

You can use the following code to link a purchase order with its payments.


Python

from odoo import models


class PurchaseOrder(models.Model):
_inherit = 'purchase.order'

def button_get_payments_attachments(self):
self.ensure_one()
account_payment_ids = [
item['account_payment_id']
for payment in self.invoice_ids.mapped('invoice_payments_widget')
for item in payment.get('content', [])
]
return {
'type': 'ir.actions.act_window',
'name': 'Payments',
'res_model': 'account.payment',
'view_mode': 'tree,form',
'domain': [('id', 'in', account_payment_ids)],

}

Hope it helps

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
Odoo App Đã xử lý
1
thg 11 23
2248
0
thg 5 24
1932
0
thg 9 23
2846
0
thg 9 23
2537
0
thg 8 23
2367