Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

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

Subscribe

Get notified when there's activity on this post

This question has been flagged
javascriptpythonxmlodoo
1 Reply
11136 Views
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
Discard
Niyas Raphy (Walnut Software Solutions)

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

Mariem.J
Author

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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Display header only on the first page and footer on the last page Qweb Odoo 14
javascript python xml odoo
Avatar
Avatar
Avatar
2
Aug 24
7658
How to set default values to fields in Odoo 14
javascript python xml odoo
Avatar
Avatar
1
Oct 22
25359
How to create a customized Invoice Report . Odoo 14 Solved
javascript python xml odoo
Avatar
Avatar
Avatar
2
Sep 21
14319
Adding custom field in pos interface ? Odoo 14
javascript python xml odoo
Avatar
Avatar
1
Aug 21
9450
How to hide button on POS base on the value of Boolean field. Odoo 14.
javascript python xml odoo
Avatar
Avatar
1
Jul 21
5294
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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