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
    • eLearning
    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 taberna
    • 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
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • 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
    Browse all Industries
  • 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
    • Services for 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

Create new picking list report

Suscribirse

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

Se marcó esta pregunta
createpickingreportlistnew
5893 Vistas
Avatar
kim

Hi,

I create new report module for the warehouse delivery order picking list but when i pick it it show the error message

Field 'move_lines' does not exist in object 'browse_record(product.product, 1)' (<type 'exceptions.attributeerror'="">, AttributeError(KeyError("Field 'move_lines' does not exist in object 'browse_record(product.product, 1)'",),), <traceback object="" at="" 0x7ff9172497e8="">)

product_moves.py

import time from openerp.report import report_sxw from openerp.osv import osv from openerp import pooler

class product_moves(report_sxw.rml_parse):

def __init__(self, cr, uid, name, context):
    super(picking, self).__init__(cr, uid, name, context=context)
    self.localcontext.update({
        'time': time,
        'get_product_desc':self.get_product_desc
    })


def get_product_desc(self,move_line):
    desc = move_line.product_id.name
    if move_line.product_id.default_code:
        desc = '[' + move_line.product_id.default_code + ']' + ' ' + desc
    return desc

 report_sxw.report_sxw('report.product_moves', 'stock.picking', 'addons/extra_reports/reports/product_moves.rml', parser=product_moves)

product_moves.rml

<document filename="Packing List.pdf">
<template pagesize="(595.0,842.0)" title="Packing List" author="OpenERP S.A.(sales@openerp.com)" allowsplitting="20"> <pagetemplate id="first"> <frame id="first" x1="0.0" y1="57.0" width="538" height="728"/> </pagetemplate> </template>
<stylesheet> <blocktablestyle id="Standard_Outline"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> </blocktablestyle> <blocktablestyle id="Table_Address_detail"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> </blocktablestyle> <blocktablestyle id="Table_Title_String"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> </blocktablestyle> <blocktablestyle id="Header_Order_Reference_Tbl"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="0,0" stop="0,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="0,0" stop="0,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="0,-1" stop="0,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="1,0" stop="1,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="1,0" stop="1,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="1,-1" stop="1,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="2,0" stop="2,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="2,0" stop="2,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="2,-1" stop="2,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="3,0" stop="3,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="3,0" stop="3,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="3,-1" stop="3,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="4,0" stop="4,-1"/> <linestyle kind="LINEAFTER" colorname="#e6e6e6" start="4,0" stop="4,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="4,0" stop="4,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="4,-1" stop="4,-1"/> </blocktablestyle> <blocktablestyle id="Content_Order_Reference_Table"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="0,0" stop="0,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="0,0" stop="0,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="0,-1" stop="0,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="1,0" stop="1,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="1,0" stop="1,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="1,-1" stop="1,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="2,0" stop="2,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="2,0" stop="2,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="2,-1" stop="2,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="3,0" stop="3,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="3,0" stop="3,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="3,-1" stop="3,-1"/> <linestyle kind="LINEBEFORE" colorname="#e6e6e6" start="4,0" stop="4,-1"/> <linestyle kind="LINEAFTER" colorname="#e6e6e6" start="4,0" stop="4,-1"/> <linestyle kind="LINEABOVE" colorname="#e6e6e6" start="4,0" stop="4,0"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="4,-1" stop="4,-1"/> </blocktablestyle> <blocktablestyle id="Move_Line_Header"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEBELOW" colorname="#000000" start="0,-1" stop="0,-1"/> <linestyle kind="LINEBELOW" colorname="#000000" start="1,-1" stop="1,-1"/> <linestyle kind="LINEBELOW" colorname="#000000" start="2,-1" stop="2,-1"/> <linestyle kind="LINEBELOW" colorname="#000000" start="3,-1" stop="3,-1"/> <linestyle kind="LINEBELOW" colorname="#000000" start="4,-1" stop="4,-1"/> </blocktablestyle> <blocktablestyle id="Move_Line_Contect_Assign_State"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="0,-1" stop="0,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="1,-1" stop="1,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="2,-1" stop="2,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="3,-1" stop="3,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="4,-1" stop="4,-1"/> </blocktablestyle> <blocktablestyle id="Table1"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="0,-1" stop="0,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="1,-1" stop="1,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="2,-1" stop="2,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="3,-1" stop="3,-1"/> <linestyle kind="LINEBELOW" colorname="#e6e6e6" start="4,-1" stop="4,-1"/> </blocktablestyle> <blocktablestyle id="Table2"> <blockalignment value="LEFT"/> <blockvalign value="TOP"/> <linestyle kind="LINEABOVE" colorname="#000000" start="1,0" stop="1,0"/> <linestyle kind="LINEABOVE" colorname="#000000" start="2,0" stop="2,0"/> </blocktablestyle> <initialize> <parastyle name="all" alignment="justify"/> </initialize> <parastyle name="Standard" fontname="Helvetica"/> <parastyle name="Heading" fontname="Helvetica" fontsize="14.0" leading="17" spacebefore="12.0" spaceafter="6.0"/> <parastyle name="Text body" fontname="Helvetica" spacebefore="0.0" spaceafter="6.0"/> <parastyle name="List" fontname="Helvetica" spacebefore="0.0" spaceafter="6.0"/> <parastyle name="Caption" fontname="Helvetica-Oblique" fontsize="12.0" leading="15" spacebefore="6.0" spaceafter="6.0"/> <parastyle name="Index" fontname="Helvetica"/> <parastyle name="terp_header" fontname="Helvetica-Bold" fontsize="12.0" leading="15" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_header_Centre" fontname="Helvetica-Bold" fontsize="12.0" leading="15" alignment="CENTER" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_8" fontname="Helvetica" fontsize="8.0" leading="10" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Bold_8" fontname="Helvetica-Bold" fontsize="8.0" leading="10" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_tblheader_Details" fontname="Helvetica-Bold" fontsize="9.0" leading="11" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_tblheader_Details_Centre" fontname="Helvetica-Bold" fontsize="9.0" leading="11" alignment="CENTER" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Centre_8" fontname="Helvetica" fontsize="8.0" leading="10" alignment="CENTER" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Centre_9" fontname="Helvetica" fontsize="9.0" leading="11" alignment="CENTER" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_tblheader_General" fontname="Helvetica-Bold" fontsize="8.0" leading="10" alignment="LEFT" spacebefore="6.0" spaceafter="6.0"/> <parastyle name="terp_tblheader_General_Centre" fontname="Helvetica-Bold" fontsize="8.0" leading="10" alignment="CENTER" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="Table Contents" fontname="Helvetica"/> <parastyle name="Footer" fontname="Helvetica"/> <parastyle name="Table Heading" fontname="Helvetica" alignment="CENTER"/> <parastyle name="Horizontal Line" fontname="Helvetica" fontsize="6.0" leading="8" spacebefore="0.0" spaceafter="14.0"/> <parastyle name="Heading 9" fontname="Helvetica-Bold" fontsize="75%" leading="NaN" spacebefore="12.0" spaceafter="6.0"/> <parastyle name="terp_tblheader_General_Right" fontname="Helvetica-Bold" fontsize="8.0" leading="10" alignment="RIGHT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_tblheader_Details_Right" fontname="Helvetica-Bold" fontsize="9.0" leading="11" alignment="RIGHT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Right_8" fontname="Helvetica" fontsize="8.0" leading="10" alignment="RIGHT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_header_Right" fontname="Helvetica-Bold" fontsize="15.0" leading="19" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_address" fontname="Helvetica" fontsize="10.0" leading="13" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_9" fontname="Helvetica" fontsize="9.0" leading="11" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Bold_9" fontname="Helvetica-Bold" fontsize="9.0" leading="11" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_Right_9" fontname="Helvetica" fontsize="9.0" leading="11" alignment="RIGHT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_2" fontname="Helvetica" fontsize="2.0" leading="3" alignment="LEFT" spacebefore="0.0" spaceafter="0.0"/> <parastyle name="terp_default_5cm_Above_Space" fontname="Helvetica" fontsize="8.0" leading="10" alignment="LEFT" spacebefore="6.0" spaceafter="0.0"/> <parastyle name="terp_default_1cm_above_space" fontname="Helvetica" fontsize="8.0" leading="10" alignment="LEFT" spacebefore="3.0" spaceafter="0.0"/> <images/> </stylesheet> <story> <pto> <pto_header> <blocktable colwidths="256.0,73.0,59.0,59.0,71.0" repeatrows="1" style="Move_Line_Header"> <para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details_Centre">Lot</para> <para style="terp_tblheader_Details_Centre">Status</para> <para style="terp_tblheader_Details_Right">Location</para> <para style="terp_tblheader_Details_Right">Quantity</para> </blocktable> </pto_header> <para style="terp_default_8">[[repeatIn(objects,'picking')]] </para> <para style="terp_default_8">[[picking.type == 'out' and picking.partner_id and setLang(picking.partner_id.lang) or '']]</para> <para style="terp_default_9"> </para> <blocktable colwidths="269.0,269.0" style="Table_Address_detail"> <para style="terp_default_Bold_9">Supplier Address : [[ (picking.type == 'in' or removeParentNode('para')) and '' ]]</para> <para style="terp_default_Bold_9">Customer Address : [[ (picking.type == 'out' or removeParentNode('para')) and '' ]]</para> <para style="terp_default_Bold_9">Warehouse Address : [[ (picking.type == 'internal' or removeParentNode('para')) and '' ]]</para> <para style="terp_default_9">[[ (picking.partner_id and picking.partner_id.id and picking.partner_id.title.name) or '' ]] [[ picking.partner_id and picking.partner_id.id and picking.partner_id.name ]]</para> <para style="terp_default_9">[[ picking.partner_id and display_address(picking.partner_id) ]]</para> <para style="terp_default_9">[[ picking.partner_id.phone or picking.partner_id.email or removeParentNode('para')]]</para> <para style="terp_default_Bold_9">Contact Address :</para> <para style="terp_default_9">[[ picking.partner_id and picking.partner_id.title.name or '' ]] [[ picking.partner_id and picking.partner_id.name or '' ]]</para> <para style="terp_default_9">[[ picking.partner_id and display_address(picking.partner_id) ]] </para> <para style="terp_default_9">[[ picking.partner_id.phone or picking.partner_id.email or removeParentNode('para')]]</para> </blocktable> <para style="terp_default_5cm_Above_Space"> </para> <para style="terp_default_5cm_Above_Space"> </para> <blocktable colwidths="538.0" style="Table_Title_String"> <para style="terp_header">Delivery Order 123: [[ (picking.type == 'out' or removeParentNode('para')) and '' ]] [[ picking.name ]]</para> <para style="terp_header">Incoming Shipment : [[ (picking.type == 'in' or removeParentNode('para')) and '' ]] [[ picking.name ]]</para> <para style="terp_header">Internal Shipment : [[ (picking.type == 'internal' or removeParentNode('para')) and '' ]] [[ picking.name ]]</para> </blocktable> <para style="terp_default_5cm_Above_Space"> </para> <blocktable colwidths="100.0,154.0,161.0,109.0" style="Header_Order_Reference_Tbl"> <para style="terp_tblheader_General_Centre">Journal</para> <para style="terp_tblheader_General_Centre">Order(Origin)</para> <para style="terp_tblheader_General_Centre">Schedule Date</para> <para style="terp_tblheader_General_Centre">Weight</para> </blocktable> <blocktable colwidths="100.0,154.0,162.0,109.0" style="Content_Order_Reference_Table"> <para style="terp_default_Centre_8">[[ picking.stock_journal_id.name]]</para> <para style="terp_default_Centre_8">[[ picking.origin or '']]</para> <para style="terp_default_Centre_8">[[ formatLang(picking.min_date,date_time = True) ]]</para> <para style="terp_default_Centre_8">[[ 'weight' in picking._columns.keys() and picking.weight or '']]</para> </blocktable> <para style="terp_default_5cm_Above_Space"> </para> <blocktable colwidths="256.0,73.0,59.0,59.0,71.0" repeatrows="1" style="Move_Line_Header"> <para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details_Centre">Serial Number</para> <para style="terp_tblheader_Details_Centre">Status</para> <para style="terp_tblheader_Details_Right">Location</para> <para style="terp_tblheader_Details_Right">Quantity</para> </blocktable> <section> <para style="terp_default_2">[[ repeatIn([line for line in picking.move_lines if ((line.state == 'confirmed' or line.state=='done' or line.state=='assigned') and not line.scrapped)],'move_lines') ]]</para> <para style="terp_default_2">[[ (picking.move_lines!=[] and removeParentNode('para')) or removeParentNode('section')]]</para> <blocktable colwidths="256.0,74.0,58.0,60.0,73.0" style="Move_Line_Contect_Assign_State"> <para style="terp_default_9">[[ get_product_desc(move_lines) ]] </para> <para style="terp_default_Centre_9">[[ (move_lines.prodlot_id and move_lines.prodlot_id.name) or '' ]]</para> <para style="terp_default_9">[[ move_lines.state ]]</para> <para style="terp_default_Right_9">[[ (move_lines.location_id and move_lines.location_id.name) or '' ]] </para> <para style="terp_default_Right_9">[[ formatLang(move_lines.product_qty) ]] [[ move_lines.product_uom.name ]]</para> </blocktable> </section> <para style="terp_default_Bold_9">[[ ([line for line in picking.move_lines if (line.state == 'draft' or line.state=='waiting' )]) and 'Non Assigned Products:' or removeParentNode('para') ]]</para> <para style="terp_default_2"/> <section> <para style="terp_default_2">[[ repeatIn([line for line in picking.move_lines if (line.state == 'draft' or line.state=='waiting')],'move_lines') ]]</para> <para style="terp_default_2">[[ (picking.move_lines!=[] and removeParentNode('para')) or removeParentNode('section')]]</para> <blocktable colwidths="256.0,74.0,57.0,61.0,72.0" style="Table1"> <para style="terp_default_9">[[ get_product_desc(move_lines) ]] </para> <para style="terp_default_Centre_9">[[ (move_lines.prodlot_id and move_lines.prodlot_id.name) or '' ]]</para> <para style="terp_default_9">[[ (picking.type == 'in' or removeParentNode('para')) ]][[ move_lines.state == 'done' and 'Received' or move_lines.state]]</para> <para style="terp_default_9">[[ (picking.type == 'out' or removeParentNode('para')) ]][[ move_lines.state == 'done' and 'Delivered' or move_lines.state]]</para> <para style="terp_default_9">[[ (picking.type == 'internal' or removeParentNode('para')) ]][[ move_lines.state == 'done' and 'Transferred' or move_lines.state]]</para> <para style="terp_default_Right_9">[[ (move_lines.location_id and move_lines.location_id.name) or '' ]] </para> <para style="terp_default_Right_9">[[ formatLang(move_lines.product_qty) ]] [[ move_lines.product_uom.name ]]</para> </blocktable> </section> <para style="terp_default_2"> </para> </pto> </story> </document>

0
Avatar
Descartar
sepdau

You should check in product.product? Is that contain move_lines fields?

kim
Autor

yup, i found that problem but thanks

¿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
Openerp 7 create new account report
create account report new
Avatar
0
mar 15
4691
How to create stock picking from python in a custom module? Resuelto
create picking
Avatar
Avatar
Avatar
4
nov 20
10489
report_picking not only product_id but even stock.move.name
picking report name
Avatar
Avatar
1
feb 19
4306
Why is this RML not giving any output?
rml report list
Avatar
Avatar
1
mar 15
4240
any know how to create xsl report?
create xsl report
Avatar
0
mar 15
4081
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