地接计划:增加生日,国籍, 护照有效期

hotfix/远程访问多媒体中心
lyt 6 years ago
parent 88ab354418
commit 6a79badf2f

@ -155,7 +155,7 @@ class Tulanduo
$destination = $grd['details'][0]->tocity;
$destination_code = $grd['details'][0]->citycode;
if (empty($destination)) {
$vendor_city = $this->Group_model->get_vendor_city($vas->VAS_VEI_SN);
$vendor_city = $this->ci->Group_model->get_vendor_city($vas->VAS_VEI_SN);
$destination = $vendor_city->cityname;
$destination_code = $vendor_city->citycode;
}
@ -229,6 +229,7 @@ class Tulanduo
}
}
foreach ($guestlist as $key => $vg) {
$this_otherinfo = "";
$this->ci->tldOrderBuilder->setCustomersName($key, $vg->MemberName )
->setCustomersPeopleType($key, (calc_age_type($vg->BirthDay)==1 ? "成人" : "儿童"))
->setCustomersDocumentType($key, "护照") // Passport No.
@ -236,7 +237,15 @@ class Tulanduo
->setCustomersPhoneNo($key, $vg->phone);
if (strval($vg->Country) !== '' && strval($from_country) === '') {
$from_country = $vg->Country;
$this_otherinfo .= $vg->Country;
}
if (strval($vg->BirthDay) !== '') {
$this_otherinfo .= "; 生日:". $vg->BirthDay;
}
if (strval($vg->PassportValidDate) !== '') {
$this_otherinfo .= "; 护照有效期:" . $vg->PassportValidDate;
}
$this->ci->tldOrderBuilder->setCustomersOtherInfo($key, $this_otherinfo);
}
// 客源地
$this->ci->tldOrderBuilder->setCustomerFromCity($from_country);
@ -451,7 +460,7 @@ class Tulanduo
// 客人列表
$from_country = ""; // 客源地
foreach ($train_guest_list as $key => $vg) {
// $this_otherinfo = "";
$this_otherinfo = "";
$this->ci->tldOrderBuilder->setCustomersName($key, $vg->MemberName )
->setCustomersPeopleType($key, ($vg->BPE_GuestType==1 ? "成人" : "儿童"))
->setCustomersDocumentType($key, "护照") // Passport No.
@ -459,8 +468,15 @@ class Tulanduo
;
if (strval($vg->Country) !== '' && strval($from_country) === '') {
$from_country = $vg->Country;
$this_otherinfo .= $vg->Country;
}
// $this_otherinfo .= $this->ci->BIZ_order->GetNationalityName($vg->BPE_Nationality);
if (strval($vg->BirthDay) !== '') {
$this_otherinfo .= "; 生日:". $vg->BirthDay;
}
if (strval($vg->PassportValidDate) !== '') {
$this_otherinfo .= "; 护照有效期:" . $vg->PassportValidDate;
}
$this->ci->tldOrderBuilder->setCustomersOtherInfo($key, $this_otherinfo);
// todo:电话
// if (trim($vf['cold'][0]->GUT_TEL) != "" && $key===0) {
// $this_otherinfo .= "; 电话:";
@ -747,7 +763,15 @@ class Tulanduo
}
if (strval($from_country) === '' && strval($vg->Country) !== '') {
$from_country = $vg->Country;
$this_otherinfo .= "; " . $vg->Country;
}
if (strval($vg->BirthDay) !== '') {
$this_otherinfo .= "; 生日:". $vg->BirthDay;
}
if (strval($vg->PassportValidDate) !== '') {
$this_otherinfo .= "; 护照有效期:" . $vg->PassportValidDate;
}
$this->ci->tldOrderBuilder->setCustomersOtherInfo($key, $this_otherinfo);
}
if (strval($from_country)==='') {
$biz_contact = $this->ci->BIZ_order->get_customer_contact($COLD_SN_str);

Loading…
Cancel
Save