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
This commit is contained in:
26
fusion_so_to_po/__manifest__.py
Normal file
26
fusion_so_to_po/__manifest__.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- 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',
|
||||
}
|
||||
Reference in New Issue
Block a user