新加箱型

master
jianghaiqing 2 months ago
parent e436aa3645
commit 35d7cd1dee

@ -1051,5 +1051,96 @@
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "TemperatureSet",
"name": "设置温度",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 82,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "TemperatureMin",
"name": "最低温度",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 82,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "TemperatureMax",
"name": "最高温度",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 83,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "Humidity",
"name": "湿度",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 84,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "ReeferQuantity",
"name": "冷藏通风量",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 85,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "DischargePort",
"name": "卸货港",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 86,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
},
{
"code": "Destination",
"name": "目的地",
"group_key": "",
"group_sort": 0,
"group_bef_split": null,
"sort": 87,
"is_display": true,
"is_parent": false,
"parent_code": null,
"is_pkey": false,
"allow_system_code": []
}
]

@ -356,6 +356,41 @@ namespace DAJYun.Application
/// 计费时间
/// </summary>
public string PriceCalculationDate { get; set; }
/// <summary>
/// 设置温度
/// </summary>
public string TemperatureSet { get; set; }
/// <summary>
/// 最低温度
/// </summary>
public string TemperatureMin { get; set; }
/// <summary>
/// 最高温度
/// </summary>
public string TemperatureMax { get; set; }
/// <summary>
/// Desc:湿度
/// </summary>
public string Humidity { get; set; }
/// <summary>
/// 冷藏通风量
/// </summary>
public string ReeferQuantity { get; set; }
/// <summary>
/// 卸货港
/// </summary>
public string DischargePort { get; set; }
/// <summary>
/// 目的地
/// </summary>
public string Destination { get; set; }
}
/// <summary>
@ -423,5 +458,7 @@ namespace DAJYun.Application
/// </summary>
public string ReturnCTNYard { get; set; }
}
}

@ -982,6 +982,11 @@ namespace DAJYun.Application.TaskManagePlatDomain
//40OH
ctnInfo.CtnALL = "40OH";
}
else if (Regex.IsMatch(ctnCode, "40\\s+FLAT\\s+9\\s+6"))
{
//40FR
ctnInfo.CtnALL = "40FR";
}
else if (Regex.IsMatch(ctnCode, "20\\s+REEF\\s+8\\s+6"))
{
//20RF

@ -1210,6 +1210,11 @@ namespace DAJYun.Application.TaskManagePlatDomain
//40OH
ctnInfo.CtnALL = "40OH";
}
else if (Regex.IsMatch(ctnCode, "40\\s+FLAT\\s+9\\s+6"))
{
//40FR
ctnInfo.CtnALL = "40FR";
}
else if (Regex.IsMatch(ctnCode, "20\\s+REEF\\s+8\\s+6"))
{
//20RF

Loading…
Cancel
Save