formatting
This commit is contained in:
parent
6c1fac8672
commit
ad067475f8
13 changed files with 1126 additions and 709 deletions
|
@ -12,13 +12,16 @@ class AssetSetting(ModelSingleton, ModelSQL, ModelView):
|
|||
'Asset setting'
|
||||
__name__ = 'cashbook.assetconf'
|
||||
|
||||
fee_category = fields.Many2One(string='Fee category',
|
||||
fee_category = fields.Many2One(
|
||||
string='Fee category',
|
||||
model_name='cashbook.category', ondelete='RESTRICT',
|
||||
help='Category for fees when trading assets.')
|
||||
dividend_category = fields.Many2One(string='Dividend category',
|
||||
dividend_category = fields.Many2One(
|
||||
string='Dividend category',
|
||||
model_name='cashbook.category', ondelete='RESTRICT',
|
||||
help='Category for dividend paid out.')
|
||||
gainloss_book = fields.Many2One(string='Profit/Loss Cashbook',
|
||||
gainloss_book = fields.Many2One(
|
||||
string='Profit/Loss Cashbook',
|
||||
model_name='cashbook.book', ondelete='RESTRICT',
|
||||
help='Profit and loss on sale of assets are recorded in the cash book.')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue