← Back to team overview

openerp-expert-accounting team mailing list archive

[Bug 549715] Re: help text for income and expense accounts

 

@Jan - this is an issue for the upcoming trunk
I had massive troubles to get the correct account moves in 5.0 IMHO because of this confusing issue

Prodcut accounts must be configured to be usable for physical prodcucs
and services (which have not stock input/output but only Expense and
Sales accounts)

OK Invoices do not /and should create stock_move but
Invoice lines - these must have the same value as stock moves
* Supplier invoices 
** move_value_cost == subtotal of invoice line
* Customer invoices 
** move_value_sale == subtotal of invoice line
** move_value_cost == avg price at the time of sale

For evaluating the stock moves these accounts should be used
definend in stock/product.py

class product_category(osv.osv):
    _inherit = 'product.category'
    _columns = {
        'property_stock_journal': fields.property('account.journal',
            relation='account.journal', type='many2one',
            string='Stock journal', method=True, view_load=True,
            help="This journal will be used for the accounting move generated by stock move"),
        'property_stock_account_input_categ': fields.property('account.account',
            type='many2one', relation='account.account',
            string='Stock Input Account', method=True, view_load=True,
            help='This account will be used to value the input stock'),
        'property_stock_account_output_categ': fields.property('account.account',
            type='many2one', relation='account.account',
            string='Stock Output Account', method=True, view_load=True,
            help='This account will be used to value the output stock'),
    }

product_category()

-- 
help text for income and expense accounts
https://bugs.launchpad.net/bugs/549715
You received this bug notification because you are a member of OpenERP's
Accounting Experts, which is a direct subscriber.

Status in OpenObject Addons Modules: New

Bug description:
trunk 3231
IMHO the help text does not fit to the account names