mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
opt pos
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Odoo Customize(Debranding, My Odoo)',
|
'name': 'Odoo Customize(Debranding, My Odoo)',
|
||||||
'version': '12.19.06.02',
|
'version': '12.19.07.06',
|
||||||
'author': 'Sunpop.cn',
|
'author': 'Sunpop.cn',
|
||||||
'category': 'Productivity',
|
'category': 'Productivity',
|
||||||
'website': 'https://www.sunpop.cn',
|
'website': 'https://www.sunpop.cn',
|
||||||
@@ -69,6 +69,7 @@
|
|||||||
25. Add remove expense data
|
25. Add remove expense data
|
||||||
26. Add multi uninstall modules
|
26. Add multi uninstall modules
|
||||||
27. Add odoo 13 support, Just install this app on odoo 13, master branch of odoo github.
|
27. Add odoo 13 support, Just install this app on odoo 13, master branch of odoo github.
|
||||||
|
28. Fix pos remove data for account close.
|
||||||
|
|
||||||
This module can help to white label the Odoo.
|
This module can help to white label the Odoo.
|
||||||
Also helpful for training and support for your odoo end-user.
|
Also helpful for training and support for your odoo end-user.
|
||||||
|
|||||||
@@ -203,6 +203,11 @@ class ResConfigSettings(models.TransientModel):
|
|||||||
seq.write({
|
seq.write({
|
||||||
'number_next': 1,
|
'number_next': 1,
|
||||||
})
|
})
|
||||||
|
# 更新要关帐的值,因为 store=true 的计算字段要重置
|
||||||
|
statement = self.env['account.bank.statement'].search([])
|
||||||
|
for s in statement:
|
||||||
|
s._end_balance()
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
pass # raise Warning(e)
|
pass # raise Warning(e)
|
||||||
return True
|
return True
|
||||||
|
|||||||
Reference in New Issue
Block a user