Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

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

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
odoov11
2897 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Change default location in update quantity on hand window Rezolvat
odoov11
Imagine profil
Imagine profil
Imagine profil
2
iul. 22
9891
odoo v11 options are missing
odoov11
Imagine profil
Imagine profil
1
iun. 21
3087
[SOLVED] Get related field Rezolvat
odoov11
Imagine profil
Imagine profil
2
feb. 21
299
Barcode Printing with Zebra GC420T
odoov11
Imagine profil
Imagine profil
Imagine profil
5
sept. 20
15061
How to install new module in Odoo 11 Rezolvat
odoov11
Imagine profil
Imagine profil
Imagine profil
4
iun. 20
50495
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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