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
    • Estate Managament
    • 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

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
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

"Undefined get method" error after installing unrelated model

Odoberať

Get notified when there's activity on this post

This question has been flagged
errorcustomsale.order
2 Replies
4892 Zobrazenia
Avatar
Travis Waelbroeck

I have one custom module, which makes some changes to totals for my sales orders.

It works exactly as it is designed.


However, when I make another change to the sale order (such as adding a domain value to the product ID) from a different custom module, I end up getting an "Undefined get method" error.


I can manually upgrade the 1st (complex) module and both features work appropriately.


1) Why do I need to manually upgrade the 1st module? 
2) Can I make it such that I don't need to?

0
Avatar
Zrušiť
Prakash

please post your code here

Travis Waelbroeck
Autor

I created an answer with relevant code (unable to edit original question). Thanks.

Avatar
Travis Waelbroeck
Autor Best Answer

Update:

I'm unable to edit my original question (403 Forbidden Error), so here is the relevant code from our custom modules.

Complex Module

openerp.py

...

'depends': ['base', 'account', 'account_accountant', 'sale', 'sale_order_travis'],

'installable': True,

'auto_install': False,

'application': True,

...

sale_discount.py

from __future__ import division

from openerp import fields, models, api, osv

import openerp.addons.decimal_precision as dp

import math

class saleorder_discount(models.Model):

_inherit = 'sale.order'

fee_type = fields.Selection([('Blind Ship', 'Blind Ship'), ('Blind Ship Rush', 'Blind Ship Rush')], string='Fee Type',

states={'draft': [('readonly', False)]},

help='Fee is percentage of subtotal plus fixed fee')

minimum_order_fee_exempt = fields.Boolean('Exempt from Minimum Order Fee', help='If checked, customer will not be charged any fees even if the order is under the minimum.')

discounted_amount = fields.Float(string='Fees', store=True, readonly=True, compute='compute_amounts')

amount_total = fields.Float(string='Total', digits=dp.get_precision('Account'),

store=True, readonly=True, compute='compute_amounts')

def _prepare_invoice(self, cr, uid, order, lines, context=None):

res = super(saleorder_discount, self)._prepare_invoice(cr, uid, order, lines, context=context)

res.update({'fee_type' : order.fee_type,

'minimum_order_fee_exempt' : order.minimum_order_fee_exempt})

return res

@api.one

@api.onchange('minimum_order_fee_exempt','fee_type')

@api.depends('order_line.price_subtotal', 'discounted_amount', 'fee_type', 'minimum_order_fee_exempt')

def compute_amounts(self):

self.amount_untaxed = sum(line.price_subtotal for line in self.order_line)

# Get "order amount" without shipping charges because they don't count towards the minimum

price_shipping = 0

for line in self.order_line:

if line.product_id.default_code in ['mage_shipping','Shipping Charge'] or line.name in ['Magento Shipping','Shipping Charge']:

price_shipping += line.price_subtotal

elif line.name in ['Discount - Low Order Fee']:

self.minimum_order_fee_exempt = True

price_subtotal_excluding_shipping = self.amount_untaxed - price_shipping

val = 0

minimum_order_amt = 25.00

if self.name.count('-') >= 2:

self.minimum_order_fee_exempt = True

if price_subtotal_excluding_shipping < minimum_order_amt and not self.minimum_order_fee_exempt:

low_order_fee = 10.00

else:

low_order_fee = 0.00

for line in self.order_line:

val += self._amount_line_tax(line)

print "Fee Type: " + str(self.fee_type)

if self.fee_type == 'Blind Ship Rush':

fee_fixed = 20.00

fee_percentage = 0.05

amount_to_dis = round( (price_subtotal_excluding_shipping) * (fee_percentage) , 2)

self.discounted_amount = amount_to_dis + fee_fixed + low_order_fee

self.amount_total = self.amount_untaxed + val + amount_to_dis + fee_fixed + low_order_fee

elif self.fee_type == 'Blind Ship':

fee_fixed = 10.00

fee_percentage = 0.035

amount_to_dis = round( (price_subtotal_excluding_shipping) * (fee_percentage) , 2)

self.discounted_amount = amount_to_dis + fee_fixed + low_order_fee

self.amount_total = self.amount_untaxed + val + amount_to_dis + fee_fixed + low_order_fee

elif price_subtotal_excluding_shipping < minimum_order_amt and not self.minimum_order_fee_exempt:

self.discounted_amount = low_order_fee

self.amount_total = self.amount_untaxed + val + low_order_fee

else:

self.discounted_amount = 0

self.amount_total = self.amount_untaxed + val

print "Fees: $" + str(self.discounted_amount)

print "Amount Total: $" + str(self.amount_total)

Simple Module

It is changing position of a field on the product view. Completely unrelated from sales order.

...

<record id="product_mpn_search_view" model="ir.ui.view">

<field name="name">Search for MPN (Supplier Default Code)</field>

<field name="model">product.template</field>

<field name="inherit_id" ref="product.product_template_search_view"/>

<field name="arch" type="xml">

<field name="name" position="after">

<field name="seller_ids" string="MPN" filter_domain="[('seller_ids.product_code','ilike',self)]" />

</field>

</field>

</record>

...

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
Related Posts Replies Zobrazenia Aktivita
how to solve product.uom error
error custom
Avatar
Avatar
2
mar 15
12897
how to use domain defferent fields of object in odoo v14 , blow my code...
custom sale.order stock.tracking
Avatar
Avatar
1
jan 23
2932
Custom field in Sale Order?
field custom sale.order
Avatar
0
mar 15
4242
Can´t install custom modules odoo 8.0
error module custom
Avatar
Avatar
2
mar 15
7374
Record does not exist or has been deleted (Record: sale.order(145723,), User: 2) 
error delete sale.order needhelp
Avatar
0
feb 24
1684
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 ภาษาไทย 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