Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

good I want to make a subtraction

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
1 Balas
2409 Tampilan
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
Buang
Avatar
robinson sosa
Penulis Jawaban Terbai

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
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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