Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[14.0][16.0][l10n_it_ricevute_bancarie] search view incompleta sulle righe movimenti contabili #3216

Closed
2 tasks done
andreampiovesana opened this issue Mar 17, 2023 · 2 comments

Comments

@andreampiovesana
Copy link
Contributor

andreampiovesana commented Mar 17, 2023

volevo segnalare l'errore nelle ricevute bancarie della ridefinizione della search view per account.move.line

Module

l10n_it_ricevute_bancarie

Describe the bug

ridefinizione della search view per account.move.line,

To Reproduce

Affected versions:

Steps to reproduce the behavior:

  1. dopo installazione ricevute bancarie i filtri delle righe contabili sono eliminati

Expected behavior
la search view deve ereditare la search view non sostituirla e usare account_due_list come dipendenza

Additional context
estenderei la vista:
https://github.com/OCA/account-payment/blob/226bced381269001ae548a90c49ba375893bb803/account_due_list/views/payment_view.xml#L76

modifica suggerita:

<record id="riba_filter" model="ir.ui.view">
    <field name="name">C/O filter</field>
    <field name="model">account.move.line</field>
    <field name="inherit_id" ref="account_due_list.view_payments_filter" />
    <field name="arch" type="xml">
        <xpath expr="//search" position="inside">
            <filter
                name="da_emettere"
                string="RIBA To Issue"
                domain="[('distinta_line_ids', '=', False)]"
            />
            <filter
                name="emesse"
                string="RIBA Issued"
                domain="[('distinta_line_ids', '!=', False)]"
            />
            <filter
                name="reconciled"
                string="Reconciled"
                domain="[('reconciled', '!=', False)]"
            />
            <filter
                name="to_reconcile"
                string="To Reconcile"
                domain="[('reconciled', '=', False)]"
            />
            <filter
                name="unsolved"
                string="Past Due"
                domain="[('unsolved_invoice_ids', '!=', False)]"
            />
            <filter
                name="sale_journal"
                string="Sale Journals"
                domain="[('journal_id.type', '=', 'sale')]"
            />
            <field name="account_id" />
            <field name="partner_id" />
            <field name="move_id" />
            <field name="date_maturity" />
            <group expand="0" string="Group By...">
                <filter
                    name="filter_customer"
                    string="Group By Customer"
                    context="{'group_by':'partner_id'}"
                />
            </group>
        </xpath>
    </field>
</record>

@matteoopenf
Copy link
Contributor

odooNextev pushed a commit to odooNextev/l10n-italy that referenced this issue Jun 27, 2023
odooNextev pushed a commit to odooNextev/l10n-italy that referenced this issue Jun 27, 2023
SirAionTech pushed a commit to SirAionTech/l10n-italy that referenced this issue Sep 28, 2023
SirAionTech pushed a commit to SirAionTech/l10n-italy that referenced this issue Sep 28, 2023
TennyMkt pushed a commit to mktsrl/l10n-italy that referenced this issue May 10, 2024
toita86 pushed a commit to toita86/l10n-italy that referenced this issue Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants