İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

TypeError: Mixing apples and oranges

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
2 Cevaplar
2370 Görünümler
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
Vazgeç
Avatar
Mehjabin Farsana
En İyi Yanıt

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
Vazgeç
Avatar
Bhavin Vekariya
En İyi Yanıt

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
Vazgeç
Nahid Jawad Angon
Üretici

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
Üretici

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!

Üye Ol
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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