香港,台湾,澳门三地携程出票时,地区代码传CN

master
赵鹏 1 year ago
parent a157ca3983
commit 483dda454d

@ -791,7 +791,13 @@ class addorders extends CI_Controller{
$passagersdata[$i]->contactMobile = "";
$passagersdata[$i]->contactEmail = "";
if (!empty($PassagerInfo->BPE_Nationality)){
$passagersdata[$i]->regionCode = $PassagerInfo->BPE_Nationality; //国家简码 美国us ,中国cn
$regionCode = $PassagerInfo->BPE_Nationality;
if ($regionCode =="TW" || $regionCode=="HK" || $regionCode=="MO"){
$passagersdata[$i]->regionCode = "CN";
}else{
$passagersdata[$i]->regionCode = $regionCode; //国家简码 美国us ,中国cn
}
}
$i++;

@ -121,7 +121,7 @@ class User_model extends CI_Model {
WHERE TGI2_TGI_SN = TGI_SN
AND TGI2_LGC = 2
AND LEN(TGI2_Name) > 0
AND TGI2_Name LIKE '23%'
AND TGI2_Name LIKE '24%'
AND TGI_VEI_SN = ?
ORDER BY
TGI2_Name ASC

Loading…
Cancel
Save