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
    • 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 Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and 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
  • 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

How to validate stock.picking automaticaly after invoice get paid?

Abonare

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

Această întrebare a fost marcată
stock_pickingaccount.movesale.orderdeliveryorderv14
5293 Vizualizări
Imagine profil
Tri Nanda

I have a custom module on Odoo14,


I have do customization that generate sale sale.order automatically after clicking on my custom button.


But for now, I want to do, if Invoice (from account.move) got paid, I want my all of my items on stock.picking get deliver, which is the Invoice and stock.picking is related on the same sale.order.


So far, I try to make it like this:

class AccountMove(models.Model):
_inherit = "account.move"

course_registration_id = fields.Many2one('aqur.course.registration',
string='Course Registration ID', readonly=True, tracking=True,
states={'draft': [('readonly', False)]}, change_default=True)
course_registration_number = fields.Char(related='course_registration_id.course_registration_number',
string='Course Registration Number')

def write(self, vals):
invoice_course = self.env['account.move'].search(
[('course_registration_id', '!=', False), ('course_registration_number', '!=', False)])

for rec in invoice_course:
stock_picking = self.env['stock.picking'].search(
[('course_registration_id', '=', rec.course_registration_id.id),
('course_registration_number', '=', rec.course_registration_number)])

if rec.payment_state == 'paid' and stock_picking:
for mv in stock_picking.move_ids_without_package:
mv.quantity_done = mv.product_uom_qty
stock_picking.button_validate()

return super(AccountMove, self).write(vals)

But I got this message when I do payment on my invoice:

You cannot validate a transfer if no quantities are reserved nor done. To force the transfer, switch in edit mode and encode the done quantities.
I also do testing to fill the quantity done on stock.picking by manually edit on the form,
but when I do register payment on my invoice, I always got the error.

So, whats wrong in my code?,
please, any help, source or tutorial to do achive that will be very appreaciated.

Thanks,
Tri Nanda
0
Imagine profil
Abandonează
Ermin Trevisan

Invoice payment and deliveries are not related from a VAT and the logistics Point of View. This does not mske any sense to me.

Tri Nanda
Autor

Hi Ermin, this is for small enough business, the cashier that do register payment on invoice is the same people that deliver the product on stock.picking.

Just to make the process be short,
after a cashier do register payment and the invoice is paid, deliver the product on stock.picking automatically.

why don't just use POS?
for many of reasons on our process and features, we don't use POS for this,
like, our customer should can see their sale and invoice on their own portal, and others considered things.

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
Update Sales Person field based on action
account.move sale.order salesperson v14
Imagine profil
Imagine profil
1
oct. 22
2924
Creating a Sales Order that does an Internal Transfer. Help!
sale.order deliveryorder
Imagine profil
Imagine profil
1
oct. 25
525
[odoo14][delivery]Log note in every delivery order show the delivery cost of sale order
deliveryorder v14
Imagine profil
0
iun. 22
2418
Group account.move lines by account
account.move v14
Imagine profil
0
mar. 22
4060
creating invoices in accounting module from sales modules
account.move sale.order
Imagine profil
0
aug. 21
2994
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