1
votes

How i can display Payment Journal (Credit / Cash) values in tree view of point of sale where this is displaying on form view in tab 'Payments'?

here is code

python file:

statement_ids = fields.One2many('account.bank.statement.line', 'pos_statement_id', string='Payments', states={'draft': [('readonly', False)]}, readonly=True)

xml file:

  <page string="Payments">
                    <field name="statement_ids" colspan="4" nolabel="1">
                        <tree editable="bottom" string="Statement lines">
                            <field name="journal_id"/>
                            <field name="statement_id"/>
                            <field name="amount"/>
                        </tree>
                    </field>
                </page>
1

1 Answers

1
votes

field name="statement_ids" widget="many2many_tag" You can try it on your tree view.