Files
Odoo-Modules/fusion_so_to_po/__manifest__.py
Nexa Admin f3766c2898 feat: add x_fc_authorizer_number, x_fc_account_number, x_marked_for fields; auto-link authorizer from XML
- fusion_claims: added x_fc_authorizer_number to res.partner for ADP authorizer registration numbers
- fusion_claims: XML parser auto-links authorizer contact to sale order by ADP number
- fusion_claims: removed size=9 constraint from x_fc_odsp_member_id
- fusion_claims: authorizer number shown on OT/PT contact form
- fusion_so_to_po: added x_marked_for (Many2one) field definition on purchase.order
- fusion_so_to_po: added x_fc_account_number on res.partner for vendor account numbers
2026-03-11 17:22:02 +00:00

27 lines
944 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Fusion - Sale Order to Purchase Order',
'author': 'Fusion Products',
'version': '19.0.1.0.0',
'images': ['static/description/icon.png'],
'summary': 'Create Purchase Orders directly from Sale Orders with vendor assignment and cost price mapping.',
'description': """
Fusion - Sale Order to Purchase Order
======================================
Quickly create and manage Purchase Orders from Sale Orders.
Assign vendors per product line, auto-map cost prices, and track
the link between SO and PO in both directions.
""",
'depends': ['base', 'sale_management', 'purchase'],
'license': 'OPL-1',
'data': [
'security/ir.model.access.csv',
'wizard/fusion_purchase_order_wiz.xml',
'wizard/fusion_match_sale_order_wiz.xml',
'views/fusion_so_to_po_views.xml',
],
'installable': True,
'auto_install': False,
'category': 'Sales',
}