oca-purchase/odoo-bringout-oca-purchase-workflow-purchase_fop_shipping/purchase_fop_shipping/models/partner.py
Ernad Husremovic 7378b233e9 Add oca-purchase submodule with 96 purchase modules moved from oca-workflow-process
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-30 18:00:40 +02:00

17 lines
476 B
Python

# © 2014-2016 Akretion (http://www.akretion.com)
# @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class ResPartner(models.Model):
_inherit = "res.partner"
fop_shipping = fields.Float(
string="FOP shipping",
help="Min purchase order amount for FOP shipping",
company_dependent=True,
digits="Account",
)