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

edit in import sale order line when barcode is not available insert value

Subscribe

Get notified when there's activity on this post

This question has been flagged
odoov11
2896 Views
Avatar
Ali elgarhi



from odoo import api, fields, models, _

from odoo.exceptions import Warning

import binascii

import tempfile

import xlrd

from tempfile import TemporaryFile

from odoo.exceptions import UserError, ValidationError

import logging

_logger = logging.getLogger(__name__)

import io


try:

    import xlrd

except ImportError:

    _logger.debug('Cannot `import xlrd`.')

try:

    import csv

except ImportError:

    _logger.debug('Cannot `import csv`.')

try:

    import base64

except ImportError:

    _logger.debug('Cannot `import base64`.')

        

class order_line_wizard(models.TransientModel):


    _name='order.line.wizard'


    sale_order_file=fields.Binary(string="Select File")

    import_option = fields.Selection([('csv', 'CSV File'),('xls', 'XLS File')],string='Select',default='csv')

    import_prod_option = fields.Selection([('barcode', 'Barcode'),('code', 'Code'),('name', 'Name')],string='Import Product By ',default='name')

    product_details_option = fields.Selection([('from_product','Take Details From The Product'),('from_xls','Take Details From The XLS File'),('from_pricelist','Take Details With Adapted Pricelist')],default='from_xls')


    @api.multi

    def import_sol(self):

        if self.import_option == 'csv':

            keys = ['product', 'quantity', 'uom','description', 'price', 'tax']

            csv_data = base64.b64decode(self.sale_order_file)

            data_file = io.StringIO(csv_data.decode("utf-8"))

            data_file.seek(0)

            file_reader = []

            csv_reader = csv.reader(data_file, delimiter=',')

            try:

                file_reader.extend(csv_reader)

            except Exception:

                raise exceptions.Warning(_("Invalid file!"))

            values = {}

            for i in range(len(file_reader)):

                field = list(map(str, file_reader[i]))

                values = dict(zip(keys, field))

                if values:

                    if i == 0:

                        continue

                    else:

                        if self.product_details_option == 'from_product':

                            values.update({

                                            'product' : field[0],

                                            'quantity' : field[1]

                                        })

                        elif self.product_details_option == 'from_xls':

                            values.update({'product':field[0],

               'quantity':field[1],

               'uom':field[2],

               'description':field[3],

               'price':field[4],

               'tax':field[5]

                                           })

                        else:

                            values.update({

                                            'product' : field[0],

                                            'quantity' : field[1],

                                        })  

                        res = self.create_order_line(values)

        else:

            fp = tempfile.NamedTemporaryFile(delete= False,suffix=".xlsx")

            fp.write(binascii.a2b_base64(self.sale_order_file))

            fp.seek(0)

            values = {}

            workbook = xlrd.open_workbook(fp.name)

            sheet = workbook.sheet_by_index(0)

            for row_no in range(sheet.nrows):

                val = {}

                if row_no <= 0:

                    fields = map(lambda row:row.value.encode('utf-8'), sheet.row(row_no))

                else:

                    line = list(map(lambda row:isinstance(row.value, bytes) and row.value.encode('utf-8') or str(row.value), sheet.row(row_no)))

                    if self.product_details_option == 'from_product':

                        values.update({

                                        'product' : line[0],

                                        'quantity' : line[1]

                                    })

                    elif self.product_details_option == 'from_xls':

                        values.update({'product':line[0],

           'quantity':line[1],

           'uom':line[2],

           'description':line[3],

           'price':line[4],

           'tax':line[5]

                                       })

                    else:

                        values.update({

                                        'product' : line[0],

                                        'quantity' : line[1],

                                    })  

                    res = self.create_order_line(values)

        return res


    @api.multi

    def create_order_line(self,values):

        sale_order_brw = self.env['sale.order'].browse(self._context.get('active_id'))

        product=values.get('product')

        if self.product_details_option == 'from_product':

            if self.import_prod_option == 'barcode':

                product_obj_search=self.env['product.product'].search([('barcode',  '=',values['product'])])

            elif self.import_prod_option == 'code':

                product_obj_search=self.env['product.product'].search([('default_code', '=',values['product'])])

            else:

                product_obj_search=self.env['product.product'].search([('name', '=',values['product'])])

    

            if product_obj_search:

                product_id=product_obj_search

            else:

                raise Warning(_('%s product is not found".') % values.get('product'))

                

            if sale_order_brw.state == 'draft':

                order_lines=self.env['sale.order.line'].create({

                                                'order_id':sale_order_brw.id,

                                                'product_id':product_id.id,

                                                'name':product_id.name,

                                                'product_uom_qty':values.get('quantity'),

                                                'product_uom':product_id.uom_id.id,

                                                'price_unit':product_id.lst_price,

                                                })

            elif sale_order_brw.state == 'sent':

                order_lines=self.env['sale.order.line'].create({

                                                'order_id':sale_order_brw.id,

                                                'product_id':product_id.id,

                                                'name':product_id.name,

                                                'product_uom_qty':values.get('quantity'),

                                                'product_uom':product_id.uom_id.id,

                                                'price_unit':product_id.lst_price,

                                                })

            elif sale_order_brw.state != 'sent' or sale_order_brw.state != 'draft':

                raise UserError(_('We cannot import data in validated or confirmed order.'))

        elif self.product_details_option == 'from_xls':

            uom=values.get('uom')

            if self.import_prod_option == 'barcode':

                product_obj_search=self.env['product.product'].search([('barcode',  '=',values['product'])])

            elif self.import_prod_option == 'code':

                product_obj_search=self.env['product.product'].search([('default_code', '=',values['product'])])

            else:

                product_obj_search=self.env['product.product'].search([('name', '=',values['product'])])

                

            uom_obj_search=self.env['product.uom'].search([('name','=',uom)])

            tax_id_lst=[]

            if values.get('tax'):

                if ';' in  values.get('tax'):

                    tax_names = values.get('tax').split(';')

                    for name in tax_names:

                        tax= self.env['account.tax'].search([('name', '=', name),('type_tax_use','=','sale')])

                        if not tax:

                            raise Warning(_('"%s" Tax not in your system') % name)

                        tax_id_lst.append(tax.id)


                elif ',' in  values.get('tax'):

                    tax_names = values.get('tax').split(',')

                    for name in tax_names:

                        tax= self.env['account.tax'].search([('name', '=', name),('type_tax_use','=','sale')])

                        if not tax:

                            raise Warning(_('"%s" Tax not in your system') % name)

                        tax_id_lst.append(tax.id)

                else:

                    tax_names = values.get('tax').split(',')

                    tax= self.env['account.tax'].search([('name', '=', tax_names),('type_tax_use','=','sale')])

                    if not tax:

                        raise Warning(_('"%s" Tax not in your system') % tax_names)

                    tax_id_lst.append(tax.id)

            

            if not uom_obj_search:

                raise Warning(_('UOM "%s" is Not Available') % uom)


            if product_obj_search:

                product_id=product_obj_search

            else:

                if self.import_prod_option == 'name':

                    product_id=self.env['product.product'].create({'name':product,'lst_price':values.get('price')})

                else:

                                raise Warning(_('%s product is not found" .\n If you want to create product then first select Import Product By Name option .') % values.get('product'))


            if sale_order_brw.state == 'draft':

                order_lines=self.env['sale.order.line'].create({

                                                    'order_id':sale_order_brw.id,

                                                    'product_id':product_id.id,

                                                    'name':values.get('description'),

                                                    'product_uom_qty':values.get('quantity'),

                                                    'product_uom':uom_obj_search.id,

                                                    'price_unit':values.get('price'),

                                                    })

            elif sale_order_brw.state == 'sent':

                order_lines=self.env['sale.order.line'].create({

                                                    'order_id':sale_order_brw.id,

                                                    'product_id':product_id.id,

                                                    'name':values.get('description'),

                                                    'product_uom_qty':values.get('quantity'),

                                                    'product_uom':uom_obj_search.id,

                                                    'price_unit':values.get('price'),

                                                    })

            elif sale_order_brw.state != 'sent' or sale_order_brw.state != 'draft':

                raise UserError(_('We cannot import data in validated or confirmed order.'))

            if tax_id_lst:

                order_lines.write({'tax_id':([(6,0,tax_id_lst)])})

        else:

            if self.import_prod_option == 'barcode':

                product_obj_search=self.env['product.product'].search([('barcode',  '=',values['product'])])

            elif self.import_prod_option == 'code':

                product_obj_search=self.env['product.product'].search([('default_code', '=',values['product'])])

            else:

                product_obj_search=self.env['product.product'].search([('name', '=',values['product'])])

                

            if product_obj_search:

                product_id=product_obj_search

            else:

                if self.import_prod_option == 'name':

                    product_id=self.env['product.product'].create({'name':product,'lst_price':values.get('price')})

                else:

                             product_id=self.env['product.product'].create({'name':product,'lst_price':values.get('price')})


            if sale_order_brw.state == 'draft':

                order_lines=self.env['sale.order.line'].create({

                                                    'order_id':sale_order_brw.id,

                                                    'product_id':product_id.id,

                                                    'product_uom_qty':values.get('quantity'),

                                                    })

                order_lines.product_id_change() 

                order_lines._onchange_discount()                                                   

                                                        

            elif sale_order_brw.state == 'sent':

                order_lines=self.env['sale.order.line'].create({

                                                    'order_id':sale_order_brw.id,

                                                    'product_id':product_id.id,

                                                    'product_uom_qty':values.get('quantity'),

                                                    })

                order_lines.product_id_change() 

                order_lines._onchange_discount()  

                                                                    

            elif sale_order_brw.state != 'sent' or sale_order_brw.state != 'draft':

                raise UserError(_('We cannot import data in validated or confirmed order.'))

        return True


 

0
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
Change default location in update quantity on hand window Solved
odoov11
Avatar
Avatar
Avatar
2
Jul 22
9891
odoo v11 options are missing
odoov11
Avatar
Avatar
1
Jun 21
3087
[SOLVED] Get related field Solved
odoov11
Avatar
Avatar
2
Feb 21
299
Barcode Printing with Zebra GC420T
odoov11
Avatar
Avatar
Avatar
5
Sep 20
15061
How to install new module in Odoo 11 Solved
odoov11
Avatar
Avatar
Avatar
4
Jun 20
50494
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