diff --git a/modules/account/move.py b/modules/account/move.py index ab3191e..16fb786 100755 --- a/modules/account/move.py +++ b/modules/account/move.py @@ -117,6 +117,7 @@ class Move(DescriptionOriginMixin, ModelSQL, ModelView): date = fields.Date('Effective Date', required=True, states=_MOVE_STATES) post_date = fields.Date('Post Date', readonly=True) description = fields.Char('Description', states=_MOVE_STATES) + ext_ref = fields.Char('Ext. Ref') origin = fields.Reference('Origin', selection='get_origin', states=_MOVE_STATES) state = fields.Selection([ @@ -921,6 +922,7 @@ class Line(DescriptionOriginMixin, MoveLineMixin, ModelSQL, ModelView): fields.Reference("Move Origin", selection='get_move_origin'), 'get_move_field', searcher='search_move_field') description = fields.Char('Description', states=_states) + ext_ref = fields.Char('Ext. Ref') move_description_used = fields.Function( fields.Char("Move Description", states=_states), 'get_move_field', diff --git a/modules/account/view/move_form.xml b/modules/account/view/move_form.xml index 995b6d5..8a9cd54 100755 --- a/modules/account/view/move_form.xml +++ b/modules/account/view/move_form.xml @@ -21,6 +21,8 @@ this repository contains the full copyright notices and license terms. -->