Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

concatenate another field with label in account.move.line

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
accountingodoo
1 Balas
4956 Tampilan
Avatar
Asmaa

I added field to account.move.line and i conactenate it with name field  but the error occurs 
this is the code:

class AccountMove(models.Model):
_inherit = 'account.move.line'

hat_qty = fields.Float(string="QTY", compute='_compute_hat_qty', store=True)

@api.depends('product_id', 'move_id')
def _compute_hat_qty(self):
for line in self:
if line.move_id and line.move_id.stock_move_id:
line.hat_qty = line.move_id.stock_move_id.product_uom_qty
else:
line.hat_qty = 1
if
line.name:
line.name=line.name+" QTY = "+str(line.hat_qty)

This is the error:
the error in the cocatenation process any help?

 File "/home/odoo/src/user/hat_quantity/models/account_move.py", line 17, in _compute_hat_qty
    line.name=line.name+"       QTY  =  "+str(line.hat_qty)
  File "/home/odoo/src/odoo/odoo/fields.py", line 1242, in __set__
    records.write({self.name: write_value})
  File "/home/odoo/src/odoo/addons/account/models/account_move.py", line 4876, in write
    self.mapped('move_id')._check_balanced()
  File "/home/odoo/src/odoo/addons/account/models/account_move.py", line 2144, in _check_balanced
    moves = self.filtered(lambda move: move.line_ids)
  File "/home/odoo/src/odoo/odoo/models.py", line 5500, in filtered
    return self.browse([rec.id for rec in self if func(rec)])
  File "/home/odoo/src/odoo/odoo/models.py", line 5500, in 
    return self.browse([rec.id for rec in self if func(rec)])
  File "/home/odoo/src/odoo/addons/account/models/account_move.py", line 2144, in 
    moves = self.filtered(lambda move: move.line_ids)
  File "/home/odoo/src/odoo/odoo/fields.py", line 3402, in __get__
    return super().__get__(records, owner)
  File "/home/odoo/src/odoo/odoo/fields.py", line 2617, in __get__
    return super().__get__(records, owner)
  File "/home/odoo/src/odoo/odoo/fields.py", line 1108, in __get__
    recs._fetch_field(self)
  File "/home/odoo/src/odoo/odoo/models.py", line 3278, in _fetch_field
    self._read(fnames)
  File "/home/odoo/src/odoo/odoo/models.py", line 3296, in _read
    self.flush(fields, self)
  File "/home/odoo/src/odoo/odoo/models.py", line 5661, in flush
    self.recompute(fnames, records=records)
  File "/home/odoo/src/odoo/odoo/models.py", line 6133, in recompute
    if records is not None and not any(
  File "/home/odoo/src/odoo/odoo/models.py", line 6134, in 
    records & self.env.records_to_compute(field)
  File "/home/odoo/src/odoo/odoo/api.py", line 743, in records_to_compute
    return self[field.model_name].browse(ids)
  File "/home/odoo/src/odoo/odoo/api.py", line 540, in __getitem__
    return self.registry[model_name]._browse(self, (), ())
  File "/home/odoo/src/odoo/odoo/models.py", line 5155, in _browse
    records = object.__new__(cls)
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/odoo/src/odoo/odoo/http.py", line 654, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/home/odoo/src/odoo/odoo/http.py", line 301, in _handle_exception
    raise exception.with_traceback(None) from new_cause
RecursionError: maximum recursion depth exceeded while calling a Python object


0
Avatar
Buang
Avatar
Niyas Raphy (Walnut Software Solutions)
Jawaban Terbai

Hi,

Update your compute function as below:

@api.depends('product_id', 'move_id')
def _compute_hat_qty(self):
for line in self:
if line.move_id and line.move_id.stock_move_id:
hat_qty = line.move_id.stock_move_id.product_uom_qty
else:
hat_qty = 1
if line.name:
line.name = line.name + " QTY = " + str(hat_qty)
line.hat_qty = hat_qty


Thanks

0
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Add custom filter in financial reports odoo17
accounting odoo
Avatar
Avatar
Avatar
3
Jan 25
7429
Aged Receivable report total amount is different in general ledger account odoo14
accounting odoo
Avatar
0
Sep 21
4277
Problems installing chart of accounts
accounting odoo
Avatar
0
Mar 15
6096
Accounting app on localhost Diselesaikan
accounting installation odoo
Avatar
Avatar
Avatar
Avatar
3
Mei 25
7826
Odoo 9 - Back up entire accounting / sales / etc
accounting backup odoo
Avatar
Avatar
2
Mei 24
1916
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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