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

when creating invoice I want to add it to the thread if there is more than 17 invoice_lines

 @api.multi
        def _run_threaded_invoice(self, ):
            with Environment.manage():
                new_cr = self.pool.cursor()
                self = self.with_env(self.env(cr=new_cr))
                self.action_invoice_open()
                new_cr.commit()
                new_cr.close()


@api.multi
    def action_invoice_open(self):
        thread = False
        if self.type == 'in_invoice' and len(self.invoice_line_ids) > 17 and thread == False:
            thread = True
            threaded_calculation = threading.Thread(
                target=self._run_threaded_invoice)
            threaded_calculation.start()



           #and other logic that i have added to this method 

but i do get errors

TransactionRollbackError: could not serialize access due to concurrent update

PoolError: The Connection Pool Is Full

this looks very familiar to me as recursion error...

how do i set up thread correctly?

形象
丢弃
最佳答案

It seems it is a database pool connection issue. Can you show your config and server characteristics as RAM and CPU?

形象
丢弃
相关帖文 回复 查看 活动
2
12月 23
7310
3
9月 21
9269
0
8月 21
3969
4
7月 16
12294
0
4月 23
2369