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

good I want to make a subtraction

Subscriure's

Get notified when there's activity on this post

This question has been flagged
1 Respondre
2405 Vistes
Avatar
robinson sosa

Good ask a question regarding this same topic little while ago..

I need help I want to do a double tour and be able to compare that invoces in credit status belongs to each employee and perform a subtraction of the discount_id field in class hr.employee minus the total invoce, and the remaning discount_id is subtracte from another bill.

the subtraction I want to make from the discount class

class employee

 class DiningRoomIndexCord(models.Model):

_rec_name = 'ficha'

_inherit = ['hr.employee']

ficha = fields.Integer(string='Ficha', required=True)

user_float = fields.Float ('suma total')

state = fields.Selection([

('draft', 'Borrador'),

], string=_('Status'), readonly=True, copy=False, index=True, default='draft',)

fixed = fields.Float(string='Base imponible', digits=(64, 2))

fact_id = fields.Many2one('dining.room.invoice', 'factura', readonly="True")

limit_id = fields.Float(string='Limite de Credito', digits=(64, 2) )

discount_id = fields.Float(string='Bono', digits=(64, 2))

currency_id = fields.Many2one('res.currency', 'Currency',

default=lambda self: self.env.user.company_id.currency_id.id, required=True)

class invoice 

class DiningRoom(models.Model):

_name = 'dining.room.invoice'

_order = 'create_date desc'

_rec_name = 'number_invoice'

number_invoice = fields.Char(default=lambda self: _('New'), required=True, string='Nro. de Factura')

amount_untaxed = fields.Float(string='Base imponible', readonly=True, track_visibility='always', compute='_amount_all', store=True, digits=(64, 2))

amount_total = fields.Float(string='Total', readonly=True, track_visibility='always', compute='_amount_all', store=True, digits=(64, 2))

surplus = fields.Float(string='Restante', store=True, digits=(64, 2))

reference = fields.Char(string='Referencia Bancaria:',)

worker = fields.Many2one('hr.employee', 'Ficha del Trabajador:')

available = fields.Integer(string='Cantidad disponible', compute='_remaning')

client = fields.Many2one('dining.room.client', 'Cedula del Cliente:')

currency_id = fields.Many2one('res.currency', 'Currency',

default=lambda self: self.env.user.company_id.currency_id.id, required=True)

product_id = fields.Many2one('dining.products', related='product_ids.product_id', string='Comida')

product_ids = fields.One2many('dining.room.order', 'order_id', string='Productos', required=True, copy=True, store=True)

state = fields.Selection([

('draft', 'Borrador'),

('credit', 'Credito'),

('transfer', 'Tranferencia'),

('cash', 'Efectivo'),

('cancel', 'Anular'),

('paymet', 'Pago'),

], string=_('Status'), readonly=True, copy=False, index=True, default='draft',)

model_room = fields.Selection([

('credit', "Credito"),

('transfer', "Transferencia"),

('cash', "Efectivo"),

],string="Pago", required=True, default='credit')

date = fields.Datetime(string='Fecha', default=fields.Datetime.now)

date2 = fields.Date(string='Fecha')

option = fields.Selection([

('worker','Trabajador'),

('client','Cliente')

],string="Opcion", required=True, default='worker')

prueba = fields.Float(string='Base imponible', digits=(64, 2))

class discount

class DiningRoomDiscount(models.Model):

_name = 'dining.room.discount'

prueba = fields.Integer(string='Base imponible', )

 

worker = fields.Many2one('hr.employee', 'Ficha del Trabajador:',)

fact_id = fields.Many2one('dining.room.invoice', 'factura',)

bond_id = fields.Many2one('dining.room.configuration.bond', 'bono',)

invoice_id = fields.Many2one('dining.room.invoice', 'invoice',) 

ficha = fields.Char(string='ficha', )

currency_id = fields.Many2one('res.currency', 'Currency',

default=lambda self: self.env.user.company_id.currency_id.id, required=True)

@api.multi

def discount_method(self):

for r in self:

bond = r.bond_id.bond

worker = r.worker.name

result = self.env['hr.employee'].search([])

result.write({

'discount_id': bond,

})

for invoice in r.invoice_id:

for worker in invoice.worker:

for record in result:

result_same = self.env['dining.room.invoice'].search([('state','ilike','credit'),('amount_total', '=', bond),('worker.name', '=', record.name)])

for h in result_invoice:

resultado = record.discount_id - h.surplus

h.write({

'surplus': resultado,

})

0
Avatar
Descartar
Avatar
robinson sosa
Autor Best Answer

solved by me after so much thinking..

with one button.

we place a bonus to the employee, then subtract the total amount of each invoce less bonus from the employee to whom the invoice belongs.


we perform the subtraction if the bonus is less than the total oh the invoice, if it is less and if it is greater.

and the invoice the is paid goes to this payment


class DiningRoomDiscount(models.Model):

_name = 'dining.room.discount'

prueba = fields.Integer(string='Base imponible', )

worker = fields.Many2one('hr.employee', 'Ficha del Trabajador:',)

fact_id = fields.Many2one('dining.room.invoice', 'factura',)

bond_id = fields.Many2one('dining.room.configuration.bond', 'bono',)

invoice_id = fields.Many2one('dining.room.invoice', 'invoice',)

ficha = fields.Char(string='ficha', )

currency_id = fields.Many2one('res.currency', 'Currency',

default=lambda self: self.env.user.company_id.currency_id.id, required=True)

@api.multi

def discount_method(self):

for r in self:

bond = r.bond_id.bond

worker = r.worker.name

## SEND BONUS TO EACH EMPLOYEE ##

result = self.env['hr.employee'].search([])

result.write({

'discount_id': bond,

})

## IF THE BONUS IS EQUAL TO THE TOTAL ##

result_same = self.env['dining.room.invoice'].search([('state','ilike','credit'),('amount_total', '=', bond)])

for h in result_same:

for o in h.worker:

resultado = o.discount_id - h.amount_total

result_worker = self.env['hr.employee'].search([('name', '=', o.name)])

for worker in result_worker:

worker.write({

'discount_id': resultado,

})

h.write({

'surplus': resultado,

'state': 'paymet',

})

## IF THE BONUS IS LESS TO THE TOTAL ##

result_less = self.env['dining.room.invoice'].search([('state','ilike','credit'),('amount_total', '<', bond)])

for h in result_less:

for o in h.worker:

resultado = o.discount_id - h.amount_total

result_worker_less = self.env['hr.employee'].search([('name', '=', o.name)])

for worker in result_worker_less:

worker.write({

'discount_id': resultado,

})

h.write({

'state': 'paymet',

'surplus': resultado,

})

## IF THE GREATER IS EQUAL TO THE TOTAL ##

result_higher = self.env['dining.room.invoice'].search([('state','ilike','credit'),('amount_total', '>', bond)])

for h in result_higher:

for o in h.worker:

resultado = h.amount_total - o.discount_id

result_worker_higher = self.env['hr.employee'].search([('name', '=', o.name)])

for worker in result_worker_higher:

worker.write({

'discount_id': resultado,

})

h.write({

'surplus': resultado,

})

0
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
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