Compare commits
28 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
46515aaf26 | ||
![]() |
a2cb2b308b | ||
![]() |
25db274d2d | ||
![]() |
11b3f7d004 | ||
![]() |
75a873e25d | ||
![]() |
de0de8a85f | ||
![]() |
0fcc997f28 | ||
![]() |
5797f42489 | ||
![]() |
4afd9f835d | ||
![]() |
70ef448beb | ||
![]() |
34a4958936 | ||
![]() |
f661f5ed38 | ||
![]() |
19389b3865 | ||
![]() |
b4e7cface3 | ||
![]() |
bb24a94cd1 | ||
![]() |
f76f91b35a | ||
![]() |
8abeb63441 | ||
![]() |
8b0a2a6ccd | ||
![]() |
613f4e9767 | ||
![]() |
a84e3ed8ba | ||
![]() |
4876b06421 | ||
![]() |
619a4e9ed6 | ||
![]() |
559a5d0656 | ||
![]() |
2fdee39611 | ||
![]() |
4df6284257 | ||
![]() |
0aa9df2f1d | ||
![]() |
dadcfb618f | ||
![]() |
603a9d7477 |
30 changed files with 1165 additions and 92 deletions
30
README.rst
30
README.rst
|
@ -14,6 +14,36 @@ Requires
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
*6.0.7 - 07.09.2022*
|
||||||
|
|
||||||
|
- add: enter-booking-wizard
|
||||||
|
|
||||||
|
*6.0.6 - 06.09.2022*
|
||||||
|
|
||||||
|
- updt: optimized form - line, line-context
|
||||||
|
- updt: extended search in cashbook-lines
|
||||||
|
|
||||||
|
*6.0.5 - 05.09.2022*
|
||||||
|
|
||||||
|
- updt: view of book + line optimized
|
||||||
|
|
||||||
|
*6.0.4 - 05.09.2022*
|
||||||
|
|
||||||
|
- fix: write number at state-change 'check' -> 'done'
|
||||||
|
- updt: speedup transaction view
|
||||||
|
|
||||||
|
*6.0.3 - 31.08.2022*
|
||||||
|
|
||||||
|
- updt: checks, sorting
|
||||||
|
|
||||||
|
*6.0.2 - 25.08.2022*
|
||||||
|
|
||||||
|
- add: split-booking
|
||||||
|
|
||||||
|
*6.0.1 - 23.08.2022*
|
||||||
|
|
||||||
|
- works
|
||||||
|
|
||||||
*6.0.0 - 05.08.2022*
|
*6.0.0 - 05.08.2022*
|
||||||
|
|
||||||
- init
|
- init
|
||||||
|
|
|
@ -10,6 +10,7 @@ from .line import Line, LineContext
|
||||||
from .splitline import SplitLine
|
from .splitline import SplitLine
|
||||||
from .wizard_openline import OpenCashBook, OpenCashBookStart
|
from .wizard_openline import OpenCashBook, OpenCashBookStart
|
||||||
from .wizard_runreport import RunCbReport, RunCbReportStart
|
from .wizard_runreport import RunCbReport, RunCbReportStart
|
||||||
|
from .wizard_booking import EnterBookingWizard, EnterBookingStart
|
||||||
from .configuration import Configuration, UserConfiguration
|
from .configuration import Configuration, UserConfiguration
|
||||||
from .category import Category
|
from .category import Category
|
||||||
from .reconciliation import Reconciliation
|
from .reconciliation import Reconciliation
|
||||||
|
@ -28,6 +29,7 @@ def register():
|
||||||
Reconciliation,
|
Reconciliation,
|
||||||
OpenCashBookStart,
|
OpenCashBookStart,
|
||||||
RunCbReportStart,
|
RunCbReportStart,
|
||||||
|
EnterBookingStart,
|
||||||
module='cashbook', type_='model')
|
module='cashbook', type_='model')
|
||||||
Pool.register(
|
Pool.register(
|
||||||
ReconciliationReport,
|
ReconciliationReport,
|
||||||
|
@ -35,4 +37,5 @@ def register():
|
||||||
Pool.register(
|
Pool.register(
|
||||||
OpenCashBook,
|
OpenCashBook,
|
||||||
RunCbReport,
|
RunCbReport,
|
||||||
|
EnterBookingWizard,
|
||||||
module='cashbook', type_='wizard')
|
module='cashbook', type_='wizard')
|
||||||
|
|
19
book.py
19
book.py
|
@ -76,14 +76,16 @@ class Book(Workflow, ModelSQL, ModelView):
|
||||||
),
|
),
|
||||||
}, depends=DEPENDS+['lines'])
|
}, depends=DEPENDS+['lines'])
|
||||||
start_balance = fields.Numeric(string='Initial Amount', required=True,
|
start_balance = fields.Numeric(string='Initial Amount', required=True,
|
||||||
|
digits=(16, Eval('currency_digits', 2)),
|
||||||
states={
|
states={
|
||||||
'readonly': Or(
|
'readonly': Or(
|
||||||
STATES['readonly'],
|
STATES['readonly'],
|
||||||
Bool(Eval('lines')),
|
Bool(Eval('lines')),
|
||||||
),
|
),
|
||||||
}, depends=DEPENDS+['lines'])
|
}, depends=DEPENDS+['lines', 'currency_digits'])
|
||||||
balance = fields.Function(fields.Numeric(string='Balance', readonly=True),
|
balance = fields.Function(fields.Numeric(string='Balance', readonly=True,
|
||||||
'on_change_with_balance')
|
digits=(16, Eval('currency_digits', 2)),
|
||||||
|
depends=['currency_digits']), 'on_change_with_balance')
|
||||||
currency = fields.Many2One(string='Currency', required=True,
|
currency = fields.Many2One(string='Currency', required=True,
|
||||||
model_name='currency.currency',
|
model_name='currency.currency',
|
||||||
states={
|
states={
|
||||||
|
@ -92,6 +94,8 @@ class Book(Workflow, ModelSQL, ModelView):
|
||||||
Bool(Eval('lines', [])),
|
Bool(Eval('lines', [])),
|
||||||
),
|
),
|
||||||
}, depends=DEPENDS+['lines'])
|
}, depends=DEPENDS+['lines'])
|
||||||
|
currency_digits = fields.Function(fields.Integer(string='Currency Digits',
|
||||||
|
readonly=True), 'on_change_with_currency_digits')
|
||||||
state = fields.Selection(string='State', required=True,
|
state = fields.Selection(string='State', required=True,
|
||||||
readonly=True, selection=sel_state_book)
|
readonly=True, selection=sel_state_book)
|
||||||
state_string = state.translated('state')
|
state_string = state.translated('state')
|
||||||
|
@ -196,6 +200,15 @@ class Book(Workflow, ModelSQL, ModelView):
|
||||||
'state': self.state_string,
|
'state': self.state_string,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@fields.depends('currency')
|
||||||
|
def on_change_with_currency_digits(self, name=None):
|
||||||
|
""" currency of cashbook
|
||||||
|
"""
|
||||||
|
if self.currency:
|
||||||
|
return self.currency.digits
|
||||||
|
else:
|
||||||
|
return 2
|
||||||
|
|
||||||
@fields.depends('id', 'start_balance')
|
@fields.depends('id', 'start_balance')
|
||||||
def on_change_with_balance(self, name=None):
|
def on_change_with_balance(self, name=None):
|
||||||
""" compute balance
|
""" compute balance
|
||||||
|
|
91
category.py
91
category.py
|
@ -3,12 +3,46 @@
|
||||||
# The COPYRIGHT file at the top level of this repository contains the
|
# The COPYRIGHT file at the top level of this repository contains the
|
||||||
# full copyright notices and license terms.
|
# full copyright notices and license terms.
|
||||||
|
|
||||||
from trytond.model import ModelView, ModelSQL, fields, Unique, tree, sequence_ordered
|
from trytond.model import ModelView, ModelSQL, fields, Unique, Exclude, tree
|
||||||
from trytond.transaction import Transaction
|
from trytond.transaction import Transaction
|
||||||
from trytond.pool import Pool
|
from trytond.pool import Pool
|
||||||
from trytond.pyson import Eval, If, Bool
|
from trytond.pyson import Eval, If, Bool
|
||||||
from trytond.exceptions import UserError
|
from trytond.exceptions import UserError
|
||||||
from trytond.i18n import gettext
|
from trytond.i18n import gettext
|
||||||
|
from sql.operators import Equal
|
||||||
|
from sql.functions import Function
|
||||||
|
from sql import With, Literal
|
||||||
|
|
||||||
|
|
||||||
|
class ArrayApppend(Function):
|
||||||
|
""" sql: array_append
|
||||||
|
"""
|
||||||
|
__slots__ = ()
|
||||||
|
_function = 'ARRAY_APPEND'
|
||||||
|
|
||||||
|
# end ArrayApppend
|
||||||
|
|
||||||
|
|
||||||
|
class ArrayToString(Function):
|
||||||
|
""" sql: array_to_string
|
||||||
|
"""
|
||||||
|
__slots__ = ()
|
||||||
|
_function = 'ARRAY_TO_STRING'
|
||||||
|
|
||||||
|
# end ArrayToString
|
||||||
|
|
||||||
|
|
||||||
|
class Array(Function):
|
||||||
|
""" sql: array-type
|
||||||
|
"""
|
||||||
|
__slots__ = ()
|
||||||
|
_function = 'ARRAY'
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self._function + '[' + ', '.join(
|
||||||
|
map(self._format, self.args)) + ']'
|
||||||
|
|
||||||
|
# end Array
|
||||||
|
|
||||||
|
|
||||||
sel_categorytype = [
|
sel_categorytype = [
|
||||||
|
@ -17,7 +51,7 @@ sel_categorytype = [
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class Category(tree(separator='/'), sequence_ordered(), ModelSQL, ModelView):
|
class Category(tree(separator='/'), ModelSQL, ModelView):
|
||||||
'Category'
|
'Category'
|
||||||
__name__ = 'cashbook.category'
|
__name__ = 'cashbook.category'
|
||||||
|
|
||||||
|
@ -36,7 +70,6 @@ class Category(tree(separator='/'), sequence_ordered(), ModelSQL, ModelView):
|
||||||
|
|
||||||
company = fields.Many2One(string='Company', model_name='company.company',
|
company = fields.Many2One(string='Company', model_name='company.company',
|
||||||
required=True, ondelete="RESTRICT")
|
required=True, ondelete="RESTRICT")
|
||||||
sequence = fields.Integer(string='Sequence', select=True)
|
|
||||||
parent = fields.Many2One(string="Parent",
|
parent = fields.Many2One(string="Parent",
|
||||||
model_name='cashbook.category', ondelete='RESTRICT',
|
model_name='cashbook.category', ondelete='RESTRICT',
|
||||||
left='left', right='right')
|
left='left', right='right')
|
||||||
|
@ -45,15 +78,35 @@ class Category(tree(separator='/'), sequence_ordered(), ModelSQL, ModelView):
|
||||||
left = fields.Integer(string='Left', required=True, select=True)
|
left = fields.Integer(string='Left', required=True, select=True)
|
||||||
right = fields.Integer(string='Right', required=True, select=True)
|
right = fields.Integer(string='Right', required=True, select=True)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def __register__(cls, module_name):
|
||||||
|
super(Category, cls).__register__(module_name)
|
||||||
|
cls.migrate_sequence(module_name)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def __setup__(cls):
|
def __setup__(cls):
|
||||||
super(Category, cls).__setup__()
|
super(Category, cls).__setup__()
|
||||||
cls._order.insert(0, ('name', 'ASC'))
|
cls._order.insert(0, ('rec_name', 'ASC'))
|
||||||
t = cls.__table__()
|
t = cls.__table__()
|
||||||
cls._sql_constraints.extend([
|
cls._sql_constraints.extend([
|
||||||
('name_uniq', Unique(t, t.name, t.company, t.parent), 'cashbook.msg_category_name_unique'),
|
('name_uniq',
|
||||||
|
Unique(t, t.name, t.company, t.parent),
|
||||||
|
'cashbook.msg_category_name_unique'),
|
||||||
|
('name2_uniq',
|
||||||
|
Exclude(t,
|
||||||
|
(t.name, Equal),
|
||||||
|
(t.cattype, Equal),
|
||||||
|
where=(t.parent == None)),
|
||||||
|
'cashbook.msg_category_name_unique'),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def migrate_sequence(cls, module_name):
|
||||||
|
""" remove colum 'sequence'
|
||||||
|
"""
|
||||||
|
table = cls.__table_handler__(module_name)
|
||||||
|
table.drop_column('sequence')
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def default_cattype(cls):
|
def default_cattype(cls):
|
||||||
return 'out'
|
return 'out'
|
||||||
|
@ -70,6 +123,34 @@ class Category(tree(separator='/'), sequence_ordered(), ModelSQL, ModelView):
|
||||||
def default_right():
|
def default_right():
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def order_rec_name(tables):
|
||||||
|
""" order by pos
|
||||||
|
a recursive sorting
|
||||||
|
"""
|
||||||
|
Category2 = Pool().get('cashbook.category')
|
||||||
|
tab_cat = Category2.__table__()
|
||||||
|
tab_cat2 = Category2.__table__()
|
||||||
|
table, _ = tables[None]
|
||||||
|
|
||||||
|
categories = With('id', 'name', 'name_path', recursive=True)
|
||||||
|
categories.query = tab_cat.select(
|
||||||
|
tab_cat.id, tab_cat.name, Array(tab_cat.name),
|
||||||
|
where = tab_cat.parent==None,
|
||||||
|
)
|
||||||
|
categories.query |= tab_cat2.join(categories,
|
||||||
|
condition=categories.id==tab_cat2.parent,
|
||||||
|
).select(
|
||||||
|
tab_cat2.id, tab_cat2.name, ArrayApppend(categories.name_path, tab_cat2.name),
|
||||||
|
)
|
||||||
|
categories.query.all_ = True
|
||||||
|
|
||||||
|
query = categories.select(
|
||||||
|
ArrayToString(categories.name_path, '/').as_('rec_name'),
|
||||||
|
where = table.id==categories.id,
|
||||||
|
with_ = [categories])
|
||||||
|
return [query]
|
||||||
|
|
||||||
@fields.depends('parent', '_parent_parent.cattype')
|
@fields.depends('parent', '_parent_parent.cattype')
|
||||||
def on_change_with_parent_cattype(self, name=None):
|
def on_change_with_parent_cattype(self, name=None):
|
||||||
""" get type of parent category or None
|
""" get type of parent category or None
|
||||||
|
|
29
category.xml
29
category.xml
|
@ -42,6 +42,20 @@ full copyright notices and license terms. -->
|
||||||
<field name="act_window" ref="act_category_list"/>
|
<field name="act_window" ref="act_category_list"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
<!-- domain view - list -->
|
||||||
|
<record model="ir.action.act_window.domain" id="act_category_list_domain_in">
|
||||||
|
<field name="name">Revenue</field>
|
||||||
|
<field name="sequence" eval="10"/>
|
||||||
|
<field name="domain" eval="[('cattype', '=', 'in')]" pyson="1"/>
|
||||||
|
<field name="act_window" ref="act_category_list"/>
|
||||||
|
</record>
|
||||||
|
<record model="ir.action.act_window.domain" id="act_category_list_domain_out">
|
||||||
|
<field name="name">Expense</field>
|
||||||
|
<field name="sequence" eval="20"/>
|
||||||
|
<field name="domain" eval="[('cattype', '=', 'out')]" pyson="1"/>
|
||||||
|
<field name="act_window" ref="act_category_list"/>
|
||||||
|
</record>
|
||||||
|
|
||||||
<!-- action view - tree -->
|
<!-- action view - tree -->
|
||||||
<record model="ir.action.act_window" id="act_category_tree">
|
<record model="ir.action.act_window" id="act_category_tree">
|
||||||
<field name="name">Category</field>
|
<field name="name">Category</field>
|
||||||
|
@ -59,6 +73,21 @@ full copyright notices and license terms. -->
|
||||||
<field name="act_window" ref="act_category_tree"/>
|
<field name="act_window" ref="act_category_tree"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
<!-- domain view - tree -->
|
||||||
|
<record model="ir.action.act_window.domain" id="act_category_tree_domain_in">
|
||||||
|
<field name="name">Revenue</field>
|
||||||
|
<field name="sequence" eval="10"/>
|
||||||
|
<field name="domain" eval="[('cattype', '=', 'in')]" pyson="1"/>
|
||||||
|
<field name="act_window" ref="act_category_tree"/>
|
||||||
|
</record>
|
||||||
|
<record model="ir.action.act_window.domain" id="act_category_tree_domain_out">
|
||||||
|
<field name="name">Expense</field>
|
||||||
|
<field name="sequence" eval="20"/>
|
||||||
|
<field name="domain" eval="[('cattype', '=', 'out')]" pyson="1"/>
|
||||||
|
<field name="act_window" ref="act_category_tree"/>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
|
||||||
<!-- permission -->
|
<!-- permission -->
|
||||||
<!-- anon: deny all -->
|
<!-- anon: deny all -->
|
||||||
<record model="ir.model.access" id="access_category-anon">
|
<record model="ir.model.access" id="access_category-anon">
|
||||||
|
|
|
@ -15,6 +15,9 @@ field_done = fields.Boolean(string='Done',
|
||||||
help='Show cashbook lines in Done-state.')
|
help='Show cashbook lines in Done-state.')
|
||||||
field_catnamelong = fields.Boolean(string='Category: Show long name',
|
field_catnamelong = fields.Boolean(string='Category: Show long name',
|
||||||
help='Shows the long name of the category in the Category field of a cash book line.')
|
help='Shows the long name of the category in the Category field of a cash book line.')
|
||||||
|
field_defbook = fields.Many2One(string='Default Cashbook',
|
||||||
|
help='The default cashbook is selected when you open the booking wizard.',
|
||||||
|
model_name='cashbook.book', ondelete='SET NULL')
|
||||||
|
|
||||||
|
|
||||||
class Configuration(ModelSingleton, ModelSQL, ModelView, UserMultiValueMixin):
|
class Configuration(ModelSingleton, ModelSQL, ModelView, UserMultiValueMixin):
|
||||||
|
@ -36,6 +39,7 @@ class Configuration(ModelSingleton, ModelSQL, ModelView, UserMultiValueMixin):
|
||||||
checked = fields.MultiValue(field_checked)
|
checked = fields.MultiValue(field_checked)
|
||||||
done = fields.MultiValue(field_done)
|
done = fields.MultiValue(field_done)
|
||||||
catnamelong = fields.MultiValue(field_catnamelong)
|
catnamelong = fields.MultiValue(field_catnamelong)
|
||||||
|
defbook = fields.MultiValue(field_defbook)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def multivalue_model(cls, field):
|
def multivalue_model(cls, field):
|
||||||
|
@ -44,7 +48,7 @@ class Configuration(ModelSingleton, ModelSQL, ModelView, UserMultiValueMixin):
|
||||||
pool = Pool()
|
pool = Pool()
|
||||||
|
|
||||||
if field in ['date_from', 'date_to', 'checked', 'done',
|
if field in ['date_from', 'date_to', 'checked', 'done',
|
||||||
'catnamelong']:
|
'catnamelong', 'defbook']:
|
||||||
return pool.get('cashbook.configuration_user')
|
return pool.get('cashbook.configuration_user')
|
||||||
return super(Configuration, cls).multivalue_model(field)
|
return super(Configuration, cls).multivalue_model(field)
|
||||||
|
|
||||||
|
@ -82,6 +86,7 @@ class UserConfiguration(ModelSQL, UserValueMixin):
|
||||||
checked = field_checked
|
checked = field_checked
|
||||||
done = field_done
|
done = field_done
|
||||||
catnamelong = field_catnamelong
|
catnamelong = field_catnamelong
|
||||||
|
defbook = field_defbook
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def default_checked(cls):
|
def default_checked(cls):
|
||||||
|
|
99
line.py
99
line.py
|
@ -57,8 +57,10 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
month = fields.Function(fields.Integer(string='Month', readonly=True),
|
month = fields.Function(fields.Integer(string='Month', readonly=True),
|
||||||
'on_change_with_month', searcher='search_month')
|
'on_change_with_month', searcher='search_month')
|
||||||
number = fields.Char(string='Number', readonly=True)
|
number = fields.Char(string='Number', readonly=True)
|
||||||
description = fields.Text(string='Description',
|
description = fields.Text(string='Description', select=True,
|
||||||
states=STATES, depends=DEPENDS)
|
states=STATES, depends=DEPENDS)
|
||||||
|
descr_short = fields.Function(fields.Char(string='Description', readonly=True),
|
||||||
|
'on_change_with_descr_short', searcher='search_descr_short')
|
||||||
category = fields.Many2One(string='Category',
|
category = fields.Many2One(string='Category',
|
||||||
model_name='cashbook.category', ondelete='RESTRICT',
|
model_name='cashbook.category', ondelete='RESTRICT',
|
||||||
states={
|
states={
|
||||||
|
@ -89,7 +91,8 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
STATES['readonly'],
|
STATES['readonly'],
|
||||||
Eval('bookingtype', '').in_(['spin', 'spout']),
|
Eval('bookingtype', '').in_(['spin', 'spout']),
|
||||||
),
|
),
|
||||||
}, depends=DEPENDS+['currency_digits', 'bookingtype'])
|
}, depends=DEPENDS+['currency_digits', 'bookingtype'],
|
||||||
|
domain=[('amount', '>=', Decimal('0.0'))])
|
||||||
debit = fields.Numeric(string='Debit', digits=(16, Eval('currency_digits', 2)),
|
debit = fields.Numeric(string='Debit', digits=(16, Eval('currency_digits', 2)),
|
||||||
required=True, readonly=True, depends=['currency_digits'])
|
required=True, readonly=True, depends=['currency_digits'])
|
||||||
credit = fields.Numeric(string='Credit', digits=(16, Eval('currency_digits', 2)),
|
credit = fields.Numeric(string='Credit', digits=(16, Eval('currency_digits', 2)),
|
||||||
|
@ -181,6 +184,9 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
('state_val',
|
('state_val',
|
||||||
Check(t, t.state.in_(['edit', 'check', 'done'])),
|
Check(t, t.state.in_(['edit', 'check', 'done'])),
|
||||||
'cashbook.msg_line_wrong_state_value'),
|
'cashbook.msg_line_wrong_state_value'),
|
||||||
|
('amount_val',
|
||||||
|
Check(t, t.amount >= Decimal('0.0')),
|
||||||
|
'cashbook.msg_line_must_positive'),
|
||||||
])
|
])
|
||||||
cls._transitions |= set((
|
cls._transitions |= set((
|
||||||
('edit', 'check'),
|
('edit', 'check'),
|
||||||
|
@ -345,7 +351,11 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
def search_rec_name(cls, name, clause):
|
def search_rec_name(cls, name, clause):
|
||||||
""" search in description +...
|
""" search in description +...
|
||||||
"""
|
"""
|
||||||
return [('description',) + tuple(clause[1:])]
|
l1 = cls.search_payee(name, clause) + [
|
||||||
|
('description',) + tuple(clause[1:]),
|
||||||
|
('category.rec_name',) + tuple(clause[1:]),
|
||||||
|
]
|
||||||
|
return l1
|
||||||
|
|
||||||
def get_rec_name(self, name):
|
def get_rec_name(self, name):
|
||||||
""" short + name
|
""" short + name
|
||||||
|
@ -414,6 +424,13 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
|
|
||||||
return [tab2]
|
return [tab2]
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def order_descr_short(tables):
|
||||||
|
""" order by 'description'
|
||||||
|
"""
|
||||||
|
table, _ = tables[None]
|
||||||
|
return [table.description]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def search_payee(cls, names, clause):
|
def search_payee(cls, names, clause):
|
||||||
""" search in payee for party or cashbook
|
""" search in payee for party or cashbook
|
||||||
|
@ -454,6 +471,12 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
"""
|
"""
|
||||||
return [('cashbook.state',) + tuple(clause[1:])]
|
return [('cashbook.state',) + tuple(clause[1:])]
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def search_descr_short(cls, names, clause):
|
||||||
|
""" search in description
|
||||||
|
"""
|
||||||
|
return [('description',) + tuple(clause[1:])]
|
||||||
|
|
||||||
@fields.depends('amount', 'splitlines')
|
@fields.depends('amount', 'splitlines')
|
||||||
def on_change_splitlines(self):
|
def on_change_splitlines(self):
|
||||||
""" update amount if splitlines change
|
""" update amount if splitlines change
|
||||||
|
@ -481,6 +504,13 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
else :
|
else :
|
||||||
self.splitlines = []
|
self.splitlines = []
|
||||||
|
|
||||||
|
@fields.depends('description')
|
||||||
|
def on_change_with_descr_short(self, name=None):
|
||||||
|
""" to speed up list-view
|
||||||
|
"""
|
||||||
|
if self.description:
|
||||||
|
return self.description[:50]
|
||||||
|
|
||||||
@fields.depends('party', 'booktransf', 'bookingtype')
|
@fields.depends('party', 'booktransf', 'bookingtype')
|
||||||
def on_change_with_payee(self, name=None):
|
def on_change_with_payee(self, name=None):
|
||||||
""" get party or cashbook
|
""" get party or cashbook
|
||||||
|
@ -549,7 +579,8 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
|
|
||||||
@fields.depends('id', 'date', 'cashbook', \
|
@fields.depends('id', 'date', 'cashbook', \
|
||||||
'_parent_cashbook.start_balance', '_parent_cashbook.id',\
|
'_parent_cashbook.start_balance', '_parent_cashbook.id',\
|
||||||
'reconciliation', '_parent_reconciliation.start_amount')
|
'reconciliation', '_parent_reconciliation.start_amount',
|
||||||
|
'_parent_reconciliation.state')
|
||||||
def on_change_with_balance(self, name=None):
|
def on_change_with_balance(self, name=None):
|
||||||
""" compute balance until current line, with current sort order,
|
""" compute balance until current line, with current sort order,
|
||||||
try to use a reconciliation as start to speed up calculation
|
try to use a reconciliation as start to speed up calculation
|
||||||
|
@ -558,6 +589,30 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
Reconciliation = pool.get('cashbook.recon')
|
Reconciliation = pool.get('cashbook.recon')
|
||||||
Line = pool.get('cashbook.line')
|
Line = pool.get('cashbook.line')
|
||||||
|
|
||||||
|
def get_from_last_recon(line2):
|
||||||
|
""" search last reconciliation in state 'done',
|
||||||
|
generate query
|
||||||
|
"""
|
||||||
|
query2 = []
|
||||||
|
end_amount = None
|
||||||
|
|
||||||
|
recons = Reconciliation.search([
|
||||||
|
('cashbook.id', '=', self.cashbook.id),
|
||||||
|
('date_to', '<=', line2.date),
|
||||||
|
('state', '=', 'done'),
|
||||||
|
], order=[('date_from', 'DESC')], limit=1)
|
||||||
|
if len(recons) > 0:
|
||||||
|
query2.append([
|
||||||
|
('date', '>=', recons[0].date_to),
|
||||||
|
('date', '<=', line2.date),
|
||||||
|
['OR',
|
||||||
|
('reconciliation', '=', None),
|
||||||
|
('reconciliation.id', '!=', recons[0]),
|
||||||
|
],
|
||||||
|
])
|
||||||
|
end_amount = recons[0].end_amount
|
||||||
|
return (query2, end_amount)
|
||||||
|
|
||||||
if self.cashbook:
|
if self.cashbook:
|
||||||
query = [
|
query = [
|
||||||
('cashbook.id', '=', self.cashbook.id),
|
('cashbook.id', '=', self.cashbook.id),
|
||||||
|
@ -567,22 +622,22 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
# get existing reconciliation, starting before current line
|
# get existing reconciliation, starting before current line
|
||||||
# this will speed up calculation of by-line-balance
|
# this will speed up calculation of by-line-balance
|
||||||
if self.date is not None:
|
if self.date is not None:
|
||||||
recons = Reconciliation.search([
|
if self.reconciliation:
|
||||||
('cashbook.id', '=', self.cashbook.id),
|
if self.reconciliation.state == 'done':
|
||||||
('date_from', '<=', self.date),
|
query.append(
|
||||||
('state', '=', 'done'),
|
('reconciliation.id', '=', self.reconciliation.id),
|
||||||
], order=[('date_from', 'DESC')], limit=1)
|
)
|
||||||
if len(recons) > 0:
|
balance = self.reconciliation.start_amount
|
||||||
query.extend([
|
else :
|
||||||
['OR',
|
(query2, balance2) = get_from_last_recon(self)
|
||||||
('date', '>', recons[0].date_from),
|
query.extend(query2)
|
||||||
[
|
if balance2 is not None:
|
||||||
('date', '=', recons[0].date_from),
|
balance = balance2
|
||||||
('reconciliation.id', '=',recons[0].id),
|
else :
|
||||||
],
|
(query2, balance2) = get_from_last_recon(self)
|
||||||
]
|
query.extend(query2)
|
||||||
])
|
if balance2 is not None:
|
||||||
balance = recons[0].start_amount
|
balance = balance2
|
||||||
|
|
||||||
lines = Line.search(query)
|
lines = Line.search(query)
|
||||||
for line in lines:
|
for line in lines:
|
||||||
|
@ -722,7 +777,7 @@ class Line(Workflow, ModelSQL, ModelView):
|
||||||
# deny write if line is not 'Edit'
|
# deny write if line is not 'Edit'
|
||||||
if line.state != 'edit':
|
if line.state != 'edit':
|
||||||
# allow state-update, if its the only action
|
# allow state-update, if its the only action
|
||||||
if not ((len(set({'state', 'reconciliation'}).intersection(values.keys())) > 0) \
|
if not ((len(set({'state', 'reconciliation', 'number'}).intersection(values.keys())) > 0) \
|
||||||
and (len(values.keys()) == 1)):
|
and (len(values.keys()) == 1)):
|
||||||
raise UserError(gettext(
|
raise UserError(gettext(
|
||||||
'cashbook.msg_line_deny_write',
|
'cashbook.msg_line_deny_write',
|
||||||
|
@ -848,12 +903,14 @@ class LineContext(ModelView):
|
||||||
'readonly': Eval('num_cashbook', 0) < 2,
|
'readonly': Eval('num_cashbook', 0) < 2,
|
||||||
}, depends=['num_cashbook'])
|
}, depends=['num_cashbook'])
|
||||||
date_from = fields.Date(string='Start Date', depends=['date_to'],
|
date_from = fields.Date(string='Start Date', depends=['date_to'],
|
||||||
|
help='Limits the date range for the displayed entries.',
|
||||||
domain=[
|
domain=[
|
||||||
If(Eval('date_to') & Eval('date_from'),
|
If(Eval('date_to') & Eval('date_from'),
|
||||||
('date_from', '<=', Eval('date_to')),
|
('date_from', '<=', Eval('date_to')),
|
||||||
()),
|
()),
|
||||||
])
|
])
|
||||||
date_to = fields.Date(string='End Date', depends=['date_from'],
|
date_to = fields.Date(string='End Date', depends=['date_from'],
|
||||||
|
help='Limits the date range for the displayed entries.',
|
||||||
domain=[
|
domain=[
|
||||||
If(Eval('date_to') & Eval('date_from'),
|
If(Eval('date_to') & Eval('date_from'),
|
||||||
('date_from', '<=', Eval('date_to')),
|
('date_from', '<=', Eval('date_to')),
|
||||||
|
|
172
locale/de.po
172
locale/de.po
|
@ -150,6 +150,10 @@ msgctxt "model:ir.message,text:msg_line_invalid_category"
|
||||||
msgid "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
msgid "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
||||||
msgstr "Die Kategorie der Buchungszeile '%(recname)s' paßt nicht zum Buchungstyp '%(booktype)s'."
|
msgstr "Die Kategorie der Buchungszeile '%(recname)s' paßt nicht zum Buchungstyp '%(booktype)s'."
|
||||||
|
|
||||||
|
msgctxt "model:ir.message,text:msg_line_must_positive"
|
||||||
|
msgid "The amount must be positive."
|
||||||
|
msgstr "Der Betrag muß positiv sein."
|
||||||
|
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# res.group #
|
# res.group #
|
||||||
|
@ -274,6 +278,10 @@ msgctxt "model:ir.ui.menu,name:act_category_view"
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Kategorie"
|
msgstr "Kategorie"
|
||||||
|
|
||||||
|
msgctxt "model:ir.ui.menu,name:menu_enter_booking"
|
||||||
|
msgid "Enter Booking"
|
||||||
|
msgstr "Buchung eingeben"
|
||||||
|
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# ir.action #
|
# ir.action #
|
||||||
|
@ -302,6 +310,10 @@ msgctxt "model:ir.action,name:act_wizard_report"
|
||||||
msgid "Cashbook Report"
|
msgid "Cashbook Report"
|
||||||
msgstr "Kassenbuch Bericht"
|
msgstr "Kassenbuch Bericht"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action,name:act_enterbooking_wiz"
|
||||||
|
msgid "Enter Booking"
|
||||||
|
msgstr "Buchung eingeben"
|
||||||
|
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# ir.action.act_window.domain #
|
# ir.action.act_window.domain #
|
||||||
|
@ -318,6 +330,22 @@ msgctxt "model:ir.action.act_window.domain,name:act_line_domain_all"
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Alle"
|
msgstr "Alle"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_tree_domain_in"
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr "Einnahmen"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_tree_domain_out"
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr "Ausgaben"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_list_domain_in"
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr "Einnahmen"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_list_domain_out"
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr "Ausgaben"
|
||||||
|
|
||||||
|
|
||||||
###################
|
###################
|
||||||
# ir.model.button #
|
# ir.model.button #
|
||||||
|
@ -390,6 +418,14 @@ msgctxt "view:cashbook.book:"
|
||||||
msgid "Owner and Authorizeds"
|
msgid "Owner and Authorizeds"
|
||||||
msgstr "Eigentümer und Autorisierte"
|
msgstr "Eigentümer und Autorisierte"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.book:"
|
||||||
|
msgid "General Information"
|
||||||
|
msgstr "Allgemein"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.book:"
|
||||||
|
msgid "Balance"
|
||||||
|
msgstr "Saldo"
|
||||||
|
|
||||||
msgctxt "view:cashbook.book:"
|
msgctxt "view:cashbook.book:"
|
||||||
msgid "Reconciliations"
|
msgid "Reconciliations"
|
||||||
msgstr "Abstimmungen"
|
msgstr "Abstimmungen"
|
||||||
|
@ -446,6 +482,10 @@ msgctxt "field:cashbook.book,currency:"
|
||||||
msgid "Currency"
|
msgid "Currency"
|
||||||
msgstr "Währung"
|
msgstr "Währung"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.book,currency_digits:"
|
||||||
|
msgid "Currency Digits"
|
||||||
|
msgstr "Nachkommastellen Währung"
|
||||||
|
|
||||||
msgctxt "field:cashbook.book,start_balance:"
|
msgctxt "field:cashbook.book,start_balance:"
|
||||||
msgid "Initial Amount"
|
msgid "Initial Amount"
|
||||||
msgstr "Anfangsbetrag"
|
msgstr "Anfangsbetrag"
|
||||||
|
@ -618,6 +658,10 @@ msgctxt "field:cashbook.line,description:"
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschreibung"
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.line,descr_short:"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
msgctxt "field:cashbook.line,state:"
|
msgctxt "field:cashbook.line,state:"
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
@ -934,10 +978,18 @@ msgctxt "field:cashbook.line.context,date_from:"
|
||||||
msgid "Start Date"
|
msgid "Start Date"
|
||||||
msgstr "Beginndatum"
|
msgstr "Beginndatum"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.line.context,date_from:"
|
||||||
|
msgid "Limits the date range for the displayed entries."
|
||||||
|
msgstr "Begrenzt den Datumsbereich für die angezeigten Einträge."
|
||||||
|
|
||||||
msgctxt "field:cashbook.line.context,date_to:"
|
msgctxt "field:cashbook.line.context,date_to:"
|
||||||
msgid "End Date"
|
msgid "End Date"
|
||||||
msgstr "Endedatum"
|
msgstr "Endedatum"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.line.context,date_to:"
|
||||||
|
msgid "Limits the date range for the displayed entries."
|
||||||
|
msgstr "Begrenzt den Datumsbereich für die angezeigten Einträge."
|
||||||
|
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
# cashbook.configuration #
|
# cashbook.configuration #
|
||||||
|
@ -946,6 +998,10 @@ msgctxt "model:cashbook.configuration,name:"
|
||||||
msgid "Configuration"
|
msgid "Configuration"
|
||||||
msgstr "Konfiguration"
|
msgstr "Konfiguration"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.configuration:"
|
||||||
|
msgid "Enter Booking Wizard"
|
||||||
|
msgstr "Dialog: Buchung eingeben"
|
||||||
|
|
||||||
msgctxt "view:cashbook.configuration:"
|
msgctxt "view:cashbook.configuration:"
|
||||||
msgid "Open Cashbook Wizard"
|
msgid "Open Cashbook Wizard"
|
||||||
msgstr "Dialog: Kassenbuch öffnen"
|
msgstr "Dialog: Kassenbuch öffnen"
|
||||||
|
@ -954,6 +1010,14 @@ msgctxt "view:cashbook.configuration:"
|
||||||
msgid "Cashbook"
|
msgid "Cashbook"
|
||||||
msgstr "Kassenbuch"
|
msgstr "Kassenbuch"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.configuration,defbook:"
|
||||||
|
msgid "Default Cashbook"
|
||||||
|
msgstr "Standardkassenbuch"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.configuration,defbook:"
|
||||||
|
msgid "The default cashbook is selected when you open the booking wizard."
|
||||||
|
msgstr "Das Standardkassenbuch wird beim Öffnen des Buchungswizards ausgewählt."
|
||||||
|
|
||||||
msgctxt "field:cashbook.configuration,date_from:"
|
msgctxt "field:cashbook.configuration,date_from:"
|
||||||
msgid "Start Date"
|
msgid "Start Date"
|
||||||
msgstr "Beginndatum"
|
msgstr "Beginndatum"
|
||||||
|
@ -1026,6 +1090,14 @@ msgctxt "help:cashbook.configuration_user,catnamelong:"
|
||||||
msgid "Shows the long name of the category in the Category field of a cash book line."
|
msgid "Shows the long name of the category in the Category field of a cash book line."
|
||||||
msgstr "Zeigt im Feld 'Kategorie' einer Kassenbuchzeile den langen Namen der Kategorie."
|
msgstr "Zeigt im Feld 'Kategorie' einer Kassenbuchzeile den langen Namen der Kategorie."
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.configuration_user,defbook:"
|
||||||
|
msgid "Default Cashbook"
|
||||||
|
msgstr "Standardkassenbuch"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.configuration_user,defbook:"
|
||||||
|
msgid "The default cashbook is selected when you open the booking wizard."
|
||||||
|
msgstr "Das Standardkassenbuch wird beim Öffnen des Buchungswizards ausgewählt."
|
||||||
|
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# cashbook.recon #
|
# cashbook.recon #
|
||||||
|
@ -1209,3 +1281,103 @@ msgstr "Gesamt"
|
||||||
msgctxt "report:cashbook.reprecon:"
|
msgctxt "report:cashbook.reprecon:"
|
||||||
msgid "Payee"
|
msgid "Payee"
|
||||||
msgstr "Empfänger"
|
msgstr "Empfänger"
|
||||||
|
|
||||||
|
|
||||||
|
###############################
|
||||||
|
# cashbook.enterbooking.start #
|
||||||
|
###############################
|
||||||
|
msgctxt "model:cashbook.enterbooking.start,name:"
|
||||||
|
msgid "Enter Booking"
|
||||||
|
msgstr "Buchung eingeben"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.enterbooking.start:"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,cashbook:"
|
||||||
|
msgid "Cashbook"
|
||||||
|
msgstr "Kassenbuch"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,cashbooks:"
|
||||||
|
msgid "Cashbooks"
|
||||||
|
msgstr "Kassenbücher"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,balance:"
|
||||||
|
msgid "Balance"
|
||||||
|
msgstr "Saldo"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,currency_digits:"
|
||||||
|
msgid "Currency Digits"
|
||||||
|
msgstr "Nachkommastellen Währung"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,currency:"
|
||||||
|
msgid "Currency"
|
||||||
|
msgstr "Währung"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Type"
|
||||||
|
msgstr "Typ"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr "Einnahme"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Revenue Splitbooking"
|
||||||
|
msgstr "Einnahme Splitbuchung"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr "Ausgabe"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Expense Splitbooking"
|
||||||
|
msgstr "Ausgabe Splitbuchung"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Transfer from"
|
||||||
|
msgstr "Umbuchung von"
|
||||||
|
|
||||||
|
msgctxt "selection:cashbook.enterbooking.start,bookingtype:"
|
||||||
|
msgid "Transfer to"
|
||||||
|
msgstr "Umbuchung nach"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,amount:"
|
||||||
|
msgid "Amount"
|
||||||
|
msgstr "Betrag"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,owner_cashbook:"
|
||||||
|
msgid "Owner"
|
||||||
|
msgstr "Eigentümer"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,category:"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Kategorie"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,booktransf:"
|
||||||
|
msgid "Source/Dest"
|
||||||
|
msgstr "Quelle/Ziel"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.enterbooking.start,party:"
|
||||||
|
msgid "Party"
|
||||||
|
msgstr "Partei"
|
||||||
|
|
||||||
|
|
||||||
|
#########################
|
||||||
|
# cashbook.enterbooking #
|
||||||
|
#########################
|
||||||
|
msgctxt "model:cashbook.enterbooking,name:"
|
||||||
|
msgid "Enter Booking"
|
||||||
|
msgstr "Buchung eingeben"
|
||||||
|
|
||||||
|
msgctxt "wizard_button:cashbook.enterbooking,start,end:"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Abbruch"
|
||||||
|
|
||||||
|
msgctxt "wizard_button:cashbook.enterbooking,start,save_:"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Speichern"
|
||||||
|
|
||||||
|
msgctxt "wizard_button:cashbook.enterbooking,start,savenext_:"
|
||||||
|
msgid "Save & Next"
|
||||||
|
msgstr "Speichern & Weiter"
|
||||||
|
|
44
locale/en.po
44
locale/en.po
|
@ -146,6 +146,10 @@ msgctxt "model:ir.message,text:msg_line_invalid_category"
|
||||||
msgid "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
msgid "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
||||||
msgstr "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
msgstr "The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'."
|
||||||
|
|
||||||
|
msgctxt "model:ir.message,text:msg_line_must_positive"
|
||||||
|
msgid "The amount must be positive."
|
||||||
|
msgstr "The amount must be positive."
|
||||||
|
|
||||||
msgctxt "model:res.group,name:group_cashbook"
|
msgctxt "model:res.group,name:group_cashbook"
|
||||||
msgid "Cashbook"
|
msgid "Cashbook"
|
||||||
msgstr "Cashbook"
|
msgstr "Cashbook"
|
||||||
|
@ -294,6 +298,22 @@ msgctxt "model:ir.action.act_window.domain,name:act_line_domain_all"
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "All"
|
msgstr "All"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_tree_domain_in"
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr "Revenue"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_tree_domain_out"
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr "Expense"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_list_domain_in"
|
||||||
|
msgid "Revenue"
|
||||||
|
msgstr "Revenue"
|
||||||
|
|
||||||
|
msgctxt "model:ir.action.act_window.domain,name:act_category_list_domain_out"
|
||||||
|
msgid "Expense"
|
||||||
|
msgstr "Expense"
|
||||||
|
|
||||||
msgctxt "model:ir.model.button,string:line_wfedit_button"
|
msgctxt "model:ir.model.button,string:line_wfedit_button"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
@ -354,6 +374,14 @@ msgctxt "view:cashbook.book:"
|
||||||
msgid "Owner and Authorizeds"
|
msgid "Owner and Authorizeds"
|
||||||
msgstr "Owner and Authorizeds"
|
msgstr "Owner and Authorizeds"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.book:"
|
||||||
|
msgid "General Information"
|
||||||
|
msgstr "General Information"
|
||||||
|
|
||||||
|
msgctxt "view:cashbook.book:"
|
||||||
|
msgid "Balance"
|
||||||
|
msgstr "Balance"
|
||||||
|
|
||||||
msgctxt "view:cashbook.book:"
|
msgctxt "view:cashbook.book:"
|
||||||
msgid "Reconciliations"
|
msgid "Reconciliations"
|
||||||
msgstr "Reconciliations"
|
msgstr "Reconciliations"
|
||||||
|
@ -410,6 +438,10 @@ msgctxt "field:cashbook.book,currency:"
|
||||||
msgid "Currency"
|
msgid "Currency"
|
||||||
msgstr "Currency"
|
msgstr "Currency"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.book,currency_digits:"
|
||||||
|
msgid "Currency Digits"
|
||||||
|
msgstr "Currency Digits"
|
||||||
|
|
||||||
msgctxt "field:cashbook.book,start_balance:"
|
msgctxt "field:cashbook.book,start_balance:"
|
||||||
msgid "Initial Amount"
|
msgid "Initial Amount"
|
||||||
msgstr "Initial Amount"
|
msgstr "Initial Amount"
|
||||||
|
@ -574,6 +606,10 @@ msgctxt "field:cashbook.line,description:"
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
|
msgctxt "field:cashbook.line,descr_short:"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Description"
|
||||||
|
|
||||||
msgctxt "field:cashbook.line,state:"
|
msgctxt "field:cashbook.line,state:"
|
||||||
msgid "State"
|
msgid "State"
|
||||||
msgstr "State"
|
msgstr "State"
|
||||||
|
@ -870,10 +906,18 @@ msgctxt "field:cashbook.line.context,date_from:"
|
||||||
msgid "Start Date"
|
msgid "Start Date"
|
||||||
msgstr "Start Date"
|
msgstr "Start Date"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.line.context,date_from:"
|
||||||
|
msgid "Limits the date range for the displayed entries."
|
||||||
|
msgstr "Limits the date range for the displayed entries."
|
||||||
|
|
||||||
msgctxt "field:cashbook.line.context,date_to:"
|
msgctxt "field:cashbook.line.context,date_to:"
|
||||||
msgid "End Date"
|
msgid "End Date"
|
||||||
msgstr "End Date"
|
msgstr "End Date"
|
||||||
|
|
||||||
|
msgctxt "help:cashbook.line.context,date_to:"
|
||||||
|
msgid "Limits the date range for the displayed entries."
|
||||||
|
msgstr "Limits the date range for the displayed entries."
|
||||||
|
|
||||||
msgctxt "model:cashbook.configuration,name:"
|
msgctxt "model:cashbook.configuration,name:"
|
||||||
msgid "Configuration"
|
msgid "Configuration"
|
||||||
msgstr "Configuration"
|
msgstr "Configuration"
|
||||||
|
|
17
menu.xml
17
menu.xml
|
@ -56,10 +56,23 @@ full copyright notices and license terms. -->
|
||||||
<field name="group" ref="group_cashbook_admin"/>
|
<field name="group" ref="group_cashbook_admin"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
<!-- menu: /Cashbook/Enter Booking -->
|
||||||
|
<menuitem id="menu_enter_booking" action="act_enterbooking_wiz"
|
||||||
|
icon="tryton-add"
|
||||||
|
parent="menu_cashbook" sequence="20"/>
|
||||||
|
<record model="ir.ui.menu-res.group" id="menu_enter_booking-group_cashbook">
|
||||||
|
<field name="menu" ref="menu_enter_booking"/>
|
||||||
|
<field name="group" ref="group_cashbook"/>
|
||||||
|
</record>
|
||||||
|
<record model="ir.ui.menu-res.group" id="menu_enter_booking-group_cashbook_admin">
|
||||||
|
<field name="menu" ref="menu_enter_booking"/>
|
||||||
|
<field name="group" ref="group_cashbook_admin"/>
|
||||||
|
</record>
|
||||||
|
|
||||||
<!-- menu: /Cashbook/Open Cashbook -->
|
<!-- menu: /Cashbook/Open Cashbook -->
|
||||||
<menuitem id="menu_open_lines" action="act_open_lines"
|
<menuitem id="menu_open_lines" action="act_open_lines"
|
||||||
icon="tryton-list"
|
icon="tryton-list"
|
||||||
parent="menu_cashbook" sequence="20"/>
|
parent="menu_cashbook" sequence="30"/>
|
||||||
<record model="ir.ui.menu-res.group" id="menu_open_lines-group_cashbook">
|
<record model="ir.ui.menu-res.group" id="menu_open_lines-group_cashbook">
|
||||||
<field name="menu" ref="menu_open_lines"/>
|
<field name="menu" ref="menu_open_lines"/>
|
||||||
<field name="group" ref="group_cashbook"/>
|
<field name="group" ref="group_cashbook"/>
|
||||||
|
@ -72,7 +85,7 @@ full copyright notices and license terms. -->
|
||||||
<!-- menu: /Cashbook/Cashbook -->
|
<!-- menu: /Cashbook/Cashbook -->
|
||||||
<menuitem id="menu_booklist" action="act_book_view"
|
<menuitem id="menu_booklist" action="act_book_view"
|
||||||
icon="tryton-list"
|
icon="tryton-list"
|
||||||
parent="menu_cashbook" sequence="30"/>
|
parent="menu_cashbook" sequence="40"/>
|
||||||
<record model="ir.ui.menu-res.group" id="menu_booklist-group_cashbook">
|
<record model="ir.ui.menu-res.group" id="menu_booklist-group_cashbook">
|
||||||
<field name="menu" ref="menu_booklist"/>
|
<field name="menu" ref="menu_booklist"/>
|
||||||
<field name="group" ref="group_cashbook"/>
|
<field name="group" ref="group_cashbook"/>
|
||||||
|
|
|
@ -113,6 +113,9 @@ full copyright notices and license terms. -->
|
||||||
<record model="ir.message" id="msg_line_invalid_category">
|
<record model="ir.message" id="msg_line_invalid_category">
|
||||||
<field name="text">The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'.</field>
|
<field name="text">The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'.</field>
|
||||||
</record>
|
</record>
|
||||||
|
<record model="ir.message" id="msg_line_must_positive">
|
||||||
|
<field name="text">The amount must be positive.</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
</data>
|
</data>
|
||||||
</tryton>
|
</tryton>
|
||||||
|
|
|
@ -96,7 +96,7 @@ class Reconciliation(Workflow, ModelSQL, ModelView):
|
||||||
@classmethod
|
@classmethod
|
||||||
def __setup__(cls):
|
def __setup__(cls):
|
||||||
super(Reconciliation, cls).__setup__()
|
super(Reconciliation, cls).__setup__()
|
||||||
cls._order.insert(0, ('date_from', 'ASC'))
|
cls._order.insert(0, ('date_from', 'DESC'))
|
||||||
cls._transitions |= set((
|
cls._transitions |= set((
|
||||||
('edit', 'check'),
|
('edit', 'check'),
|
||||||
('check', 'done'),
|
('check', 'done'),
|
||||||
|
|
|
@ -11,11 +11,14 @@ from trytond.modules.cashbook.tests.test_splitline import SplitLineTestCase
|
||||||
from trytond.modules.cashbook.tests.test_config import ConfigTestCase
|
from trytond.modules.cashbook.tests.test_config import ConfigTestCase
|
||||||
from trytond.modules.cashbook.tests.test_category import CategoryTestCase
|
from trytond.modules.cashbook.tests.test_category import CategoryTestCase
|
||||||
from trytond.modules.cashbook.tests.test_reconciliation import ReconTestCase
|
from trytond.modules.cashbook.tests.test_reconciliation import ReconTestCase
|
||||||
|
from trytond.modules.cashbook.tests.test_bookingwiz import BookingWizardTestCase
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['suite']
|
__all__ = ['suite']
|
||||||
|
|
||||||
|
|
||||||
class CashbookTestCase(\
|
class CashbookTestCase(\
|
||||||
|
BookingWizardTestCase,\
|
||||||
ReconTestCase,\
|
ReconTestCase,\
|
||||||
CategoryTestCase,\
|
CategoryTestCase,\
|
||||||
ConfigTestCase,\
|
ConfigTestCase,\
|
||||||
|
|
179
tests/test_bookingwiz.py
Normal file
179
tests/test_bookingwiz.py
Normal file
|
@ -0,0 +1,179 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
|
# The COPYRIGHT file at the top level of this repository contains the
|
||||||
|
# full copyright notices and license terms.
|
||||||
|
|
||||||
|
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
|
||||||
|
from trytond.pool import Pool
|
||||||
|
from trytond.transaction import Transaction
|
||||||
|
from trytond.exceptions import UserError
|
||||||
|
from datetime import date
|
||||||
|
from decimal import Decimal
|
||||||
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
|
|
||||||
|
class BookingWizardTestCase(ModuleTestCase):
|
||||||
|
'Test cashbook booking wizard module'
|
||||||
|
module = 'cashbook'
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_bookwiz_expense(self):
|
||||||
|
""" run booking-wizard to store expense
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
BookingWiz = pool.get('cashbook.enterbooking', type='wizard')
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Category = pool.get('cashbook.category')
|
||||||
|
Party = pool.get('party.party')
|
||||||
|
IrDate = pool.get('ir.date')
|
||||||
|
|
||||||
|
company = self.prep_company()
|
||||||
|
with Transaction().set_context({
|
||||||
|
'company': company.id,
|
||||||
|
}):
|
||||||
|
types = self.prep_type()
|
||||||
|
book, = Book.create([{
|
||||||
|
'name': 'Cash Book',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': company.currency.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 1, 1),
|
||||||
|
'start_balance': Decimal('0.0'),
|
||||||
|
}])
|
||||||
|
|
||||||
|
party, = Party.create([{
|
||||||
|
'name': 'Foodshop Zehlendorf',
|
||||||
|
'addresses':[('create', [{}])],
|
||||||
|
}])
|
||||||
|
|
||||||
|
categories = Category.create([{
|
||||||
|
'name':'Income',
|
||||||
|
'cattype': 'in',
|
||||||
|
}, {
|
||||||
|
'name': 'Food',
|
||||||
|
'cattype': 'out',
|
||||||
|
}])
|
||||||
|
|
||||||
|
(sess_id, start_state, end_state) = BookingWiz.create()
|
||||||
|
w_obj = BookingWiz(sess_id)
|
||||||
|
self.assertEqual(start_state, 'start')
|
||||||
|
self.assertEqual(end_state, 'end')
|
||||||
|
|
||||||
|
result = BookingWiz.execute(sess_id, {}, start_state)
|
||||||
|
self.assertEqual(list(result.keys()), ['view'])
|
||||||
|
self.assertEqual(result['view']['defaults']['bookingtype'], 'out')
|
||||||
|
self.assertEqual(result['view']['defaults']['cashbook'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['amount'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['party'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['booktransf'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['description'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['category'], None)
|
||||||
|
|
||||||
|
self.assertEqual(len(book.lines), 0)
|
||||||
|
|
||||||
|
r1 = {
|
||||||
|
'amount': Decimal('10.0'),
|
||||||
|
'cashbook': book.id,
|
||||||
|
'party': party.id,
|
||||||
|
'description': 'Test 1',
|
||||||
|
'category': categories[1].id,
|
||||||
|
'bookingtype': 'out',
|
||||||
|
}
|
||||||
|
for x in r1.keys():
|
||||||
|
setattr(w_obj.start, x, r1[x])
|
||||||
|
|
||||||
|
IrDate.today = MagicMock(return_value=date(2022, 5, 1))
|
||||||
|
result = BookingWiz.execute(sess_id, {'start': r1}, 'save_')
|
||||||
|
BookingWiz.delete(sess_id)
|
||||||
|
IrDate.today = MagicMock(return_value=date.today())
|
||||||
|
|
||||||
|
self.assertEqual(len(book.lines), 1)
|
||||||
|
self.assertEqual(book.lines[0].rec_name, '05/01/2022|Exp|-10.00 usd|Test 1 [Food]')
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_bookwiz_transfer(self):
|
||||||
|
""" run booking-wizard to store expense
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
BookingWiz = pool.get('cashbook.enterbooking', type='wizard')
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Category = pool.get('cashbook.category')
|
||||||
|
Party = pool.get('party.party')
|
||||||
|
IrDate = pool.get('ir.date')
|
||||||
|
|
||||||
|
company = self.prep_company()
|
||||||
|
with Transaction().set_context({
|
||||||
|
'company': company.id,
|
||||||
|
}):
|
||||||
|
types = self.prep_type()
|
||||||
|
books = Book.create([{
|
||||||
|
'name': 'Cash Book',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': company.currency.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 1, 1),
|
||||||
|
'start_balance': Decimal('0.0'),
|
||||||
|
}, {
|
||||||
|
'name': 'Bank',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': company.currency.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 1, 1),
|
||||||
|
'start_balance': Decimal('0.0'),
|
||||||
|
}])
|
||||||
|
|
||||||
|
party, = Party.create([{
|
||||||
|
'name': 'Foodshop Zehlendorf',
|
||||||
|
'addresses':[('create', [{}])],
|
||||||
|
}])
|
||||||
|
|
||||||
|
categories = Category.create([{
|
||||||
|
'name':'Income',
|
||||||
|
'cattype': 'in',
|
||||||
|
}, {
|
||||||
|
'name': 'Food',
|
||||||
|
'cattype': 'out',
|
||||||
|
}])
|
||||||
|
|
||||||
|
(sess_id, start_state, end_state) = BookingWiz.create()
|
||||||
|
w_obj = BookingWiz(sess_id)
|
||||||
|
self.assertEqual(start_state, 'start')
|
||||||
|
self.assertEqual(end_state, 'end')
|
||||||
|
|
||||||
|
result = BookingWiz.execute(sess_id, {}, start_state)
|
||||||
|
self.assertEqual(list(result.keys()), ['view'])
|
||||||
|
self.assertEqual(result['view']['defaults']['bookingtype'], 'out')
|
||||||
|
self.assertEqual(result['view']['defaults']['cashbook'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['amount'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['party'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['booktransf'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['description'], None)
|
||||||
|
self.assertEqual(result['view']['defaults']['category'], None)
|
||||||
|
|
||||||
|
self.assertEqual(len(books[0].lines), 0)
|
||||||
|
self.assertEqual(len(books[1].lines), 0)
|
||||||
|
|
||||||
|
r1 = {
|
||||||
|
'amount': Decimal('10.0'),
|
||||||
|
'cashbook': books[0].id,
|
||||||
|
'description': 'Test 1',
|
||||||
|
'booktransf': books[1].id,
|
||||||
|
'bookingtype': 'mvout',
|
||||||
|
}
|
||||||
|
for x in r1.keys():
|
||||||
|
setattr(w_obj.start, x, r1[x])
|
||||||
|
|
||||||
|
IrDate.today = MagicMock(return_value=date(2022, 5, 1))
|
||||||
|
result = BookingWiz.execute(sess_id, {'start': r1}, 'save_')
|
||||||
|
BookingWiz.delete(sess_id)
|
||||||
|
IrDate.today = MagicMock(return_value=date.today())
|
||||||
|
|
||||||
|
self.assertEqual(len(books[0].lines), 1)
|
||||||
|
self.assertEqual(len(books[1].lines), 0)
|
||||||
|
self.assertEqual(books[0].lines[0].rec_name,
|
||||||
|
'05/01/2022|to|-10.00 usd|Test 1 [Bank | 0.00 usd | Open]')
|
||||||
|
|
||||||
|
# end BookingWizardTestCase
|
|
@ -28,6 +28,72 @@ class CategoryTestCase(ModuleTestCase):
|
||||||
}])
|
}])
|
||||||
return category
|
return category
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_category_check_rec_name(self):
|
||||||
|
""" create category, test rec_name, search, order
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Category = pool.get('cashbook.category')
|
||||||
|
company = self.prep_company()
|
||||||
|
|
||||||
|
Category.create([{
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 1',
|
||||||
|
'cattype': 'in',
|
||||||
|
'childs': [('create', [{
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 2a',
|
||||||
|
'cattype': 'in',
|
||||||
|
}, {
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 2b',
|
||||||
|
'cattype': 'in',
|
||||||
|
}])],
|
||||||
|
}, {
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 1b',
|
||||||
|
'cattype': 'in',
|
||||||
|
'childs': [('create', [{
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 1b.2a',
|
||||||
|
'cattype': 'in',
|
||||||
|
}, {
|
||||||
|
'company': company.id,
|
||||||
|
'name': 'Level 1b.2b',
|
||||||
|
'cattype': 'in',
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
|
||||||
|
self.assertEqual(Category.search_count([
|
||||||
|
('rec_name', 'ilike', '%1b.2b%'),
|
||||||
|
]), 1)
|
||||||
|
self.assertEqual(Category.search_count([
|
||||||
|
('rec_name', 'ilike', '%1b.2%'),
|
||||||
|
]), 2)
|
||||||
|
self.assertEqual(Category.search_count([
|
||||||
|
('rec_name', '=', 'Level 1b/Level 1b.2b'),
|
||||||
|
]), 1)
|
||||||
|
|
||||||
|
# ordering #1
|
||||||
|
categories = Category.search([], order=[('rec_name', 'ASC')])
|
||||||
|
self.assertEqual(len(categories), 6)
|
||||||
|
self.assertEqual(categories[0].rec_name, 'Level 1')
|
||||||
|
self.assertEqual(categories[1].rec_name, 'Level 1b')
|
||||||
|
self.assertEqual(categories[2].rec_name, 'Level 1b/Level 1b.2a')
|
||||||
|
self.assertEqual(categories[3].rec_name, 'Level 1b/Level 1b.2b')
|
||||||
|
self.assertEqual(categories[4].rec_name, 'Level 1/Level 2a')
|
||||||
|
self.assertEqual(categories[5].rec_name, 'Level 1/Level 2b')
|
||||||
|
|
||||||
|
# ordering #2
|
||||||
|
categories = Category.search([], order=[('rec_name', 'DESC')])
|
||||||
|
self.assertEqual(len(categories), 6)
|
||||||
|
self.assertEqual(categories[0].rec_name, 'Level 1/Level 2b')
|
||||||
|
self.assertEqual(categories[1].rec_name, 'Level 1/Level 2a')
|
||||||
|
self.assertEqual(categories[2].rec_name, 'Level 1b/Level 1b.2b')
|
||||||
|
self.assertEqual(categories[3].rec_name, 'Level 1b/Level 1b.2a')
|
||||||
|
self.assertEqual(categories[4].rec_name, 'Level 1b')
|
||||||
|
self.assertEqual(categories[5].rec_name, 'Level 1')
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_category_create_check_category_type(self):
|
def test_category_create_check_category_type(self):
|
||||||
""" create category, update type of category
|
""" create category, update type of category
|
||||||
|
@ -90,6 +156,7 @@ class CategoryTestCase(ModuleTestCase):
|
||||||
cat1, = Category.create([{
|
cat1, = Category.create([{
|
||||||
'name': 'Test 1',
|
'name': 'Test 1',
|
||||||
'description': 'Info',
|
'description': 'Info',
|
||||||
|
'cattype': 'in',
|
||||||
}])
|
}])
|
||||||
self.assertEqual(cat1.name, 'Test 1')
|
self.assertEqual(cat1.name, 'Test 1')
|
||||||
self.assertEqual(cat1.rec_name, 'Test 1')
|
self.assertEqual(cat1.rec_name, 'Test 1')
|
||||||
|
@ -97,10 +164,11 @@ class CategoryTestCase(ModuleTestCase):
|
||||||
self.assertEqual(cat1.company.rec_name, 'm-ds')
|
self.assertEqual(cat1.company.rec_name, 'm-ds')
|
||||||
self.assertEqual(cat1.parent, None)
|
self.assertEqual(cat1.parent, None)
|
||||||
|
|
||||||
# duplicate, allowed
|
# duplicate of different type, allowed
|
||||||
cat2, = Category.create([{
|
cat2, = Category.create([{
|
||||||
'name': 'Test 1',
|
'name': 'Test 1',
|
||||||
'description': 'Info',
|
'description': 'Info',
|
||||||
|
'cattype': 'out',
|
||||||
}])
|
}])
|
||||||
self.assertEqual(cat2.name, 'Test 1')
|
self.assertEqual(cat2.name, 'Test 1')
|
||||||
self.assertEqual(cat2.rec_name, 'Test 1')
|
self.assertEqual(cat2.rec_name, 'Test 1')
|
||||||
|
@ -108,6 +176,16 @@ class CategoryTestCase(ModuleTestCase):
|
||||||
self.assertEqual(cat2.company.rec_name, 'm-ds')
|
self.assertEqual(cat2.company.rec_name, 'm-ds')
|
||||||
self.assertEqual(cat2.parent, None)
|
self.assertEqual(cat2.parent, None)
|
||||||
|
|
||||||
|
# deny duplicate of same type
|
||||||
|
self.assertRaisesRegex(UserError,
|
||||||
|
'The category name already exists at this level.',
|
||||||
|
Category.create,
|
||||||
|
[{
|
||||||
|
'name': 'Test 1',
|
||||||
|
'description': 'Info',
|
||||||
|
'cattype': 'in',
|
||||||
|
}])
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_category_create_nodupl_diff_level(self):
|
def test_category_create_nodupl_diff_level(self):
|
||||||
""" create category
|
""" create category
|
||||||
|
|
|
@ -42,6 +42,7 @@ class ConfigTestCase(ModuleTestCase):
|
||||||
self.assertEqual(cfg2.checked, True)
|
self.assertEqual(cfg2.checked, True)
|
||||||
self.assertEqual(cfg2.done, False)
|
self.assertEqual(cfg2.done, False)
|
||||||
self.assertEqual(cfg2.catnamelong, True)
|
self.assertEqual(cfg2.catnamelong, True)
|
||||||
|
self.assertEqual(cfg2.defbook, None)
|
||||||
return cfg2
|
return cfg2
|
||||||
|
|
||||||
def prep_party(self, name='Party'):
|
def prep_party(self, name='Party'):
|
||||||
|
@ -105,6 +106,37 @@ class ConfigTestCase(ModuleTestCase):
|
||||||
"""
|
"""
|
||||||
self.prep_config()
|
self.prep_config()
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_config_defbook(self):
|
||||||
|
""" create config, add default-cashbook
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Configuration = pool.get('cashbook.configuration')
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
|
||||||
|
self.prep_config()
|
||||||
|
types = self.prep_type()
|
||||||
|
company = self.prep_company()
|
||||||
|
book, = Book.create([{
|
||||||
|
'name': 'Book 1',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': company.currency.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
}])
|
||||||
|
self.assertEqual(book.name, 'Book 1')
|
||||||
|
|
||||||
|
cfg1 = Configuration.get_singleton()
|
||||||
|
|
||||||
|
Configuration.write(*[
|
||||||
|
[cfg1],
|
||||||
|
{
|
||||||
|
'defbook': book.id,
|
||||||
|
}])
|
||||||
|
|
||||||
|
cfg2 = Configuration.get_singleton()
|
||||||
|
self.assertEqual(cfg2.defbook.rec_name, 'Book 1 | 0.00 usd | Open')
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_config_create_multi_user(self):
|
def test_config_create_multi_user(self):
|
||||||
""" create config, multi-user
|
""" create config, multi-user
|
||||||
|
|
|
@ -366,6 +366,93 @@ class LineTestCase(ModuleTestCase):
|
||||||
self.assertEqual(book.lines[3].reconciliation, None)
|
self.assertEqual(book.lines[3].reconciliation, None)
|
||||||
self.assertEqual(book.lines[3].state, 'edit')
|
self.assertEqual(book.lines[3].state, 'edit')
|
||||||
|
|
||||||
|
@with_transaction()
|
||||||
|
def test_line_set_number_with_done(self):
|
||||||
|
""" create cashbook + line, write number to line
|
||||||
|
at state-change check->done
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Book = pool.get('cashbook.book')
|
||||||
|
Lines = pool.get('cashbook.line')
|
||||||
|
Reconciliation = pool.get('cashbook.recon')
|
||||||
|
|
||||||
|
types = self.prep_type()
|
||||||
|
category = self.prep_category(cattype='in')
|
||||||
|
company = self.prep_company()
|
||||||
|
party = self.prep_party()
|
||||||
|
with Transaction().set_context({
|
||||||
|
'company': company.id,
|
||||||
|
}):
|
||||||
|
book, = Book.create([{
|
||||||
|
'name': 'Book 1',
|
||||||
|
'btype': types.id,
|
||||||
|
'company': company.id,
|
||||||
|
'currency': company.currency.id,
|
||||||
|
'number_sequ': self.prep_sequence().id,
|
||||||
|
'start_date': date(2022, 5, 1),
|
||||||
|
'number_atcheck': False,
|
||||||
|
'lines': [('create', [{
|
||||||
|
'date': date(2022, 5, 1),
|
||||||
|
'description': 'Text 1',
|
||||||
|
'category': category.id,
|
||||||
|
'bookingtype': 'in',
|
||||||
|
'amount': Decimal('1.0'),
|
||||||
|
'party': party.id,
|
||||||
|
}, {
|
||||||
|
'date': date(2022, 5, 2),
|
||||||
|
'description': 'Text 2',
|
||||||
|
'category': category.id,
|
||||||
|
'bookingtype': 'in',
|
||||||
|
'amount': Decimal('1.0'),
|
||||||
|
'party': party.id,
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
self.assertEqual(book.name, 'Book 1')
|
||||||
|
self.assertEqual(book.btype.rec_name, 'CAS - Cash')
|
||||||
|
self.assertEqual(book.state, 'open')
|
||||||
|
self.assertEqual(book.number_atcheck, False)
|
||||||
|
self.assertEqual(len(book.lines), 2)
|
||||||
|
self.assertEqual(book.lines[0].date, date(2022, 5, 1))
|
||||||
|
self.assertEqual(book.lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
||||||
|
self.assertEqual(book.lines[0].state_cashbook, 'open')
|
||||||
|
self.assertEqual(book.lines[1].date, date(2022, 5, 2))
|
||||||
|
self.assertEqual(book.lines[1].rec_name, '05/02/2022|Rev|1.00 usd|Text 2 [Cat1]')
|
||||||
|
|
||||||
|
# add reconciliation
|
||||||
|
Book.write(*[
|
||||||
|
[book],
|
||||||
|
{
|
||||||
|
'reconciliations': [('create', [{
|
||||||
|
'date': date(2022, 5, 1),
|
||||||
|
'date_from': date(2022, 5, 1),
|
||||||
|
'date_to': date(2022, 5, 30),
|
||||||
|
}])],
|
||||||
|
}])
|
||||||
|
self.assertEqual(len(book.reconciliations), 1)
|
||||||
|
self.assertEqual(len(book.reconciliations[0].lines), 0)
|
||||||
|
self.assertEqual(book.reconciliations[0].date_from, date(2022, 5, 1))
|
||||||
|
self.assertEqual(book.reconciliations[0].date_to, date(2022, 5, 30))
|
||||||
|
self.assertEqual(book.reconciliations[0].state, 'edit')
|
||||||
|
|
||||||
|
Lines.wfcheck(book.lines)
|
||||||
|
self.assertEqual(book.lines[0].state, 'check')
|
||||||
|
self.assertEqual(book.lines[0].number, None)
|
||||||
|
self.assertEqual(book.lines[1].state, 'check')
|
||||||
|
self.assertEqual(book.lines[1].number, None)
|
||||||
|
|
||||||
|
Reconciliation.wfcheck(book.reconciliations)
|
||||||
|
self.assertEqual(len(book.reconciliations[0].lines), 2)
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[1].rec_name, '05/02/2022|Rev|1.00 usd|Text 2 [Cat1]')
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[0].number, None)
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[1].number, None)
|
||||||
|
|
||||||
|
Reconciliation.wfdone(book.reconciliations)
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[0].number, '1')
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[0].state, 'done')
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[1].number, '2')
|
||||||
|
self.assertEqual(book.reconciliations[0].lines[1].state, 'done')
|
||||||
|
|
||||||
@with_transaction()
|
@with_transaction()
|
||||||
def test_line_create_check_names_search(self):
|
def test_line_create_check_names_search(self):
|
||||||
""" create cashbook + line
|
""" create cashbook + line
|
||||||
|
|
|
@ -49,14 +49,14 @@ class ReconTestCase(ModuleTestCase):
|
||||||
'date_to': date(2022, 6, 30),
|
'date_to': date(2022, 6, 30),
|
||||||
}])],
|
}])],
|
||||||
}])
|
}])
|
||||||
self.assertEqual(book.reconciliations[0].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[0].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
self.assertEqual(book.reconciliations[1].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[1].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
|
|
||||||
self.assertRaisesRegex(UserError,
|
self.assertRaisesRegex(UserError,
|
||||||
'The date range overlaps with another reconciliation.',
|
'The date range overlaps with another reconciliation.',
|
||||||
Reconciliation.write,
|
Reconciliation.write,
|
||||||
*[
|
*[
|
||||||
[book.reconciliations[1]],
|
[book.reconciliations[0]],
|
||||||
{
|
{
|
||||||
'date_from': date(2022, 4, 15),
|
'date_from': date(2022, 4, 15),
|
||||||
'date_to': date(2022, 5, 2),
|
'date_to': date(2022, 5, 2),
|
||||||
|
@ -97,14 +97,14 @@ class ReconTestCase(ModuleTestCase):
|
||||||
'date_to': date(2022, 6, 30),
|
'date_to': date(2022, 6, 30),
|
||||||
}])],
|
}])],
|
||||||
}])
|
}])
|
||||||
self.assertEqual(book.reconciliations[0].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[0].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
self.assertEqual(book.reconciliations[1].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[1].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
|
|
||||||
self.assertRaisesRegex(UserError,
|
self.assertRaisesRegex(UserError,
|
||||||
'The date range overlaps with another reconciliation.',
|
'The date range overlaps with another reconciliation.',
|
||||||
Reconciliation.write,
|
Reconciliation.write,
|
||||||
*[
|
*[
|
||||||
[book.reconciliations[1]],
|
[book.reconciliations[0]],
|
||||||
{
|
{
|
||||||
'date_from': date(2022, 5, 30),
|
'date_from': date(2022, 5, 30),
|
||||||
},
|
},
|
||||||
|
@ -144,14 +144,14 @@ class ReconTestCase(ModuleTestCase):
|
||||||
'date_to': date(2022, 6, 30),
|
'date_to': date(2022, 6, 30),
|
||||||
}])],
|
}])],
|
||||||
}])
|
}])
|
||||||
self.assertEqual(book.reconciliations[0].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[0].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
self.assertEqual(book.reconciliations[1].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[1].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
|
|
||||||
self.assertRaisesRegex(UserError,
|
self.assertRaisesRegex(UserError,
|
||||||
'The date range overlaps with another reconciliation.',
|
'The date range overlaps with another reconciliation.',
|
||||||
Reconciliation.write,
|
Reconciliation.write,
|
||||||
*[
|
*[
|
||||||
[book.reconciliations[1]],
|
[book.reconciliations[0]],
|
||||||
{
|
{
|
||||||
'date_from': date(2022, 5, 5),
|
'date_from': date(2022, 5, 5),
|
||||||
'date_to': date(2022, 5, 15),
|
'date_to': date(2022, 5, 15),
|
||||||
|
@ -192,8 +192,8 @@ class ReconTestCase(ModuleTestCase):
|
||||||
'date_to': date(2022, 6, 30),
|
'date_to': date(2022, 6, 30),
|
||||||
}])],
|
}])],
|
||||||
}])
|
}])
|
||||||
self.assertEqual(book.reconciliations[0].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[0].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
self.assertEqual(book.reconciliations[1].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
self.assertEqual(book.reconciliations[1].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
|
|
||||||
self.assertRaisesRegex(UserError,
|
self.assertRaisesRegex(UserError,
|
||||||
'The date range overlaps with another reconciliation.',
|
'The date range overlaps with another reconciliation.',
|
||||||
|
@ -536,9 +536,11 @@ class ReconTestCase(ModuleTestCase):
|
||||||
self.assertEqual(len(book.reconciliations[0].lines), 1)
|
self.assertEqual(len(book.reconciliations[0].lines), 1)
|
||||||
self.assertEqual(book.reconciliations[0].lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
self.assertEqual(book.reconciliations[0].lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
||||||
self.assertEqual(book.lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
self.assertEqual(book.lines[0].rec_name, '05/01/2022|Rev|1.00 usd|Text 1 [Cat1]')
|
||||||
|
self.assertEqual(book.lines[0].state, 'check')
|
||||||
self.assertEqual(book.lines[1].rec_name, '06/01/2022|Rev|1.00 usd|Text 2 [Cat1]')
|
self.assertEqual(book.lines[1].rec_name, '06/01/2022|Rev|1.00 usd|Text 2 [Cat1]')
|
||||||
|
self.assertEqual(book.lines[1].state, 'edit')
|
||||||
|
|
||||||
# move 2nd line into date-range of checked-reconciliation, wf-check
|
# move 1st line into date-range of checked-reconciliation, wf-check
|
||||||
Lines.write(*[
|
Lines.write(*[
|
||||||
[book.lines[1]],
|
[book.lines[1]],
|
||||||
{
|
{
|
||||||
|
@ -570,7 +572,9 @@ class ReconTestCase(ModuleTestCase):
|
||||||
'date_from': date(2022, 5, 31),
|
'date_from': date(2022, 5, 31),
|
||||||
'date_to': date(2022, 6, 30),
|
'date_to': date(2022, 6, 30),
|
||||||
}])
|
}])
|
||||||
Reconciliation.wfdone([book.reconciliations[0]])
|
self.assertEqual(book.reconciliations[0].rec_name, '05/31/2022 - 06/30/2022 | 0.00 usd - 0.00 usd [0]')
|
||||||
|
self.assertEqual(book.reconciliations[1].rec_name, '05/01/2022 - 05/31/2022 | 0.00 usd - 1.00 usd [1]')
|
||||||
|
Reconciliation.wfdone([book.reconciliations[1]])
|
||||||
Reconciliation.wfcheck([recon2])
|
Reconciliation.wfcheck([recon2])
|
||||||
|
|
||||||
Lines.write(*[
|
Lines.write(*[
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=6.0.0
|
version=6.0.7
|
||||||
depends:
|
depends:
|
||||||
res
|
res
|
||||||
currency
|
currency
|
||||||
|
@ -19,4 +19,5 @@ xml:
|
||||||
splitline.xml
|
splitline.xml
|
||||||
wizard_openline.xml
|
wizard_openline.xml
|
||||||
wizard_runreport.xml
|
wizard_runreport.xml
|
||||||
|
wizard_booking.xml
|
||||||
menu.xml
|
menu.xml
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
The COPYRIGHT file at the top level of this repository contains the
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
full copyright notices and license terms. -->
|
full copyright notices and license terms. -->
|
||||||
<form col="6">
|
<form col="4">
|
||||||
<label name="name"/>
|
<label name="name" xexpand="0"/>
|
||||||
<field name="name" colspan="3"/>
|
<field name="name" colspan="2"/>
|
||||||
<group id="grpst" colspan="2" col="3">
|
<group id="grpst" col="3">
|
||||||
<label name="state"/>
|
<label name="state"/>
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
<group id="grpstate" col="3">
|
<group id="grpstate" col="3">
|
||||||
|
@ -15,33 +15,32 @@ full copyright notices and license terms. -->
|
||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
|
|
||||||
<label name="number_sequ"/>
|
|
||||||
<field name="number_sequ"/>
|
|
||||||
<label name="number_atcheck"/>
|
|
||||||
<field name="number_atcheck"/>
|
|
||||||
<newline/>
|
|
||||||
|
|
||||||
<label name="btype"/>
|
|
||||||
<field name="btype"/>
|
|
||||||
<label name="currency"/>
|
|
||||||
<field name="currency"/>
|
|
||||||
<newline/>
|
|
||||||
<label id="phaccount" colspan="2" string=" "/>
|
|
||||||
<newline/>
|
|
||||||
|
|
||||||
<label name="start_balance"/>
|
|
||||||
<field name="start_balance"/>
|
|
||||||
<label name="balance"/>
|
<label name="balance"/>
|
||||||
<field name="balance"/>
|
<field name="balance"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<label name="start_date"/>
|
|
||||||
<field name="start_date"/>
|
|
||||||
<newline/>
|
|
||||||
|
|
||||||
<notebook colspan="6">
|
<notebook colspan="4">
|
||||||
<page id="pgrecon" string="Reconciliations" col="1">
|
<page id="pgrecon" string="Reconciliations" col="1">
|
||||||
<field name="reconciliations"/>
|
<field name="reconciliations"/>
|
||||||
</page>
|
</page>
|
||||||
|
<page id="pggeneral" string="General Information" col="4">
|
||||||
|
<label name="number_sequ"/>
|
||||||
|
<field name="number_sequ"/>
|
||||||
|
<label name="number_atcheck"/>
|
||||||
|
<field name="number_atcheck"/>
|
||||||
|
|
||||||
|
<label name="btype"/>
|
||||||
|
<field name="btype"/>
|
||||||
|
<label name="currency"/>
|
||||||
|
<field name="currency"/>
|
||||||
|
|
||||||
|
<label name="start_balance"/>
|
||||||
|
<field name="start_balance"/>
|
||||||
|
<label name="start_date"/>
|
||||||
|
<field name="start_date"/>
|
||||||
|
|
||||||
|
<label id="phaccount" colspan="2" string=" "/>
|
||||||
|
</page>
|
||||||
<page id="pgperm" string="Owner and Authorizeds" col="4">
|
<page id="pgperm" string="Owner and Authorizeds" col="4">
|
||||||
<label name="owner"/>
|
<label name="owner"/>
|
||||||
<field name="owner"/>
|
<field name="owner"/>
|
||||||
|
|
|
@ -6,12 +6,8 @@ full copyright notices and license terms. -->
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="btype"/>
|
<field name="btype"/>
|
||||||
<field name="start_balance"/>
|
<field name="start_balance"/>
|
||||||
<field name="balance"/>
|
<field name="balance" sum="Balance"/>
|
||||||
<field name="currency"/>
|
<field name="currency"/>
|
||||||
<field name="owner"/>
|
<field name="owner"/>
|
||||||
<field name="reviewer"/>
|
|
||||||
<field name="observer"/>
|
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
<button name="wfopen"/>
|
|
||||||
<button name="wfclosed"/>
|
|
||||||
</tree>
|
</tree>
|
||||||
|
|
|
@ -2,17 +2,17 @@
|
||||||
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
The COPYRIGHT file at the top level of this repository contains the
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
full copyright notices and license terms. -->
|
full copyright notices and license terms. -->
|
||||||
<form col="10">
|
<form col="6">
|
||||||
<label name="cashbook"/>
|
<label name="cashbook"/>
|
||||||
<field name="cashbook" widget="selection"/>
|
<field name="cashbook" widget="selection" colspan="3"/>
|
||||||
|
|
||||||
|
<label name="checked"/>
|
||||||
|
<field name="checked"/>
|
||||||
|
|
||||||
<label name="date_from"/>
|
<label name="date_from"/>
|
||||||
<field name="date_from"/>
|
<field name="date_from"/>
|
||||||
<label name="date_to"/>
|
<label name="date_to"/>
|
||||||
<field name="date_to"/>
|
<field name="date_to"/>
|
||||||
|
|
||||||
<label name="checked"/>
|
|
||||||
<field name="checked"/>
|
|
||||||
<label name="done"/>
|
<label name="done"/>
|
||||||
<field name="done"/>
|
<field name="done"/>
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,7 @@ full copyright notices and license terms. -->
|
||||||
<field name="company"/>
|
<field name="company"/>
|
||||||
<label name="parent"/>
|
<label name="parent"/>
|
||||||
<field name="parent"/>
|
<field name="parent"/>
|
||||||
<label name="sequence"/>
|
<newline/>
|
||||||
<field name="sequence"/>
|
|
||||||
<field name="childs" colspan="6"/>
|
<field name="childs" colspan="6"/>
|
||||||
</page>
|
</page>
|
||||||
</notebook>
|
</notebook>
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
The COPYRIGHT file at the top level of this repository contains the
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
full copyright notices and license terms. -->
|
full copyright notices and license terms. -->
|
||||||
<tree sequence="sequence">
|
<tree>
|
||||||
<field name="rec_name"/>
|
<field name="rec_name"/>
|
||||||
<field name="cattype"/>
|
|
||||||
<field name="sequence" tree_invisible="1"/>
|
|
||||||
</tree>
|
</tree>
|
||||||
|
|
|
@ -2,10 +2,8 @@
|
||||||
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
The COPYRIGHT file at the top level of this repository contains the
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
full copyright notices and license terms. -->
|
full copyright notices and license terms. -->
|
||||||
<tree sequence="sequence">
|
<tree >
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="cattype"/>
|
|
||||||
<field name="sequence" tree_invisible="1"/>
|
|
||||||
<field name="parent" tree_invisible="1"/>
|
<field name="parent" tree_invisible="1"/>
|
||||||
<field name="childs" tree_invisible="1"/>
|
<field name="childs" tree_invisible="1"/>
|
||||||
</tree>
|
</tree>
|
||||||
|
|
|
@ -12,6 +12,10 @@ this repository contains the full copyright notices and license terms. -->
|
||||||
<label name="done"/>
|
<label name="done"/>
|
||||||
<field name="done"/>
|
<field name="done"/>
|
||||||
|
|
||||||
|
<separator id="sepenterbook" colspan="4" string="Enter Booking Wizard"/>
|
||||||
|
<label name="defbook"/>
|
||||||
|
<field name="defbook"/>
|
||||||
|
|
||||||
<separator id="sepcb" colspan="4" string="Cashbook"/>
|
<separator id="sepcb" colspan="4" string="Cashbook"/>
|
||||||
<label name="catnamelong"/>
|
<label name="catnamelong"/>
|
||||||
<field name="catnamelong"/>
|
<field name="catnamelong"/>
|
||||||
|
|
31
view/enterbooking_start_form.xml
Normal file
31
view/enterbooking_start_form.xml
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
|
full copyright notices and license terms. -->
|
||||||
|
<form col="2">
|
||||||
|
<label name="cashbook"/>
|
||||||
|
<field name="cashbook" widget="selection"/>
|
||||||
|
<label name="balance"/>
|
||||||
|
<field name="balance" symbol="currency"/>
|
||||||
|
|
||||||
|
<label name="bookingtype"/>
|
||||||
|
<field name="bookingtype"/>
|
||||||
|
<label name="amount"/>
|
||||||
|
<field name="amount" symbol="currency"/>
|
||||||
|
<label name="category"/>
|
||||||
|
<field name="category"/>
|
||||||
|
<label name="booktransf"/>
|
||||||
|
<field name="booktransf"/>
|
||||||
|
<label name="party"/>
|
||||||
|
<field name="party"/>
|
||||||
|
<group name="description" colspan="2" col="1" string="Description">
|
||||||
|
<field name="description"/>
|
||||||
|
</group>
|
||||||
|
|
||||||
|
<field name="cashbooks"/>
|
||||||
|
<field name="currency_digits"/>
|
||||||
|
<field name="currency"/>
|
||||||
|
<field name="owner_cashbook"/>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
|
@ -8,11 +8,10 @@ full copyright notices and license terms. -->
|
||||||
<field name="date"/>
|
<field name="date"/>
|
||||||
<field name="payee"/>
|
<field name="payee"/>
|
||||||
<field name="category_view"/>
|
<field name="category_view"/>
|
||||||
<field name="description" expand="1"/>
|
<field name="descr_short" expand="1"/>
|
||||||
<field name="credit" sum="Credit"/>
|
<field name="credit" sum="Credit"/>
|
||||||
<field name="debit" sum="Debit"/>
|
<field name="debit" sum="Debit"/>
|
||||||
<field name="balance"/>
|
<field name="balance"/>
|
||||||
<field name="currency"/>
|
|
||||||
<field name="state"/>
|
<field name="state"/>
|
||||||
<button name="wfedit"/>
|
<button name="wfedit"/>
|
||||||
<button name="wfcheck"/>
|
<button name="wfcheck"/>
|
||||||
|
|
194
wizard_booking.py
Normal file
194
wizard_booking.py
Normal file
|
@ -0,0 +1,194 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
|
# The COPYRIGHT file at the top level of this repository contains the
|
||||||
|
# full copyright notices and license terms.
|
||||||
|
|
||||||
|
from trytond.model import ModelView, fields
|
||||||
|
from trytond.wizard import Wizard, StateView, StateTransition, Button
|
||||||
|
from trytond.i18n import gettext
|
||||||
|
from trytond.pool import Pool
|
||||||
|
from trytond.transaction import Transaction
|
||||||
|
from trytond.pyson import Eval, Bool, If, And
|
||||||
|
from decimal import Decimal
|
||||||
|
from .line import sel_bookingtype
|
||||||
|
|
||||||
|
sel_booktypewiz = [x for x in sel_bookingtype if not x[0] in ['spin', 'spout']]
|
||||||
|
|
||||||
|
|
||||||
|
class EnterBookingStart(ModelView):
|
||||||
|
'Enter Booking'
|
||||||
|
__name__ = 'cashbook.enterbooking.start'
|
||||||
|
|
||||||
|
cashbook = fields.Many2One(string='Cashbook', model_name='cashbook.book',
|
||||||
|
domain=[('id', 'in', Eval('cashbooks', []))],
|
||||||
|
depends=['cashbooks'], required=True)
|
||||||
|
cashbooks = fields.One2Many(string='Cashbooks', field=None,
|
||||||
|
model_name='cashbook.book', readonly=True,
|
||||||
|
states={'invisible': True})
|
||||||
|
owner_cashbook = fields.Function(fields.Many2One(string='Owner', readonly=True,
|
||||||
|
states={'invisible': True}, model_name='res.user'),
|
||||||
|
'on_change_with_owner_cashbook')
|
||||||
|
balance = fields.Numeric(string='Balance', readonly=True,
|
||||||
|
digits=(16, Eval('currency_digits', 2)),
|
||||||
|
depends=['currency_digits'])
|
||||||
|
currency = fields.Function(fields.Many2One(string='Currency',
|
||||||
|
model_name='currency.currency', states={'invisible': True}),
|
||||||
|
'on_change_with_currency')
|
||||||
|
currency_digits = fields.Function(fields.Integer(string='Currency Digits',
|
||||||
|
readonly=True, states={'invisible': True}),
|
||||||
|
'on_change_with_currency_digits')
|
||||||
|
bookingtype = fields.Selection(string='Type', required=True,
|
||||||
|
selection=sel_booktypewiz)
|
||||||
|
amount = fields.Numeric(string='Amount',
|
||||||
|
depends=['currency_digits', 'bookingtype'],
|
||||||
|
digits=(16, Eval('currency_digits', 2)), required=True,
|
||||||
|
domain=[('amount', '>=', Decimal('0.0'))])
|
||||||
|
description = fields.Text(string='Description')
|
||||||
|
category = fields.Many2One(string='Category',
|
||||||
|
model_name='cashbook.category', depends=['bookingtype'],
|
||||||
|
states={
|
||||||
|
'readonly': Bool(Eval('bookingtype')) == False,
|
||||||
|
'required': Eval('bookingtype', '').in_(['in', 'out']),
|
||||||
|
'invisible': ~Eval('bookingtype', '').in_(['in', 'out']),
|
||||||
|
},
|
||||||
|
domain=[
|
||||||
|
If(
|
||||||
|
Eval('bookingtype', '').in_(['in', 'mvin']),
|
||||||
|
('cattype', '=', 'in'),
|
||||||
|
('cattype', '=', 'out'),
|
||||||
|
)])
|
||||||
|
|
||||||
|
# party or cashbook as counterpart
|
||||||
|
booktransf = fields.Many2One(string='Source/Dest',
|
||||||
|
model_name='cashbook.book',
|
||||||
|
domain=[
|
||||||
|
('owner.id', '=', Eval('owner_cashbook', -1)),
|
||||||
|
('id', '!=', Eval('cashbook', -1)),
|
||||||
|
],
|
||||||
|
states={
|
||||||
|
'invisible': ~Eval('bookingtype', '').in_(['mvin', 'mvout']),
|
||||||
|
'required': Eval('bookingtype', '').in_(['mvin', 'mvout']),
|
||||||
|
}, depends=['bookingtype', 'owner_cashbook', 'cashbook'])
|
||||||
|
party = fields.Many2One(string='Party', model_name='party.party',
|
||||||
|
states={
|
||||||
|
'invisible': ~Eval('bookingtype', '').in_(['in', 'out']),
|
||||||
|
}, depends=['bookingtype'])
|
||||||
|
|
||||||
|
@fields.depends('bookingtype', 'category')
|
||||||
|
def on_change_bookingtype(self):
|
||||||
|
""" clear category if not valid type
|
||||||
|
"""
|
||||||
|
types = {
|
||||||
|
'in': ['in', 'mvin'],
|
||||||
|
'out': ['out', 'mvout'],
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.bookingtype:
|
||||||
|
if self.category:
|
||||||
|
if not self.bookingtype in types.get(self.category.cattype, ''):
|
||||||
|
self.category = None
|
||||||
|
|
||||||
|
@fields.depends('cashbook', 'balance')
|
||||||
|
def on_change_cashbook(self):
|
||||||
|
""" get balance of selected cashbook
|
||||||
|
"""
|
||||||
|
if self.cashbook:
|
||||||
|
self.balance = self.cashbook.balance
|
||||||
|
else :
|
||||||
|
self.balance = None
|
||||||
|
|
||||||
|
@fields.depends('cashbook', '_parent_cashbook.owner')
|
||||||
|
def on_change_with_owner_cashbook(self, name=None):
|
||||||
|
""" get current owner
|
||||||
|
"""
|
||||||
|
if self.cashbook:
|
||||||
|
return self.cashbook.owner.id
|
||||||
|
|
||||||
|
@fields.depends('cashbook', '_parent_cashbook.currency')
|
||||||
|
def on_change_with_currency(self, name=None):
|
||||||
|
""" digits
|
||||||
|
"""
|
||||||
|
if self.cashbook:
|
||||||
|
return self.cashbook.currency.id
|
||||||
|
|
||||||
|
@fields.depends('cashbook', '_parent_cashbook.currency')
|
||||||
|
def on_change_with_currency_digits(self, name=None):
|
||||||
|
""" digits
|
||||||
|
"""
|
||||||
|
if self.cashbook:
|
||||||
|
return self.cashbook.currency.digits
|
||||||
|
else :
|
||||||
|
return 2
|
||||||
|
|
||||||
|
# end EnterBookingStart
|
||||||
|
|
||||||
|
|
||||||
|
class EnterBookingWizard(Wizard):
|
||||||
|
'Enter Booking'
|
||||||
|
__name__ = 'cashbook.enterbooking'
|
||||||
|
|
||||||
|
start_state = 'start'
|
||||||
|
start = StateView('cashbook.enterbooking.start',
|
||||||
|
'cashbook.enterbooking_start_form', [
|
||||||
|
Button('Cancel', 'end', 'tryton-cancel'),
|
||||||
|
Button('Save', 'save_', 'tryton-save', default=True),
|
||||||
|
Button('Save & Next', 'savenext_', 'tryton-forward'),
|
||||||
|
])
|
||||||
|
save_ = StateTransition()
|
||||||
|
savenext_ = StateTransition()
|
||||||
|
|
||||||
|
def default_start(self, fields):
|
||||||
|
""" setup form
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Cashbook = pool.get('cashbook.book')
|
||||||
|
Configuration = pool.get('cashbook.configuration')
|
||||||
|
|
||||||
|
cfg1 = Configuration.get_singleton()
|
||||||
|
|
||||||
|
result = {
|
||||||
|
'cashbooks': [x.id for x in Cashbook.search([
|
||||||
|
('state', '=', 'open'),
|
||||||
|
('owner.id', '=', Transaction().user),
|
||||||
|
])],
|
||||||
|
'bookingtype': getattr(self.start, 'bookingtype', 'out'),
|
||||||
|
'cashbook': getattr(getattr(cfg1, 'defbook', None), 'id', None),
|
||||||
|
'amount': None,
|
||||||
|
'party': None,
|
||||||
|
'booktransf': None,
|
||||||
|
'description': None,
|
||||||
|
'category': None,
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
|
||||||
|
def transition_save_(self):
|
||||||
|
""" store booking
|
||||||
|
"""
|
||||||
|
pool = Pool()
|
||||||
|
Line = pool.get('cashbook.line')
|
||||||
|
IrDate = pool.get('ir.date')
|
||||||
|
|
||||||
|
query = {
|
||||||
|
'cashbook': self.start.cashbook.id,
|
||||||
|
'description': self.start.description,
|
||||||
|
'date': IrDate.today(),
|
||||||
|
'bookingtype': self.start.bookingtype,
|
||||||
|
'amount': self.start.amount,
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.start.bookingtype in ['in', 'out']:
|
||||||
|
query['category'] = self.start.category.id
|
||||||
|
query['party'] = getattr(self.start.party, 'id', None)
|
||||||
|
elif self.start.bookingtype in ['mvin', 'mvout']:
|
||||||
|
query['booktransf'] = self.start.booktransf.id
|
||||||
|
|
||||||
|
Line.create([query])
|
||||||
|
return 'end'
|
||||||
|
|
||||||
|
def transition_savenext_(self):
|
||||||
|
""" store booking & restart
|
||||||
|
"""
|
||||||
|
self.transition_save_()
|
||||||
|
return 'start'
|
||||||
|
|
||||||
|
# end EnterBookingWizard
|
21
wizard_booking.xml
Normal file
21
wizard_booking.xml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!-- This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
|
The COPYRIGHT file at the top level of this repository contains the
|
||||||
|
full copyright notices and license terms. -->
|
||||||
|
<tryton>
|
||||||
|
<data>
|
||||||
|
|
||||||
|
<record model="ir.ui.view" id="enterbooking_start_form">
|
||||||
|
<field name="model">cashbook.enterbooking.start</field>
|
||||||
|
<field name="type">form</field>
|
||||||
|
<field name="name">enterbooking_start_form</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<!-- enter booking -->
|
||||||
|
<record model="ir.action.wizard" id="act_enterbooking_wiz">
|
||||||
|
<field name="name">Enter Booking</field>
|
||||||
|
<field name="wiz_name">cashbook.enterbooking</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</tryton>
|
Loading…
Reference in a new issue