logistics/logisticsClass/logisticsHead_AU.py

27 lines
706 B
Python
Raw Permalink Normal View History

2025-06-17 13:40:20 +08:00
from logisticsClass.logisticsBaseClass import HeadLogistics, LogisticsType
"""
port:SYD(default)
currency:str = 'CNY'
logistics_type:LogisticsType (海运空运)
"""
class OceanAMSLogistics_EUR(HeadLogistics):
"""欧洲海运"""
logistics_type = LogisticsType.OCEAN # 默认海运
company = "海SY"
country_code = 'AU'
country = 'Australia'
def __init__(self):
super().__init__()
self.head_ratio = 6
class AirAMSLogistics_EUR(HeadLogistics):
"""欧洲空运"""
logistics_type = LogisticsType.AIR
company = "空SYD"
country_code = 'AU'
country = 'Australia'
def __init__(self):
super().__init__()
self.head_ratio = 30