Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

TypeError: Mixing apples and oranges

Subscriure's

Get notified when there's activity on this post

This question has been flagged
2 Respostes
2354 Vistes
Avatar
Nahid Jawad Angon
from odoo import api, models
import datetime


class CategoryReportXls(models.AbstractModel):
_name = 'report.product_category_list_report.product_category_report_xls'
_inherit = 'report.report_xlsx.abstract'

def generate_xlsx_report
(self, workbook, data, products):
domain = []
if data.get('date_from'):
domain.append(('create_date', '>=', data.get('date_from')))
if data.get('date_to'):
domain.append(('create_date', '<=', data.get('date_to')))
if data.get('categ_ids'):
domain.append(('categ_id', 'in', data.get('categ_ids')))

report_name = 'Lot Wise Inventory Report'
sheet = workbook.add_worksheet(report_name)
bold = workbook.add_format({'bold': True})
title = workbook.add_format({'bold': True, 'align': 'center', 'font_size': 20})
sheet.merge_range('A1:I1', 'Lot Wise Inventory Report', title)
date_style = workbook.add_format({'num_format': 'dd-mm-yyyy'})
sub_heading = workbook.add_format(
{'align': 'center', 'bold': True})
txt = workbook.add_format({'align': 'left'})
num = workbook.add_format({'align': 'right'})
head = workbook.add_format({'align': 'center', 'bold': True})
sheet.merge_range('C2:F2', 'Company Name' + ':' + self.env.user.company_id.name, head)
products = self.env['product.template'].search(domain)
col = 0
row = 3
sheet.write(row, col, 'Category', sub_heading)
row = 3
col = 1
sheet.set_column(0, 5, 15)
sheet.set_column(2, 2, 40)
sheet.set_column(7, 7, 15)
sheet.set_column(8, 8, 15)
sheet.write(row, col, 'Sl No.', sub_heading)
sheet.write(row, col + 1, 'Product', sub_heading)
sheet.write(row, col + 2, 'Date', sub_heading)
sheet.write(row, col + 3, 'Lot No.', sub_heading)
sheet.write(row, col + 4, 'Qty', sub_heading)
sheet.write(row, col + 5, 'Unit', sub_heading)
sheet.write(row, col + 6, 'Unit Cost', sub_heading)
sheet.write(row, col + 7, 'Stock Value', sub_heading)
row += 2
total_subtotal = 0
for
product in products:
if product.categ_id:
sheet.merge_range(f"A{row}:F{row}", product.categ_id.name)
for rec in product:
lot_ids = self.env['stock.production.lot'].search([('product_id', '=', rec.name)])
sheet.write(row, col, rec.serial_number, num)
sheet.write(row, col + 1, rec.name, txt)
sheet.write(row, col + 2, rec.create_date, date_style)
for row in lot_ids:
lot_ids = lot_ids + row.name + '\n'
sheet.write(row, col + 3, lot_ids, num)
sheet.write(row, col + 4, rec.qty_available, num)
sheet.write(row, col + 5, rec.uom_id.name, txt)
sheet.write(row, col + 6, rec.standard_price, num)
sheet.write(row, col + 7, rec.qty_available * rec.standard_price, num)
total_subtotal = total_subtotal + rec.qty_available * rec.standard_price
row += 1
if
product.categ_id:
row += 1
sheet.write(row, col + 6, 'Grand Total', bold)
sheet.write(row, col + 7, '{:,.2f}'.format(total_subtotal), bold)

# sheet.write(row, col + 7, '{:,.2f}'.format(total_subtotal), bold)
# for products in data['product_list']:
# # lot_id = self.sudo().env['stock.production.lot'].search([('product_id', '=', products.id)])
# row += 1
# sheet.write(row, col, products['id'])
# sheet.write(row, col + 1, products['name'])
# sheet.write(row, col + 2, products['create_date'])
# # sheet.write(row, col + 3, products.lot_id)
# sheet.write(row, col + 4, products['qty_available'])
# sheet.write_row(row, col + 5, products['uom_id'])
# sheet.write(row, col + 6, products['standard_price'])
# sheet.write(row, col + 7, products['qty_available'] * products['standard_price'])

# sheet.write(row, col + 1, products.name, bold)
# sheet.write(row, col + 2, products.create_date, bold)
# sheet.write(row, col + 4, products.qty_available, bold)
# sheet.write(row, col + 5, products.uom_id.name, bold)
# sheet.write(row, col + 6, products.standard_price, bold)
# sheet.write(row, col + 6, 'Unit Cost', bold)
# sheet.write(row, col + 7, 'Stock Value', bold)

When I generate xlsx report then this error show 

TypeError: Mixing apples and oranges:' '(1,6).concat(10777)

3
Avatar
Descartar
Avatar
Mehjabin Farsana
Best Answer

Hi,

This error comes when you try to do some operations with two different objects. From your code I think, this line causes the error

lot_ids = self.env['stock.production.lot'].search([('product_id', '=', rec.name)])

Here you are searching for the lot, by comparing the product_id field with the product name (rec.name) .

Replace it with , by passing product id (rec.id)

lot_ids = self.env['stock.production.lot'].search([('product_id', '=', rec.id)])

Hope this will work for you

Thank you

5
Avatar
Descartar
Avatar
Bhavin Vekariya
Best Answer

Hello @nzangon

please change this line 

lot_ids = self.env['stock.production.lot'].search([('product_id', '=', rec.name)])

and this line change rec.name to rec.id because both side same id return

lot_ids = self.env['stock.production.lot'].search([('product_id', '=', rec.id)])

Hope this will work for you

Thank you


Avatar
Descartar
Nahid Jawad Angon
Autor

TypeError: Mixing apples and oranges: stock.production.lot(4,).concat(0000004) this error show

Bhavin Vekariya

for row in lot_ids:
lot_ids = lot_ids + row.name + '\n'

Because of this code raise error.

lot_ids = id(interger) and row.name = string this two value concate.

Bhavin Vekariya

otherwise replace your line

lot_ids = self.env['stock.production.lot'].search([('product_id.name', '=', rec.name)])

Nahid Jawad Angon
Autor

Same error arise

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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