Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

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

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
odoov11
2902 Vistas
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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Change default location in update quantity on hand window Resuelto
odoov11
Avatar
Avatar
Avatar
2
jul 22
9891
odoo v11 options are missing
odoov11
Avatar
Avatar
1
jun 21
3087
[SOLVED] Get related field Resuelto
odoov11
Avatar
Avatar
2
feb 21
299
Barcode Printing with Zebra GC420T
odoov11
Avatar
Avatar
Avatar
5
sept 20
15061
How to install new module in Odoo 11 Resuelto
odoov11
Avatar
Avatar
Avatar
4
jun 20
50495
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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