Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd

I am trying to this: Automatically Close Purchase Order when all its tasks are CompletedI cannot touch the code directly at this moment (too many changes from front-end). So that's the LAST option I want to pursue. So, from front-end GUI, I am thinking to create an Automated Action on Task Update that runs a Server Action to do this task.

How to find if the task's project has all tasks in closed/cancelled state (or not)?

Can we modify any of these below and use them in a server action to do this?

    def
_task_count(self, cr, uid, ids, field_name, arg, context=None):
        res={}
        for tasks in self.browse(cr, uid, ids, dict(context, active_test=False)):
            res[tasks.id] = len(tasks.task_ids)
        return res


ids = models.execute_kw(db, uid, password,
'res.partner', 'search',
[[['is_company', '=', True], ['customer', '=', True]]],
{'limit': 1})
[record] = models.execute_kw(db, uid, password,
'res.partner', 'read', [ids])
# count the number of fields fetched by default
len(record)
Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
mrt. 23
1774
2
jan. 20
15215
16
aug. 19
10178
1
jan. 19
5424
5
jun. 18
10836