İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Reverse Transfer - how to stop returning more than was delivered - Odoo.sh v16

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
returnsodoo
1 Cevapla
3717 Görünümler
Avatar
Roy Antunovich

How do I stop a reverse transfer from being done for more than the delivered quantity on the Sales Order? At the moment my team can change the quantity on the Reverse Transfer to more than was delivered, this then leave the sales order with a negative delivered quantity.

I have a simple Automated action that stops delivering more product than is ordered. This is run on the Stock Move model, matching all records, and executes the python code.

if record.product_uom_qty

  raise UserError("You can't transfer more than the Initial Demand!")


I can't work out how to write this for a Reverse Transfer (Return Picking model) where the quantity gets compared to the delivered quantity on the sales order.

Any help would be appreciated.

0
Avatar
Vazgeç
Luis Jacobo

We are in the same page mate, can you share the server action for avoid delivering more product than is ordered?

Thanks.

Avatar
Gracious Joseph
En İyi Yanıt

To stop a reverse transfer in Odoo 16 from being done for more than the delivered quantity, you can implement an automated action or override the relevant Odoo method to enforce this restriction.

Here’s how you can implement this:

1. Understanding the Requirement

  • Reverse Transfer: This process is initiated from the original delivery picking to return goods.
  • Delivered Quantity: You need to ensure that the return quantity does not exceed the delivered quantity.

2. Automated Action Approach

You can create an Automated Action that validates the return picking quantity before confirmation.

Steps to Create Automated Action

  1. Activate Developer Mode:
    • Go to Settings > Activate Developer Mode.
  2. Navigate to Automated Actions:
    • Go to Settings > Technical > Automated Actions.
  3. Create a New Automated Action:
    • Model: stock.move
    • Trigger: On Creation & Update
    • Condition: Add a domain to target only reverse transfers:
      [('picking_type_id.code', '=', 'incoming'), ('origin_returned_move_id', '!=', False)]
      
    • Python Code:
      for record in records:
          if record.origin_returned_move_id:
              delivered_qty = record.origin_returned_move_id.quantity_done
              if record.quantity_done > delivered_qty:
                  raise UserError(
                      "You cannot return more than the delivered quantity! Delivered: %s, Trying to Return: %s" %
                      (delivered_qty, record.quantity_done)
                  )
      

3. Server-Side Method Override (Recommended)

If your team is familiar with Odoo development, overriding the button_validate method on the stock.picking model ensures this logic is enforced at the server level.

Steps to Implement

  1. Create a Custom Module: If you don’t have one already, create a custom module.
  2. Extend the stock.picking Model: Override the button_validate method to add validation for reverse transfers.
    Code Example:
    from odoo import models, api
    from odoo.exceptions import UserError
    
    class StockPicking(models.Model):
        _inherit = 'stock.picking'
    
        @api.model
        def button_validate(self):
            for move in self.move_ids_without_package:
                if move.origin_returned_move_id:
                    delivered_qty = move.origin_returned_move_id.quantity_done
                    if move.quantity_done > delivered_qty:
                        raise UserError(
                            "You cannot return more than the delivered quantity! Delivered: %s, Trying to Return: %s" %
                            (delivered_qty, move.quantity_done)
                        )
            return super(StockPicking, self).button_validate()
    
  3. Restart the Server and Upgrade the Module:
    • Restart the Odoo server.
    • Upgrade the module.
    ./odoo-bin -u your_custom_module_name
    

4. Testing

  • Create a sales order and confirm delivery.
  • Initiate a reverse transfer.
  • Try to input a return quantity greater than the delivered quantity.
  • The system should block the operation and raise an appropriate error message.

5. Additional Considerations

  • Multi-Line Validation: If reverse transfers have multiple lines, ensure the logic applies to all lines.
  • Negative Quantities: Check if your setup allows negative stock, as this can also affect the validation.
  • Customizable Messaging: You can improve user feedback by including the product name or other relevant details in the error message.

6. Advantages of the Method

  • Automated Action: Quick to implement with minimal technical involvement.
  • Server-Side Method: More robust and ensures the rule is enforced even if users bypass the UI (e.g., through API).

By implementing one of these approaches, you can effectively prevent your team from returning more items than were delivered, maintaining accurate stock and sales order records. Let me know if you need further clarification or help!

0
Avatar
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Not returning list view Çözüldü
returns odoo odoo12
Avatar
Avatar
Avatar
4
Tem 19
4757
SOC 1 Report
odoo
Avatar
Avatar
2
Kas 25
241
邮箱无法正常使用
odoo
Avatar
Avatar
1
Kas 25
2240
How do I go about this error? I am trying to uninstall a module
odoo
Avatar
Avatar
1
Kas 25
3467
How to import product variants with my own external id when using dynamic creation mode Çözüldü
odoo
Avatar
Avatar
2
Ağu 25
4033
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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