mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Add delivery_partner, delivery_partner_dhl, delivery_partner_fedex, delivery_partner_ups
This commit is contained in:
19
delivery_partner_ups/models/delivery.py
Normal file
19
delivery_partner_ups/models/delivery.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import re
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class PartnerShippingAccount(models.Model):
|
||||
_inherit = 'partner.shipping.account'
|
||||
|
||||
delivery_type = fields.Selection(selection_add=[('ups', 'UPS')])
|
||||
ups_zip = fields.Char(string='UPS Account ZIP')
|
||||
|
||||
def ups_check_validity(self):
|
||||
m = re.search('^[\dA-Z]{6}$', self.name or '')
|
||||
if not m:
|
||||
raise ValidationError('UPS Account numbers must be 6 Alpha-numeric characters.')
|
||||
m = re.search('^\d{5}$', self.ups_zip or '')
|
||||
if not m:
|
||||
raise ValidationError('UPS requires the 5 digit account ZIP.')
|
||||
Reference in New Issue
Block a user