bemade-addons/batch_picking_create_one_bill/__manifest__.py
Marc Durepos 99e3ed03a7 batch_picking_create_one_bill: major rework
Fixes an issue where creating the bills from the purchase orders could
create a bill with quantities vastly different from the received batch
quantities. This would happen when the purchase orders had lines with
quantities to invoice that did not match the receipt quantities.

Instead of creating the bills from the POs, we now generate the bill
and its line values directly from the quantities on the move lines
related to the batch.
2025-03-12 17:49:37 -04:00

34 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
{
"name": "Batch Picking - Create One Bill",
"version": "18.0.1.0.0",
"category": "Inventory/Purchase",
"summary": "Créer une seule facture fournisseur pour tous les bons de commande d'un batch picking",
"description": """
Ce module permet de générer une seule facture fournisseur pour tous les bons de commande
associés à un batch picking.
Fonctionnalités:
- Option pour initialiser les quantités à zéro lors de la création d'un batch
- Bouton pour créer une facture groupée à partir d'un batch de transferts
- Validation que tous les bons de commande proviennent du même fournisseur
- Suivi des factures créées directement depuis le batch
""",
"author": "Pneumac",
"website": "https://www.pneumac.ca",
"depends": [
"stock_picking_batch",
"purchase",
"purchase_stock",
"account",
"account_reports",
],
"data": [
"wizard/stock_picking_to_batch_views.xml",
"views/stock_picking_batch_views.xml",
],
"installable": True,
"application": False,
"auto_install": False,
"license": "LGPL-3",
}