Skip to content

Commit

Permalink
Merge PR #718 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Oct 1, 2024
2 parents e11c081 + e1e9ddb commit 84bb6c8
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion account_statement_base/i18n/account_statement_base.pot
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgid "Label, Ref, Notes or Amount"
msgstr ""

#. module: account_statement_base
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Etiqueta, referencia o notas"
msgid "Label, Ref, Notes or Amount"
msgstr "Etiqueta, referencia, notas o importe"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Libellé, Réf ou Notes"
msgid "Label, Ref, Notes or Amount"
msgstr "Libellé, Réf, Notes ou Montant"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Etichetta, riferimento o note"
msgid "Label, Ref, Notes or Amount"
msgstr "Etichetta, riferimento, note o importo"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/pt.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Rótulo, Ref ou Notas"
msgid "Label, Ref, Notes or Amount"
msgstr "Rótulo, Ref, Notas ou Montante"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/pt_BR.po
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Rótulo, Ref ou Notas"
msgid "Label, Ref, Notes or Amount"
msgstr "Rótulo, Ref, Notas ou Valor"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/sv.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Etikett, referens eller anteckningar"
msgid "Label, Ref, Notes or Amount"
msgstr "Etikett, referens, anteckningar eller belopp"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
4 changes: 2 additions & 2 deletions account_statement_base/i18n/tr.po
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ msgstr ""

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
msgid "Label, Ref or Notes"
msgstr "Etiket, Referans veya Notlar"
msgid "Label, Ref, Notes or Amount"
msgstr "Etiket, Referans, Notlar veya Tutar"

#. module: account_statement_base
#: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search
Expand Down
6 changes: 3 additions & 3 deletions account_statement_base/views/account_bank_statement_line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@
<search>
<field
name="payment_ref"
filter_domain="['|', '|', ('payment_ref', 'ilike', self), ('ref', 'ilike', self), ('narration', 'ilike', self)]"
string="Label, Ref or Notes"
filter_domain="['|', '|', '|', ('amount', 'ilike', self), ('payment_ref', 'ilike', self), ('ref', 'ilike', self), ('narration', 'ilike', self)]"
string="Label, Ref, Notes or Amount"
/>
<field name="partner_id" />
<field name="date" />
<field name="statement_id" />
<field name="journal_id" domain="[('type', 'in', ('bank', 'cash'))]" />
<field name="amount" />
<field name="amount" filter_domain="[('amount', 'ilike', self)]" />
<separator />
<filter
name="reconciled"
Expand Down

0 comments on commit 84bb6c8

Please sign in to comment.