Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Intelligence artificielle
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    • Referral Program
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Why 3rd party Accounting Report has (en_US) in every CoA?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
accountingcommunityLanguagesCybrosysodoo16features
2 Réponses
2805 Vues
Avatar
globe88, efendy

Hello, i am using cybrosys accounting report, I want to ask, why everytime I generate accounting report like Profit and Loss, General Ledger, etc, the CoA will has (en_US) in front of it. I tried to change the database language but the result still the same. How can I remove this?



2
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,

Please replace the financial_report_template with the below code: Then it will work fine.


<template id="dynamic_accounts_report.balance_sheet">
        <t t-call="web.html_container">
            <t t-call="web.internal_layout">
                <t t-set="data_report_margin_top" t-value="12"/>
<t t-set="data_report_header_spacing" t-value="9"/>
                <t t-set="data_report_dpi" t-value="110"/>
                <div class="page">
<h3><span t-esc="Filters.get('company_name')"/>:
                        <span t-esc="report_name"/>
                    </h3>

                    <div>
<span t-if="Filters.get('date_from')">
                            <strong>From:</strong>
                            <t t-esc="Filters['date_from']"/>
                        </span>

                        <span t-if="Filters.get('date_to')">
                            <strong>To:</strong>
                            <t t-esc="Filters['date_to']"/>
                        </span>

                        <div>
                            <div style="text-align:centre;" class="row">

                                <div class="col-2">
                                    <strong>Journals:</strong>
<t t-foreach="Filters['journals']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <div class="col-2">
                                    <strong>Accounts:</strong>
<t t-foreach="Filters['accounts']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <div class="col-2">
                                    <strong>Account Tags:</strong>
<t t-foreach="Filters['account_tags']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>
                                <div class="col-2">
                                    <strong>Analytic:</strong>
<t t-foreach="Filters['analytics']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <!--                                 <div class="col-2">-->
                                <!--                                        <strong>Analytic Tag:</strong>-->
<!-- <t t-foreach="Filters['analytic_tags']" t-as="ps">-->
                                <!--                                            <li>-->
                                <!--                                                <t t-esc="ps"/>-->
                                <!--                                            </li>-->
                                <!--                                        </t>-->
                                <!--                                </div>-->

                                <div class="col-3">
                                    <strong>Target move:</strong>
                                    <li>
<t t-esc="Filters['target_move']"/>
                                    </li>
                                </div>
                            </div>
                        </div>
                    </div>
                    <br></br>

                    <table class="table table-sm table-reports">
                        <thead>
                            <tr>
                                <th></th>
                                <th class="text-right">Debit</th>
                                <th class="text-right">Credit</th>
<th class="text-right">Balance001</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr t-foreach="report_lines" t-as="a">

                                <t t-if="a['level'] != 0">
                                    <t t-if="a.get('level') &gt; 2">
                                        <t t-set="style"
                                           t-value="'font-weight: normal;'"/>
                                    </t>
                                    <t t-if="not a.get('level') &gt; 2">
                                        <t t-set="style"
                                           t-value="'font-weight: bold;'"/>
                                    </t>
                                    <t t-if="a.get('code')">
                                        <t t-foreach="account_data" t-as="line">
                                            <t t-if="line['id'] == a.get('account')">
                                                <tr>
                                                    <td>
                                                        <span style="color: white;"
                                                              t-esc="'..' * a.get('level', 0) * 3"/>
                                                        <span>
                                                            <t t-set="language"
t-value="request.env.context.get('lang')"/>
                                                            <t t-esc="line['code']"/>
                                                            -
                                                            <t t-if="language != 'en_US'">
                                                                <t t-if="line['name'][lang] and lang != 'en_US'">
                                                                    <t t-esc="line['name'][lang]"/>
                                                                </t>
<t t-elif="line['name']['en_US']">
<t t-esc="line['name']['en_US']"/>
                                                                </t>
                                                            </t>
                                                            <t t-else="">
                                                                <t t-esc="line['name']"/>
                                                            </t>
                                                        </span>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['debit']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['credit']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['balance']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                </tr>
                                            </t>
                                        </t>
                                    </t>
                                    <t t-else="">
                                        <td>
                                            <span style="color: white;"
                                                  t-esc="'..' * a.get('level', 0) * 3"/>
                                            <span t-att-style="style"
                                                  t-esc="a.get('name')"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('debit')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('credit')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('balance')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                    </t>

                                </t>
                            </tr>
                        </tbody>
                    </table>


                </div>
            </t>
        </t>
    </template>

We will soon update this on the Odoo App Store.

Hope it helps

0
Avatar
Ignorer
Cybrosys Techno Solutions Pvt.Ltd

Please refer https://apps.odoo.com/apps/modules/16.0/dynamic_accounts_report/ for latest version.

Avatar
Niyas Raphy (Walnut Software Solutions)
Meilleure réponse

Hi,
This may be some bugs happens with a recent update, as it is a third party app, you can report the same to the author in their support channel and get is solved.

Thanks

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Cybrosys Accounting Module
accounting community Cybrosys
Avatar
0
juin 24
3505
om_account_accountant VS base_accounting_kit
accounting community odoo16features
Avatar
0
mars 24
7253
parent company process sale orders of it's child company in point of sale Résolu
community Niyas Cybrosys odoo16features
Avatar
Avatar
1
avr. 24
2783
Issue with Balance in GL.
accounting balance CE Cybrosys odoo16features
Avatar
1
mars 24
4097
Day Book Entries
accounting community
Avatar
Avatar
Avatar
3
juin 24
4080
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now