Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Property Management
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Get the ticket ID (& title) inside python - raise ValueError

Odoberať

Get notified when there's activity on this post

This question has been flagged
2 Replies
3248 Zobrazenia
Avatar
Lukas Schreiber

Hi,

I'm trying to customize a python code within Odoo V12 which is passing details from an ticket into a bill.

This is working so far (not coded by myself):

def _prepare_invoice_line_details(self, line, desc_rule):
        details = []
        if desc_rule[0] == '1':
            employee=self.env['hr.employee'].search([('id','=',line.employee_id.id)])
            details.append("\n" + employee.name)
            details.append(datetime.strftime(datetime.strptime(fields.Date.to_string(line.date), '%Y-%m-%d'), '%d.%m.%Y'))
        if desc_rule[1] == '1':
            details.append("%s %s" % (line.unit_amount, line.product_uom_id.name))
            details.append(line.x_studio_ort_der_leistungserbringung)
        if desc_rule[2] == '1':
            details.append(line.x_studio_zeitraum + "\n" + line.name)
        return details

...
...
...


It's almost the same as here: https://code.compassfoundation.io/odoo/care_center/blob/ba5b4ee9d15f9dcf070bdde808c0eae7add1db9e/care_center_timesheets/models/sale_order.py with just some additional values.

It's just collecting the information from an ticket within the description columns and passing it to the billing process.
Now I have added 2 additional columns and they should also be passed to this function. I have added these 2 fields with the studio manager which was quite simple and also the first field was quite easy to handle by adding this:

details.append(line.x_studio_abrechnungsart)

But with the other column I'm struggling.
It's a related field which is actually just the Ticket title + ID:


I can't attach an screenshot, so I'm trying to "draw" it:

----------------------------------------------------------------------------------------
date | employee | description | billing type | ticket | duration |

21.04.20 | Gerad | broken login data | goodwill | Test Ticket (#1620) | 0:30

----------------------------------------------------------------------------------------

(so it's regarding the fat formatted, billing type I was able to do by myself, unfortunately "ticket" (underlined) I wasn't able) 

Note: This filed will later be marked as invisible, I just abuse the field because I thought it will be much more easier to get the needed value because I can use following line as an template:

employee=self.env['hr.employee'].search([('id','=',line.employee_id.id)])

So I have tried to do the following:

helpid=self.env['helpdesk.ticket'].search([('helpdesk_ticket_id','=',line.helpdesk_ticket_id.id)])
details.append(helpid)

But now, when I try to generate the bill, I'm receiving this error message:

raise ValueError("Invalid field %r in leaf %r" % (left, str(leaf)))
ValueError: Invalid field 'helpdesk_ticket_id' in leaf "<osv.ExtendedLeaf: ('helpdesk_ticket_id', '=', 1620) on helpdesk_ticket (ctx: )>"

As you can see there is the correct Ticket-ID (1620) but I wasn't able to fix this.

Additional information: It would also be no problem to get the Ticket ID anyway else, as already mentioned I only abusing this extra column to display the ticket title + ID.

It would be also great if also the ticket-title (in the example "test ticket") will be fetched and not only the ID (1620 in the example), but if not it's also ok.


Can somebody please assist and tell me what I'm doing wrong here?


Best regards.

0
Avatar
Zrušiť
Avatar
Lukas Schreiber
Autor Best Answer

Hi,

thanks for the answer. 
Ahh, yeah sure, I don't have helpdesk_ticket_id inside the helpdesk.ticket model.

I have changed it. This is working now. Thank you.

For the Title / Ticket-name I would need to fetch another field as I can comprehend?
(Not important but may interesting to add this in the future)

Best regards. 

0
Avatar
Zrušiť
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

Did you have a field named helpdesk_ticket_id inside the helpdesk.ticket model ? If not that is why you are getting the error. 

It seems you have wrongly given it instead of id .

helpid=self.env['helpdesk.ticket'].search([('helpdesk_ticket_id','=',line.helpdesk_ticket_id.id)])

Change the above line of code to as follows and see,

helpid=self.env['helpdesk.ticket'].search([('id','=',line.helpdesk_ticket_id.id)])


Thanks

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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