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

I'd like to set conditional deletion on my one2many tree.

Static solution works perfect:

<tree string="My Tree" delete="false">
...
</tree>

but I can't find a solution to set it dynamically ie. if invoice type equals 'out_refund' than delete="false", else delete="true"

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

Hi,

I think another solution is to define an unlink method in that class. Here I think, you need to inherit the account.invoice class and define the unlink method.

for eg:

class AccountInvoice(models.Model):

_inherit = "account.invoice"


    @api.multi

def unlink(self):

for rec in self:

if rec.type == 'out_refund':

raise UserError(_('You cannot delete these type of invoices!'))

return super(AccountInvoice, self).unlink()

This will allow deletion of records only after checking the condition. 

Hope this helps.

Ảnh đại diện
Huỷ bỏ
Tác giả

Thanks for your help. It works and gives even more possibilities than I need for my use case. Problem is, this works on a different layer - model, so error is raised when record is saved. It gives strange user experience: when user deletes record in list and when whole form is saved then error appears. I'll use it right now (thanks again) and I'll try to find solution which works on presentation layer.

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 2 21
3445
2
thg 11 20
17802
1
thg 7 20
4706
0
thg 11 15
4987
0
thg 3 15
4255