mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-22 07:42:06 +02:00
Initial commit: Accounting packages
This commit is contained in:
commit
4ef34c2317
2661 changed files with 1709616 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
CODE_EXEC_DEFAULT = '''\
|
||||
res = []
|
||||
cr.execute("select id, code from account_journal")
|
||||
for record in cr.dictfetchall():
|
||||
res.append(record['code'])
|
||||
result = res
|
||||
'''
|
||||
|
||||
|
||||
class AccountingAssertTest(models.Model):
|
||||
_name = "accounting.assert.test"
|
||||
_description = 'Accounting Assert Test'
|
||||
_order = "sequence"
|
||||
|
||||
name = fields.Char(string='Test Name', required=True, index=True, translate=True)
|
||||
desc = fields.Text(string='Test Description', index=True, translate=True)
|
||||
code_exec = fields.Text(string='Python code', required=True, default=CODE_EXEC_DEFAULT)
|
||||
active = fields.Boolean(default=True)
|
||||
sequence = fields.Integer(default=10)
|
||||
Loading…
Add table
Add a link
Reference in a new issue