Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

TypeError: Mixing apples and oranges

Odebírat

Get notified when there's activity on this post

This question has been flagged
2 Odpovědi
2363 Zobrazení
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
Zrušit
Avatar
Mehjabin Farsana
Nejlepší odpověď

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
Zrušit
Avatar
Bhavin Vekariya
Nejlepší odpověď

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
Zrušit
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!

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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