跳至内容
菜单
此问题已终结
1 回复
2599 查看

When I create a new Approval Type, there is an option in the form, also called Approval Type, with a tool-tip which reads 'Allows you to define which documents you would like to create once the request has been approved'.

How can I modify the selection? Currently the only option i have is 'Create RFQ's'


形象
丢弃
最佳答案

Hi,

You can customize the selection options by extending the ApprovalCategory model. By using Python code like the one provided below, you can add additional choices to the existing ones. For instance, if you wish to include another option, you can incorporate the following code snippet:

class ApprovalCategory(models.Model):

    _inherit = 'approval.category'


    approval_type = fields.Selection(selection_add=[('purchase', 'Create RFQ\'s')])


Hope it helps

形象
丢弃
相关帖文 回复 查看 活动
3
8月 25
2648
1
5月 25
2664
1
4月 25
3664
1
4月 25
4518
1
4月 25
1981