似乎两种说法都是一样的。 Unload me
或End
任何人都可以解释一下这个区别吗?和END
陈述的目的
这两个陈述是否都做同样的事情?
Private Sub btn_trial_Click()
SetUpTrial.ActivateTrial (Activation.getMachineIDIndexNo)
End
End Sub
答案 0 :(得分:3)
不,他们不这样做。
@api.onchange('fixed_amount')
def automate_creation(self):
terms = self.line_ids.browse([])
self.number_of_slices = (self.how_much/self.fixed_amount)
days = 30
i = 0
while i<self.number_of_slices:
terms+=terms.new({'value': 'fixed',
'value_amount':self.fixed_amount,
'days':days,
'option':'day_after_invoice_date',
'payment_id':self._origin.id})
self.line_ids = terms
会杀死您拥有的任何公共或私有变量,包括任何表单和任何对象。非常不可取。
End
应该卸载表单。
请参阅此处以获取表单的参考,Unload Me
实际上不是关闭表单和引用表单的最佳选择 - https://stackoverflow.com/a/48427044/5448626