Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • e-learning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Cervecería
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y soporte técnico
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Explorar todos los sectores
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Servicios para partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Show Chart of Accounts in Sales and Purchase receipts for Odoo 8.0

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
purchasesalesaccountingchartofaccount
2 Respuestas
5454 Vistas
Avatar
Franz Bautista

Good day!

I have a issue that I need to show all accounts under the Chart of Accounts (Expense, income, liability, assets etc) once I choose the drop down under Sales/Purchase receipts. I tried editing the domain but only succeeded in getting income or expense. Would you have an idea how to do this?  This is the line I edit, and am not sure if this is all I need to edit:

<field name="account_id" domain="[('user_type.report_type','=','income'),('type','!=','view')]" widget="selection"/>

0
Avatar
Descartar
Avatar
Sarga
Mejor respuesta

Hi,

if you need to get the entire accounts in drop down avoid domain.Just redefine the field account_id and replace the field in xml with out domain.

1
Avatar
Descartar
Avatar
fasluca
Mejor respuesta

Make this line like this
<field name="account_id" widget="selection"/>

1
Avatar
Descartar
Franz Bautista
Autor

I had better include full script for Sales receipt:

<?xml version="1.0"?>

<form string="Sales Receipt">

<header>

<button name="proforma_voucher" string="Validate" states="draft" class="oe_highlight"/>

<button name="293" context="{'narration':narration, 'title':'Customer Payment', 'type':'receipt', 'partner_id':partner_id, 'reference':reference, 'amount':amount}" type="action" string="Validate Payment" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}" class="oe_highlight"/>

<button name="cancel_voucher" string="Cancel Receipt" states="draft,proforma"/>

<button name="cancel_voucher" string="Cancel Receipt" type="object" states="posted" confirm="Are you sure you want to cancel this receipt?"/>

<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>

<field name="state" widget="statusbar" statusbar_visible="draft,posted" statusbar_colors="{&quot;proforma&quot;:&quot;blue&quot;}"/>

</header>

<sheet string="Sales Receipt">

<h1><label for="number" string="Sales Receipt"/> <field name="number" class="oe_inline" readonly="1"/></h1>

<group>

<group>

<field name="type" invisible="True"/>

<field name="company_id" widget="selection" on_change="onchange_company(partner_id, journal_id, currency_id, company_id)" groups="base.group_multi_company"/>

<field name="partner_id" domain="[('customer','=',True)]" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer':1, 'show_address': 1}" options="{&quot;always_reload&quot;: True}"/>

<field name="account_id"/>

/*<field name="account_id" domain="[('type','in', ['liquidity', 'receivable'])]"/>*/

<field name="pay_now" on_change="onchange_payment(pay_now, journal_id, partner_id)" required="1"/>

<field name="date_due" attrs="{'invisible':[('pay_now','=','pay_now')]}"/>

<field name="reference" attrs="{'invisible':[('pay_now','!=','pay_now')]}"/>

</group>

<group>

<field name="journal_id" domain="[('type','in',['sale','sale_refund'])]" widget="selection" on_change="onchange_journal(journal_id, line_cr_ids, tax_id, partner_id, date, amount, type, company_id, context)" groups="account.group_account_user"/>

<field name="date" on_change="onchange_date(date, currency_id, currency_id, amount, company_id, context)"/>

<field name="name"/>

<field name="paid" invisible="1"/>

<field name="paid_amount_in_company_currency" invisible="1"/>

<field name="currency_id" invisible="1"/>

</group>

</group>

<notebook>

<page string="Sales Information">

<field name="line_cr_ids" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}">

<tree string="Sales Lines" editable="bottom">

<field name="account_id" widget="selection"/>

<field name="name"/>

<field name="amount" sum="Total"/>

<field name="account_analytic_id" groups="analytic.group_analytic_accounting"/>

</tree>

</field>

<group>

<field name="narration" placeholder="Internal Notes" nolabel="1"/>

<group class="oe_subtotal_footer oe_right">

<field name="tax_id" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" widget="selection" nolabel="1" placeholder="Tax" domain="[('type_tax_use','in',('sale','all')), ('parent_id', '=', False)]"/>

<field name="tax_amount" nolabel="1"/>

<div class="oe_subtotal_footer_separator">

<label for="amount"/>

<button type="object" class="oe_link oe_edit_only" name="compute_tax" string="(update)" attrs="{'invisible': [('state','!=','draft')]}"/>

</div>

<field name="amount" class="oe_subtotal_footer_separator" nolabel="1"/>

</group>

</group>

</page>

<page string="Journal Items" attrs="{'invisible': [('state','!=','posted')]}">

<group col="4">

<field name="period_id"/>

<field name="audit"/>

</group>

<field name="move_ids" readonly="1">

<tree string="Journal Items">

<field name="move_id"/>

<field name="ref"/>

<field name="date"/>

<field name="statement_id"/>

<field name="partner_id"/>

<field name="account_id"/>

<field name="name"/>

<field name="debit"/>

<field name="credit"/>

<field name="state"/>

<field name="reconcile_id"/>

</tree>

</field>

</page>

</notebook>

<group col="4" invisible="1">

<field name="is_multi_currency" invisible="1"/>

<field name="currency_help_label" invisible="1"/>

<field name="payment_rate" invisible="1"/>

<field name="payment_rate_currency_id" invisible="1"/>

<field name="paid_amount_in_company_currency" colspan="4" invisible="1"/>

</group>

</sheet>

<div class="oe_chatter">

<field name="message_follower_ids" widget="mail_followers"/>

<field name="message_ids" widget="mail_thread"/>

</div>

</form>

Changing the above only showed all cash and receivable accounts, income accounts can not be seen now. It did not show all chart of accounts. I think since this a sales receipt there is another parameter which i am missing. Any ideas?

fasluca

Then try making the domain like this

[('user_type.report_type','in',['expense','income','liability','asset']),('type','!=','view')]

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
currency exchange sale
purchase sales accounting
Avatar
Avatar
1
may 25
2162
Cash Basis Accounting
purchase sales accounting
Avatar
0
jun 15
4219
Reset my inventory, Sales, Purchasing and accounting database
purchase sales accounting finance
Avatar
Avatar
2
mar 25
2920
Creation de demo sur odoo.com
purchase sales accounting inventory
Avatar
0
jun 22
3908
accounting sales and purchase
purchase sales accounting inventory
Avatar
Avatar
1
nov 19
4377
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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