Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

The operation cannot be completed: - Create/update: a mandatory field is not set. - Delete: another model requires the record being deleted…Odoo 14

Subscriure's

Get notified when there's activity on this post

This question has been flagged
javascriptpythonxmlodoo
1 Respondre
11334 Vistes
Avatar
Mariem.J


I want to create orders from backend pos. So, I made button CREATE in pos.order visible. But when clicking on button , I got this error :


The operation cannot be completed:

- Create/update: a mandatory field is not set.

- Delete: another model requires the record being deleted. If possible, archive it instead.


Model: Point of Sale Orders (pos.order), Field: Returned (amount_return)


Here is my code:

//.xml


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

        <field name="name">view_pos_order_create_extend</field>

        <field name="model">pos.order</field>

        <field name="inherit_id" ref="point_of_sale.view_pos_order_tree"/>

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

             <xpath expr="//tree" position="attributes">

                 <attribute name="create">1</attribute>

            </xpath>

        </field>

    </record>


//.py


 class PosOrderExtend(models.Model):

    _inherit = "pos.order"

    _description = "Point of Sale Orders"

    _order = "id desc"


      @api.onchange('payment_ids', 'lines', 'partner_id')

        def _onchange_amount_all(self):

            for order in self:

                currency = self.env.company.currency_id

                if self.partner_id.property_product_pricelist.currency_id:

                    currency = self.partner_id.property_product_pricelist.currency_id

                order.amount_paid = sum(payment.amount for payment in order.payment_ids)

                order.amount_return = sum(payment.amount < 0 and payment.amount or 0 for payment in order.payment_ids)

                order.amount_tax = currency.round(

                    sum(self._amount_line_tax(line, order.fiscal_position_id) for line in order.lines))

                amount_untaxed = currency.round(sum(line.price_subtotal for line in order.lines))

                order.amount_total = order.amount_tax + amount_untaxed


What's wrong please? How can I fix it ? Thanks.

1
Avatar
Descartar
Niyas Raphy (Walnut Software Solutions)

See: https://www.youtube.com/watch?v=bP2IsIgzhfU&list=PLqRRLx0cl0hoiTewSTzSQ3HJ-Vqhh43k0&index=1

Mariem.J
Autor

For field 'amount_return' , I added it in function of standard Odoo: def _complete_values_from_session(self, session, values):

if values.get('state') and values['state'] == 'paid':

values['name'] = session.config_id.sequence_id._next()

values.setdefault('pricelist_id', session.config_id.pricelist_id.id)

values.setdefault('fiscal_position_id', session.config_id.default_fiscal_position_id.id)

values.setdefault('company_id', session.config_id.company_id.id)

values.setdefault('amount_return', self.amount_return)

return values;

but now I got same error with field 'product_id'.

I couldn't fix it I got always error : 'pos.order' object ,has no attribute 'product_id' , How can fix it please? @Niyas Raphy

Avatar
Begineer
Best Answer

Hi Cristina,

  I see that your inheriting the onchange and the create function of pos.order ,

1. In your def create your returning amount_return which is a mandatory field and by default this field gets value only on onchange, but you are returning  it on create.

2. During the create button, i hope there wont be any payment_ids  because, only if there is any payment you get the value for amount_return, i got this from this loc 
order.amount_return = sum(payment.amount < 0 and payment.amount or 0 for payment in order.payment_ids)

3. I guess so the error  a mandatory field is not set delete .

4. On your convo with Mr. @Niyas Raphy

 'pos.order' object ,has no attribute 'product_id'

For your info, product_id is present in the model pos.order.line    in your code, somewhere you are referencing  product_id from  pos.order

For example : when you iterate through the one2many lines in pos.order 

for each in self:

    for line in each.lines:

        each.product_id  // must be line.product_id

Hope it helps,

Thanks


1
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Display header only on the first page and footer on the last page Qweb Odoo 14
javascript python xml odoo
Avatar
Avatar
Avatar
2
d’ag. 24
7960
How to set default values to fields in Odoo 14
javascript python xml odoo
Avatar
Avatar
1
d’oct. 22
25615
How to create a customized Invoice Report . Odoo 14 Solved
javascript python xml odoo
Avatar
Avatar
Avatar
2
de set. 21
14635
Adding custom field in pos interface ? Odoo 14
javascript python xml odoo
Avatar
Avatar
1
d’ag. 21
9666
How to hide button on POS base on the value of Boolean field. Odoo 14.
javascript python xml odoo
Avatar
Avatar
1
de jul. 21
5433
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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