utils.class.php 73 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544
  1. <?php
  2. if (!defined('IN_ONLINE')) {
  3. exit('Access Denied');
  4. }
  5. /**
  6. * Description of utilsclass
  7. *
  8. * @author Administrator
  9. */
  10. class utils {
  11. public static function checkPassword($password,$rule="",$user_login="") {
  12. $str ="";
  13. if (!empty($rule)) {
  14. //是否校验大小写
  15. if (!empty($rule["hasOneUpperChar"])&&$rule["hasOneUpperChar"]) {
  16. if (!preg_match('/[A-Z]/',$password)) {
  17. $str ="Password must contain uppercase letters";
  18. }
  19. }
  20. //是否校验小写
  21. if (!empty($rule["hasOneLowerChar"])&&$rule["hasOneLowerChar"]) {
  22. if (!preg_match('/[a-z]/',$password)) {
  23. $str ="Password must contain lowercase letters";
  24. }
  25. }
  26. //是否存在数字
  27. if (!empty($rule["hasOneNumberChar"])&&$rule["hasOneNumberChar"]) {
  28. if (!preg_match('/[0-9]/',$password)) {
  29. $str ="Password must contain numbers";
  30. }
  31. }
  32. $sql = "select user_type from ra_online_user_roles_rel where upper(user_login)=upper('".$user_login."') and exists(select count(0) from ra_online_user where upper(user_login)=upper('".$user_login."') and is_desktop=true) order by id desc limit 1;";
  33. $user_type = common::excuteOneSql($sql);
  34. if (!empty($user_type)&&$user_type=="Super User") {
  35. if (strlen($password)<$rule["SuperMinLen"]||strlen($password)>$rule["SuperMaxLen"]) {
  36. $str ="Super user password length between ".$rule["SuperMinLen"]." and ".$rule["SuperMaxLen"];
  37. }
  38. }else{
  39. //校验密码长度
  40. if (strlen($password)<$rule["MinLen"]||strlen($password)>$rule["MaxLen"]) {
  41. $str ="Password length between ".$rule["MinLen"]." and ".$rule["MaxLen"];
  42. }
  43. }
  44. return $str;
  45. }else{
  46. if (preg_match('/^\d*$/', $password) || preg_match('/^[a-zA-Z]+$/', $password)) {
  47. $str ="Must include letters and numbers";
  48. }
  49. $len = strlen($password);
  50. $t = substr($password, 0, 1);
  51. for ($i = 1; $i < $len; $i++) {
  52. $t1 = substr($password, $i, 1);
  53. if ($t != $t1) {
  54. return "";
  55. }
  56. }
  57. return "error";
  58. }
  59. }
  60. //隐藏邮箱地址
  61. public static function maskEmail($email) {
  62. $idex = strlen($email) - strrpos($email, ".");
  63. $mask = substr($email, 0, 1) . str_repeat('*', 6) . "@" . str_repeat('*', 3) . substr($email, -$idex);
  64. return $mask;
  65. }
  66. public static function getInSql($str, $not = false, $sep = ";") {
  67. $str = trim($str);
  68. $str = trim($str, $sep);
  69. $str = trim($str);
  70. if (empty($str) && $str !== "0" && $str !== 0)
  71. return "1<>1";
  72. $str = strtolower($str);
  73. if (utils::checkExist($str, $sep)) {
  74. $aa = explode($sep, $str);
  75. $msg = "";
  76. foreach ($aa as $value) {
  77. $value = trim($value);
  78. if (empty($value))
  79. continue;
  80. if (empty($msg))
  81. $msg = "'" . common::check_input($value) . "'";
  82. else
  83. $msg .= ",'" . common::check_input($value) . "'";
  84. }
  85. if ($not !== FALSE)
  86. return " not in (" . $msg . ")";
  87. else
  88. return " in (" . $msg . ")";
  89. } else {
  90. if ($not !== FALSE)
  91. return " != '" . common::check_input(trim($str)) . "'";
  92. else
  93. return " = '" . common::check_input(trim($str)) . "'";
  94. }
  95. }
  96. public static function checkExist($string, $search, $u = TRUE) {
  97. if ($u === TRUE) {
  98. if (stripos($string, $search) !== false)
  99. return TRUE;
  100. }else {
  101. if (strpos($string, $search) !== false)
  102. return TRUE;
  103. }
  104. return FALSE;
  105. }
  106. public static function endWith($string, $end, $u = TRUE) {
  107. if ($u === TRUE) {
  108. $string = strtolower($string);
  109. $end = strtolower($end);
  110. return strrchr($string, $end) == $end;
  111. }
  112. return strrchr($string, $end) == $end;
  113. }
  114. public static function _get($str) {
  115. $rs = isset($_POST[$str]) ? $_POST[$str] : null;
  116. if (empty($rs))
  117. $rs = isset($_GET[$str]) ? $_GET[$str] : null;
  118. return $rs;
  119. }
  120. public static function startWith($string, $start, $u = TRUE) {
  121. if ($u === TRUE)
  122. return stripos($string, $start) === 0;
  123. return strpos($string, $start) === 0;
  124. }
  125. public static function outDisplay($content, $is_time = 'f', $is_first = 'f', $is_boolean = 'f', $excel_export = FALSE) {
  126. if (empty($content) && $content !== 0 && $content !== "0")
  127. return "";
  128. if (strtolower($is_time) == 't')
  129. return utils::dealTimeDisplay($content);
  130. if (strtolower($is_first) == 't') {
  131. if ($excel_export !== FALSE)
  132. return utils::getCompanyName($content);
  133. else
  134. return '<span title="' . $content . '">' . utils::getCompanyName($content) . '</span>';
  135. }
  136. if (strtolower($is_boolean) == 't')
  137. return utils::outTrue($content);
  138. return nl2br($content);
  139. }
  140. public static function _output($value) {
  141. if (empty($value))
  142. return "&nbsp;";
  143. else
  144. return $value;
  145. }
  146. public static function dealTimeDisplay($date) {
  147. if (empty($date))
  148. return "";
  149. if (strlen($date) > 10)
  150. return date("m/d/Y H:i:s", strtotime($date));
  151. return date("m/d/Y", strtotime($date));
  152. }
  153. public static function outDisplayForMerge($frist,$last,$split = "/") {
  154. if($frist == $last){
  155. return $frist;
  156. }
  157. if (!empty($frist)){
  158. if(!empty($last)){
  159. return $frist.$split.$last;
  160. }else{
  161. return $frist;
  162. }
  163. }else{
  164. return $last;
  165. }
  166. }
  167. public static function outTrue($r) {
  168. if (empty($r))
  169. return "No";
  170. $r = strtolower($r);
  171. if ($r == "t")
  172. return "Yes";
  173. elseif ($r == "f")
  174. return "No";
  175. else
  176. return $r;
  177. }
  178. public static function getCompanyName($detail) {
  179. $detail = nl2br($detail);
  180. if (strpos($detail, '<br />') === FALSE)
  181. return $detail;
  182. return substr($detail, 0, strpos($detail, '<br />'));
  183. }
  184. public static function getEmail($serial_no) {
  185. $ocean = common::excuteObjectSql("select sales_rep, last_user, created_by, order_from, h_bol, consignee, dest_op, agent from public.kln_ocean where md5(serial_no)=md5('$serial_no') "
  186. . "order by schem_not_display nulls last limit 1");
  187. $schema = $ocean["order_from"] . ".";
  188. $dest_op_from_agent = common::excuteOneSql("select dest_op_from_agent from " . $schema . "ocean where md5(serial_no)=md5('$serial_no')");
  189. if ($ocean["agent"] == "KYMTL" || $ocean["agent"] == "KYYYZ") {
  190. $email = array();
  191. $email["email"] = "";
  192. if (!empty($dest_op_from_agent)) {
  193. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $dest_op_from_agent . "' and active=true");
  194. }
  195. if (!empty($so_email)) {
  196. if (empty($email["email"])) {
  197. $email["email"] = $so_email;
  198. } else {
  199. $email["email"] .= ";" . $so_email;
  200. }
  201. }
  202. if (!empty($ocean["sales_rep"])) {
  203. $rep_email = common::excuteOneSql("select email from " . $schema . "employee where lower(salesopcode)='" . strtolower($ocean["sales_rep"]) . "' and active=true");
  204. if (!empty($rep_email)) {
  205. if (empty($email["email"])) {
  206. $email["email"] = $rep_email;
  207. } else {
  208. $email["email"] .= ";" . $rep_email;
  209. }
  210. }
  211. }
  212. } else {
  213. $email = common::excuteObjectSql("select string_agg(e.email, ';') as email, string_agg(e.first_name, ';') as name from " . $schema . "ra_online_user u, " . $schema . "employee e WHERE u.employee_id = e.employee_id and "
  214. . "lower(u.user_login) in ('" . strtolower($ocean["created_by"]) . "', '" . strtolower($ocean["last_user"]) . "')");
  215. if (empty($dest_op_from_agent)) {
  216. if (!empty($ocean["dest_op"])) {
  217. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $ocean["dest_op"] . "' and active=true");
  218. }
  219. } else {
  220. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $dest_op_from_agent . "' and active=true");
  221. }
  222. if (empty($so_email)) {
  223. if ($ocean["agent"] == "APEXSFO") {
  224. $so_email = "oid2@apexshipping.com";
  225. }
  226. if ($ocean["agent"] == "APEXLAX") {
  227. $so_email = "laxoid@apexshipping.com";
  228. }
  229. if ($ocean["agent"] == "APEXNYC") {
  230. $so_email = "NYCOID@APEXSHIPPING.COM";
  231. }
  232. if ($ocean["agent"] == "APEXPNW") {
  233. $so_email = "pnwoid@apexshipping.com";
  234. }
  235. if ($ocean["agent"] == "STLUTA") {
  236. $so_email = "starlinkOID@apexshipping.com ";
  237. }
  238. if ($ocean["agent"] == "APEXORD") {
  239. $so_email = "ordoid@apexshipping.com";
  240. }
  241. }
  242. if (!empty($so_email)) {
  243. if (empty($email["email"])) {
  244. $email["email"] = $so_email;
  245. } else {
  246. $email["email"] .= ";" . $so_email;
  247. }
  248. }
  249. if (!empty($ocean["sales_rep"])) {
  250. $rep_email = common::excuteOneSql("select email from " . $schema . "employee where lower(salesopcode)='" . strtolower($ocean["sales_rep"]) . "' and active=true");
  251. if (!empty($rep_email)) {
  252. if (empty($email["email"])) {
  253. $email["email"] = $rep_email;
  254. } else {
  255. $email["email"] .= ";" . $rep_email;
  256. }
  257. }
  258. }
  259. }
  260. $email["h_bol"] = $ocean["h_bol"];
  261. $email["consignee"] = $ocean["consignee"];
  262. return $email;
  263. }
  264. /***
  265. * 过滤json中的某个数据
  266. * @param unknown $json
  267. * @param unknown $search
  268. * @param unknown $replace
  269. * @return mixed
  270. */
  271. public static function jsonFiltration($search,$replace,$json){
  272. //处理json中将斜杠转义问题
  273. $json = str_replace("\\/", "/", $json);
  274. return str_replace($search, $replace, $json);
  275. }
  276. /*
  277. * calculate eta destination by etd port
  278. */
  279. public static function calculate_ETA_Des($serial_no) {
  280. $sql = "SELECT m_eta as eat, mport_of_discharge as poul, place_of_delivery as pod,service from ocean where lower(serial_no) = '" . strtolower($serial_no) . "'";
  281. $rs = common::excuteObjectSql($sql);
  282. $date = "";
  283. if (!empty($rs['eat'])) {
  284. $date = utils::calculate_ETA_Dest($rs['eat'], $rs['poul'], $rs['pod'], $rs['service']);
  285. }
  286. return $date;
  287. }
  288. public static function calculate_ETA_Dest($eta, $poul, $pod, $service) {
  289. if (empty($poul) || empty($pod))
  290. return $eta;
  291. $sql = "SELECT door_days, cy_days
  292. FROM eta_dest
  293. WHERE eta_dest.state::text = ((( SELECT unlocode.state
  294. FROM ports, unlocode
  295. WHERE ports.uncode::text = unlocode.uncode::text AND ports.code::text = '" . common::check_input($pod) . "'
  296. LIMIT 1))::text) AND (','::text || eta_dest.pod::text) ~~* (('%,'::text || '" . common::check_input($poul) . "') || '%'::text)
  297. LIMIT 1";
  298. //$sql = "select door_days, cy_days from eta_dest where state = (select state from ports where code = '" . common::check_input($poul) . "' limit 1) and ','||pod ilike '%," . common::check_input($pod) . "%'";
  299. $rs = common::excuteObjectSql($sql);
  300. if (empty($rs))
  301. return $eta;
  302. if (utils::endWith($service, "cy"))
  303. return common::addDays($eta, $rs['cy_days']);
  304. else
  305. return common::addDays($eta, $rs['door_days']);
  306. }
  307. /*
  308. * password change, email alert
  309. */
  310. public static function sendEmailByPassword($username, $password, $email, $companyname='') {
  311. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'forgotpw'";
  312. $rs = common::excuteObjectSql($sql);
  313. if (!empty($rs)) {
  314. $subject = $rs['subject'];
  315. $content = $rs['content'];
  316. }
  317. if (!empty($subject) && !empty($content)) {
  318. $content = str_replace('<{username}>', $username, $content);
  319. $content = str_replace('<{password}>', $password, $content);
  320. $content = str_replace('<{companyname}>', $companyname, $content);
  321. global $db;
  322. common::excuteUpdateSql("INSERT INTO public.email_record_forgotpassword(type, title, from_email, to_email, content, insert_date,
  323. cc_email) VALUES ('forgot_password', '" . common::check_input($subject) . "', 'US.KApex.Online@kerryapex.com', '" .
  324. common::check_input($email) . "', '" . common::check_input($content) . "', now(), '');");
  325. return "success";
  326. //return Mail::sendMail($email, $subject, $content);
  327. } else
  328. return null;
  329. }
  330. public static function operation_log_records(){
  331. //排除opreation_log操作
  332. if( empty($_REQUEST["operate"])
  333. || ($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "verifcation_code")
  334. || ($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "check_uname")
  335. || ($_REQUEST["action"] == "ocean_order" && $_REQUEST["operate"] == "setting_ocean_order_display")
  336. || ($_REQUEST["action"] == "ocean_booking" && $_REQUEST["operate"] == "setting_display")){
  337. return;
  338. }
  339. //排除robot的相关的记录
  340. if((stripos($_REQUEST["action"], "robot") === 0)){
  341. return;
  342. }
  343. if($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "tracking_checked"){
  344. //public tracking_checked 的user name 记录对应IP 地址
  345. $user_type = "Customer";
  346. $user_name = common::ip();
  347. } elseif($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "do_login"){
  348. //移除do_login 因为在登录的过程中,是没有用户信息的
  349. $user_name = $_REQUEST["uname"];
  350. } else{
  351. $user_name = _getLoginName();
  352. }
  353. $user_type = _isApexLogin() ? "Employee" : "Customer";
  354. //如果在没有登录前,没有登录信息,指定用户
  355. if(!isset($_SESSION['ONLINE_USER'])){
  356. $user_type = common::excuteOneSql("select user_type from public.ra_online_user u where lower(user_login) = '" . strtolower($user_name) . "'");
  357. }
  358. $operateInfo = utils::getPageByAction($_REQUEST["action"],$_REQUEST["operate"]);
  359. $page = $operateInfo["page"];
  360. $operation = $operateInfo["operate"];
  361. $operation_detail = utils::analyzeOperationDetail($_REQUEST["action"],$_REQUEST["operate"]);
  362. if(empty($operation_detail)){
  363. $operation_detail = common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  364. }
  365. //过滤一分钟以内,相同用户的重复请求
  366. $exist_sql = "select count(1) from public.customer_service_operation_log
  367. where user_name = '$user_name'
  368. and page = '$page' and operation = '$operation' and operation_detail = '$operation_detail'
  369. and operation_time > NOW() - INTERVAL '1 minute' limit 1;";
  370. $exist_obj = common::excuteOneSql($exist_sql);
  371. if(empty($exist_obj)){
  372. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  373. operation_time)
  374. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  375. common::excuteUpdateSql($sql);
  376. }
  377. }
  378. public static function getPageByAction($action,$operate){
  379. //取消
  380. $operationConvertName = array(
  381. "login=do_login" => array("page" =>"Login","operate"=>"Login"),
  382. "login=forgot_password" => array("page" =>"Login","operate"=>"Forgot_PPassword"),
  383. "login=logout" => array("page" =>"logout","operate"=>"logout"),
  384. "login=update_pwd_expires" => array("page" =>"Login","operate"=>"Reset password"),
  385. "ocean_booking=search" => array("page" =>"Booking","operate"=>"Search"),
  386. "Booking_Search=save_setting_display" => array("page" =>"Booking","operate"=>"Customize Coulumns"),
  387. "booking=autody" => array("page" =>"Booking","operate"=>"More Filter"),
  388. "booking=autoport" => array("page" =>"Booking","operate"=>"More Filter"),
  389. "ocean_booking=detail" => array("page" =>"Booking","operate"=>"Open Detailed Page"),
  390. "ocean_booking=excel" => array("page" =>"Booking","operate"=>"Download"),
  391. "ocean_booking=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  392. "opreation_log=search" => array("page" =>"Opreation_log","operate"=>"Search"),
  393. "login=tracking_checked" => array("page" =>"Tracking","operate"=>"Public tracking"),
  394. "ocean_order=search" => array("page" =>"Tracking","operate"=>"Search"),
  395. "Ocean_Search=save_setting_display" => array("page" =>"Tracking","operate"=>"Customize Coulumns"),
  396. "tracking=autody" => array("page" =>"Tracking","operate"=>"More Filter"),
  397. "tracking=autoport" => array("page" =>"Tracking","operate"=>"More Filter"),
  398. "ocean_order=detail" => array("page" =>"Tracking","operate"=>"Open Detailed Page"),
  399. "ocean_order=excel" => array("page" =>"Tracking","operate"=>"Download"),
  400. "ocean_order=download" => array("page" =>"Tracking","operate"=>"Download"),
  401. "ocean_order=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  402. "ocean_order=ams_isf_log" => array("page" =>"Tracking","operate"=>"AMS/ISF"),
  403. "ocean_order=ocean_vgm" => array("page" =>"Tracking","operate"=>"Enter VGM"),
  404. "ocean_order=save_ocean_vgm" => array("page" =>"Tracking","operate"=>"Save VGM"),
  405. "ocean_order=share_shipment" => array("page" =>"Tracking","operate"=>"Share shipment"),
  406. "ocean_order=document_upload" => array("page" =>"Tracking","operate"=>"document_upload"),
  407. "ocean_order=document_upload_do" => array("page" =>"Tracking","operate"=>"document_upload_do"),
  408. "tools=mark_save" => array("page" =>"Tools","operate"=>"Mark_Save"),
  409. "password=" => array("page" =>"Profile","operate"=>"Change password"));
  410. if($action == "ajax" && $operate == "save_setting_display"){
  411. $model_name = $_REQUEST['model_name'];
  412. return $operationConvertName[$model_name."=".$operate];
  413. }
  414. if($action == "ajax" && ($operate == "autody" || $operate == "autoport")){
  415. $model_name = $_REQUEST['search_mode'];
  416. return $operationConvertName[$model_name."=".$operate];
  417. }
  418. return $operationConvertName[$action."=".$operate];
  419. }
  420. public static function analyzeOperationDetail($action,$operate){
  421. $detail = "";
  422. if($action == "login" && $operate == "do_login"){
  423. $detail = 'System Account';
  424. if($_REQUEST['token']){
  425. $detail = 'From Apex Online';
  426. }
  427. }
  428. if($action == "login" && $operate == "logout"){
  429. $detail = 'User Logout';
  430. }
  431. if($action == "login" && $operate == "tracking_checked"){
  432. $detail = 'Join public tracking action,Public tracking number:'.$_POST['reference_number'];
  433. }
  434. if($action == "password"){
  435. $detail = 'User Change password';
  436. }
  437. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "search"){
  438. $detail = "";
  439. //还有一个同以分钟内,不记录相同的查询 这个需要建表查询
  440. //{"action":"ocean_booking","operate":"search","_ntype":"ocean_booking","cp":"1","ps":"100","rc":"-1","other_filed":"","uname":"ra.admin","psw":"abc123456789"}
  441. $filter_common_field = array("action","operate","_ntype","cp","ps","rc","other_filed","uname","psw");
  442. foreach($_REQUEST as $selected_key => $selected){
  443. if(!utils::in_array($selected_key, $filter_common_field)){
  444. if(is_array($selected)){
  445. $selected = utils::implode(",",$selected);
  446. }
  447. $detail .="$selected_key:".$selected."; ";
  448. }
  449. }
  450. if(empty($detail)){
  451. $detail .="No search condition";
  452. }
  453. }
  454. if($action == "ajax" && $operate == "save_setting_display"){
  455. $detail = "";
  456. $type = $_REQUEST['model_name'] == "Booking_Search" ? "Booking_Search" : "Ocean_Search";
  457. //记录最终save 和 default 字段相比的结果
  458. // $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  459. // and display_name in('Booking No.','MBL No.','HBL No.','Mode','Status',
  460. // 'Shipper','Consignee','Origin Agent','Destination Agent','Creation Time','ETD','ETA',
  461. // 'Voyage','Vessel','Week','Created by') order by default_order");
  462. $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  463. and default_display = true order by default_order");
  464. $ids = utils::implode(";", $_POST['ids']);
  465. $save_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  466. and id::text = any(regexp_split_to_array('$ids', ';')) order by default_order");
  467. $detele_detail = "";
  468. foreach($default_ids as $did){
  469. if(!utils::exist_array($did['id'],$save_ids)){
  470. $detele_detail .=$did['display_name']."/";
  471. }
  472. }
  473. $add_detail = "";
  474. foreach($save_ids as $sid){
  475. if(!utils::exist_array($sid['id'],$default_ids)){
  476. $add_detail .=$sid['display_name']."/";
  477. }
  478. }
  479. if(!empty($detele_detail)){
  480. $detail.="Detele fields: (".$detele_detail."). ";
  481. }
  482. if(!empty($add_detail)){
  483. $detail.="Add fields: (".$add_detail."). ";
  484. }
  485. if(empty($detail)){
  486. $detail = "The default field has not changed";
  487. }
  488. }
  489. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "detail"){
  490. $tabel = $action == "ocean_booking" ? "kln_booking" : "kln_ocean";
  491. $serial_no = common::deCode($_GET['a'], 'D');
  492. $sql = "SELECT booking_no,h_bol from public.$tabel where serial_no = '$serial_no' limit 1";
  493. $data = common::excuteObjectSql($sql);
  494. if(!empty($data['booking_no'])){
  495. $detail = 'Booking No.: '.$data['booking_no'];
  496. }else{
  497. $detail = 'HBOL: '.$data['h_bol'];
  498. }
  499. }
  500. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "save_communication"){
  501. $text = $_POST["text"];
  502. $detail = urldecode($text);
  503. }
  504. if(($action == "ocean_order") && $operate == "ams_isf_log"){
  505. $detail = "Enter AMS/ISF Page";
  506. }
  507. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "excel"){
  508. $detail = "Filter_condition:" . $_REQUEST['excel_filter_condition']." Selected Fields:". $_REQUEST['selected_fields'];
  509. }
  510. //Tracking詳情頁download的file(顯示file名稱)
  511. if(($action == "ocean_order") && $operate == "download"){
  512. $filename = common::deCode($_GET['url'], 'D');
  513. $filename = str_replace("/", DIRECTORY_SEPARATOR, $filename);
  514. $filename = str_replace("\\", DIRECTORY_SEPARATOR, $filename);
  515. $display_name = basename($filename);
  516. if (!file_exists($filename)){
  517. $detail = "Tracking Detail Attachment Download But File Not Exist : $display_name";
  518. }else{
  519. $detail = "Tracking Detail Attachment Download: $display_name";
  520. }
  521. }
  522. //Tracking詳情頁Upload Files(顯示file名稱)
  523. if(($action == "ocean_order") && $operate == "document_upload"){
  524. $detail = "Enter Upload Files page";
  525. }
  526. return $detail;
  527. }
  528. public static function calculateTicks($minValue, $maxValue, $targetTickCount = 10) {
  529. $tickSpacing = ($maxValue - $minValue);
  530. $tickSpacing = intval($tickSpacing);
  531. $interval = ceil($tickSpacing / $targetTickCount);
  532. $len = strlen($interval);
  533. if ($len >1){
  534. $interval = ceil($interval/pow(10,$len-1)) *pow(10,$len-1);
  535. }
  536. return $interval;
  537. }
  538. //只记录Public tracking
  539. public static function single_operation_log_save($user_type,$user_name,$page,$operation,$operation_detail){
  540. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  541. operation_time)
  542. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  543. common::excuteUpdateSql($sql);
  544. }
  545. public static function uuid() {
  546. return strtoupper(md5(uniqid("", TRUE) . mt_rand()));
  547. }
  548. public static function count($variable){
  549. if (is_array($variable)) {
  550. $count = count($variable);
  551. } else {
  552. $count = 0;
  553. }
  554. return $count;
  555. }
  556. public static function implode($sp,$variable){
  557. $variable = isset($variable) && is_array($variable) ? $variable : array();
  558. return implode($sp, $variable);
  559. }
  560. public static function in_array($str, $arr){
  561. if (is_array($arr)) {
  562. return in_array($str, $arr);
  563. } else {
  564. return false;
  565. }
  566. }
  567. public static function exist_array($key,$arr){
  568. $flag = false;
  569. foreach($arr as $v){
  570. if($v['id'] == $key ){
  571. $flag = true;
  572. }
  573. }
  574. return $flag;
  575. }
  576. public static function getConpanyForNotify($_schemas,$type){
  577. //如果有多個就留空
  578. $company = "";
  579. if($type == 'ocean'){
  580. $company = $_SESSION['ONLINE_USER']['company_name'];
  581. $company_arr = explode(";",$company);
  582. $temp = array();
  583. foreach($company_arr as $v){
  584. if(!empty($v)){
  585. $temp[] = $v;
  586. }
  587. }
  588. if(utils::count($temp) <= 1){
  589. return $company;
  590. }
  591. }
  592. if($type == 'air'){
  593. $company_id = $_SESSION['ONLINE_USER']['air_customers'];
  594. $company_id_arr = explode(";",$company_id);
  595. $temp = array();
  596. foreach($company_id_arr as $v){
  597. if(!empty($v)){
  598. $temp[] = $v;
  599. }
  600. }
  601. if(utils::count($temp) == 1){
  602. if ($_schemas == "public") {//apex ocean和air 分开
  603. $sql = "SELECT company from ocean.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  604. } else {
  605. $sql = "SELECT company from $_schemas.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  606. }
  607. $company = common::excuteOneSql($sql);
  608. }
  609. return $company;
  610. }
  611. }
  612. public static function getKlnDocNotifyContent($bol,$file_type,$upload_user_name,$upload_user_email,$company,$date_time){
  613. $report_setting = common::excuteObjectSql("select * from ra_online_auto_report_config where report_type = 'KLN_DOC_Notify' ");
  614. $report_content = $report_setting['report_content'];
  615. $columns = common::excuteListSql("select display_name,model_name,database_column_name,excel_width,order_by from public.ra_online_search_display_cso where model_name = 'KLN_DOC_Notify'");
  616. $missing_packing_th = "<tr>";
  617. foreach ($columns as $colk => $colvalue) {
  618. $missing_packing_th.='<td style="width:'.$colvalue['excel_width'].'pt;border:solid black 1.0pt;background:#1F4E78;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">
  619. <p class="MsoNormal" align="left" style="text-align:left"><b><span lang="EN-US" style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white">'.$colvalue['display_name'].'</span></b></p>
  620. </td>';
  621. }
  622. $missing_packing_th .= "</tr>";
  623. $report_content = str_replace('<{missing_packing_th}>', $missing_packing_th, $report_content);
  624. $data = array(array("h_bol"=>$bol,"file_type"=>$file_type,"upload_by"=>$upload_user_name,"email"=>$upload_user_email,"company"=>$company,"upload_time"=>$date_time."(US/Pacific)"));
  625. $missing_packing_tr = "";
  626. foreach ($data as $rk => $rv) {
  627. $missing_packing_tr .= "<tr>";
  628. foreach ($columns as $ck => $cv) {
  629. if(utils::endWith($cv['display_name'], "email")){
  630. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;border-top:none;
  631. border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">
  632. <a href="mailto:'.$rv[$cv['database_column_name']].'">'.$rv[$cv['database_column_name']].'</a>
  633. </td>';
  634. }else{
  635. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;'
  636. . 'border-top:none;border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">'.$rv[$cv['database_column_name']].'</td>';
  637. }
  638. }
  639. $missing_packing_tr .= "</tr>";
  640. }
  641. $report_content = str_replace('<{missing_packing_tr}>', $missing_packing_tr, $report_content);
  642. return $report_content;
  643. }
  644. public static function _getSql($ids, $type,$shipment_mode,$sqlWhere) {
  645. $ids_arr = explode(',', $ids);
  646. $sql = "";
  647. if($type == "co2e_orgin"){
  648. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  649. $filed = "shippr_uncode";
  650. } else {
  651. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  652. $filed = "consignee_uncode";
  653. }
  654. $shipment_mode_where = " 1=1 ";
  655. //这里处理为空,目前没有数据
  656. $shipment_mode_where = " transport_mode = '$shipment_mode' ";
  657. $shipment_mode_where .= $sqlWhere;
  658. foreach ($ids_arr as $value) {
  659. if (!empty($value)) {
  660. if (empty($sql)) {
  661. $sql .= "SELECT $str FROM public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  662. } else {
  663. $sql .= " union all SELECT $str from public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  664. }
  665. }
  666. }
  667. return $sql;
  668. }
  669. public static function removeDuplicateArray($array){
  670. $result = array();
  671. foreach ($array as $value) {
  672. //过滤可能的空值,会引起前端页面有数据但无法显示
  673. if(!empty($value)){
  674. if (!utils::in_array($value, $result)) {
  675. $result[] = $value;
  676. }
  677. }
  678. }
  679. return $result;
  680. }
  681. public static function hasMacros($filePath) {
  682. $extension = pathinfo($filePath, PATHINFO_EXTENSION);
  683. if ($extension === 'xlsx') {
  684. // 检查 .xlsx 文件
  685. $zip = new ZipArchive();
  686. if ($zip->open($filePath) === TRUE) {
  687. // 检查是否存在 vbaProject.bin 文件
  688. $hasMacros = $zip->locateName('xl/vbaProject.bin') !== false;
  689. $zip->close();
  690. return $hasMacros;
  691. } else {
  692. return false; // 无法打开文件
  693. }
  694. } elseif ($extension === 'docx') {
  695. // 检查 .docx 文件
  696. $zip = new ZipArchive();
  697. if ($zip->open($filePath) === TRUE) {
  698. // 检查是否存在 vbaProject.bin 文件
  699. $hasMacros = $zip->locateName('word/vbaProject.bin') !== false;
  700. $zip->close();
  701. return $hasMacros;
  702. } else {
  703. return false; // 无法打开文件
  704. }
  705. } else {
  706. return false; // 不是支持的文件类型
  707. }
  708. }
  709. public static function arrayKeyToInt($arr){
  710. $ret = array();
  711. foreach($arr as $key => $val){
  712. $ret[] = $val;
  713. }
  714. return $ret;
  715. }
  716. public static function getDailyAndweeklyFrist($arr){
  717. $numericRecords = count($arr);
  718. $ret = array();
  719. $numericRecords_one = 0;
  720. $numericRecords_two = 0;
  721. foreach($arr as $key => $val){
  722. if($key == 0){
  723. $val["numericRecords"] = $numericRecords;
  724. $ret = $val;
  725. }
  726. if($val["notifiation_type"] == "Departure/Arrival_Delay"){
  727. if(utils::checkExist($val["delay_name"],"Departure_Delay")){
  728. $numericRecords_one +=1;
  729. }
  730. if(utils::checkExist($val["delay_name"],"Arrival_Delay")){
  731. $numericRecords_two +=1;
  732. }
  733. }
  734. if($val["notifiation_type"] == "ETD/ETA_Change"){
  735. if(utils::checkExist($val["date_change_name"],"ETD Change")){
  736. $numericRecords_one +=1;
  737. }
  738. if(utils::checkExist($val["date_change_name"],"ETA Change")){
  739. $numericRecords_two +=1;
  740. }
  741. }
  742. }
  743. //对Delay and change 特殊处理
  744. $ret["numericRecords_one"]= $numericRecords_one;
  745. $ret["numericRecords_two"]= $numericRecords_two;
  746. return $ret;
  747. }
  748. /**
  749. * ocean ->sea
  750. */
  751. public static function converModeToDB($shipment_transport_mode_arr){
  752. $converMode = array();
  753. foreach($shipment_transport_mode_arr as $model){
  754. if (strtolower($model) == "ocean"){
  755. $converMode[] = 'sea';
  756. }else{
  757. $converMode[] = strtolower($model);
  758. }
  759. }
  760. return utils::implode(";",$converMode);
  761. }
  762. /**
  763. * sea ->ocean
  764. */
  765. public static function converModeToDisplay($shipment_transport_mode){
  766. //数据转换前端需要的
  767. $converMode = array();
  768. $shipment_transport_mode_arr = explode(";", $shipment_transport_mode);
  769. foreach($shipment_transport_mode_arr as $model){
  770. if (strtolower($model) == "sea"){
  771. $converMode[] = 'Ocean';
  772. }else{
  773. $converMode[] = ucfirst($model);
  774. }
  775. }
  776. return utils::implode(";",$converMode);
  777. }
  778. public static function compareArrayEq($array1,$array2){
  779. $array1 = empty($array1) ? array():$array1;
  780. $array2 = empty($array2) ? array():$array2;
  781. // 使用array_diff比较并重置键名
  782. $diff1 = array_diff($array1, $array2);
  783. $diff2 = array_diff($array2, $array1);
  784. // 如果结果为空,说明两个数组一样
  785. if (empty($diff1) && empty($diff2)) {
  786. return true;
  787. } else {
  788. return false;
  789. }
  790. }
  791. public static function comvertutcinfo($time_zone){
  792. if(!empty($time_zone)){
  793. if(utils::checkExist($time_zone,"+")){
  794. $time_zone = str_replace('+', '-', $time_zone);
  795. }else{
  796. $time_zone = str_replace('-', '+', $time_zone);
  797. }
  798. }
  799. return $time_zone;
  800. }
  801. public static function arrayOrderBykeys($order,$data_kd,$key){
  802. $orderedData = []; // 用于存储按$order排序后的数据
  803. foreach ($order as $name) {
  804. foreach ($data_kd as $item) {
  805. if ($item[$key] == $name) {
  806. $orderedData[] = $item; // 将找到的元素添加到新数组中
  807. break; // 找到后跳出内层循环,继续外层循环处理下一个id
  808. }
  809. }
  810. }
  811. return $orderedData;
  812. }
  813. /**
  814. * 数组去掉null
  815. */
  816. public static function arrayRemoveNull($array){
  817. foreach ($array as &$value) {
  818. if (is_null($value)) {
  819. $value = '';
  820. }
  821. }
  822. unset($value); // 断开 $value 的引用
  823. return $array;
  824. }
  825. /**
  826. * public.kln_ocean 和 WHERE 的位置关系,进行条件拼接
  827. */
  828. public static function modifyString($input,$sqlWhere) {
  829. $search = 'public.kln_ocean';
  830. $pos = strpos($input, $search);
  831. if ($pos !== false) {
  832. $afterSearch = substr($input, $pos + strlen($search));
  833. $hasWhere = (stripos($afterSearch, 'WHERE') !== false);
  834. if ($hasWhere) {
  835. // 在 WHERE 后插入 1=1
  836. $wherePos = stripos($input, 'WHERE', $pos);
  837. $insertPos = $wherePos + strlen('WHERE');
  838. $sqlWhere =' ' .$sqlWhere.' and ';
  839. return substr_replace($input, $sqlWhere, $insertPos, 0);
  840. } else {
  841. // 在 public.kln_ocean 后插入 1=1
  842. $insertPos = $pos + strlen($search);
  843. $sqlWhere =' where ' .$sqlWhere.' ';
  844. return substr_replace($input, $sqlWhere, $insertPos, 0);
  845. }
  846. }
  847. return $input;
  848. }
  849. /**
  850. * LIMIT的处理,或者超过10
  851. */
  852. public static function processLimitClause($sql) {
  853. // 查找不区分大小写的 LIMIT 位置
  854. $limitPos = stripos($sql, 'LIMIT');
  855. if ($limitPos !== false) {
  856. // 截取 LIMIT 之前的部分,拼接固定内容
  857. $processed = substr($sql, 0, $limitPos) . 'LIMIT 10';
  858. } else {
  859. // 无 LIMIT 时直接追加
  860. $processed = $sql . ' LIMIT 10';
  861. }
  862. return $processed;
  863. }
  864. /**
  865. * 替换 single reference
  866. */
  867. public static function replacements($data, $template,$new_sql) {
  868. // 动态构建替换数组(格式:[key] => value)
  869. $replacements = [];
  870. foreach ($data as $key => $value) {
  871. $replacements["{{$key}}"] = $value;
  872. $replacements["{{{$key}}}"] = $value;
  873. }
  874. if(empty($data)){
  875. $fileds = common::extractSelectFields($new_sql);
  876. foreach($fileds as $key){
  877. //如果遇到data没数据,但是有 total_count ,则处理成0
  878. if($key == "total_count"){
  879. $replacements["{{$key}}"] = "0";
  880. $replacements["{{{$key}}}"] = "0";
  881. } else {
  882. $replacements["{{$key}}"] = "";
  883. $replacements["{{{$key}}}"] = "";
  884. }
  885. }
  886. }
  887. // 执行替换
  888. error_log("replacements_single:".json_encode($replacements));
  889. error_log("template_single:".$template);
  890. $result = strtr($template, $replacements);
  891. // 输出结果
  892. return $result;
  893. }
  894. /**
  895. * 替换复杂的reference
  896. *
  897. */
  898. public static function replacementsMultiline($data, $template,$new_sql) {
  899. //行中所有 {{xxx}} 模板变量都必须在 SQL 查询字段中存在
  900. //SQL 中可以有比 reference 多的字段,不影响匹配
  901. //一旦找到第一个符合条件的
  902. //不依赖任何 {{#EACH ROW}} 或其他模板语法
  903. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  904. $explode_data = utils::findFirstTemplateRow($template,$new_sql);
  905. $explode_str = $explode_data['line'];
  906. $replaceTemplate = "";
  907. //检查模板 是否已经带有特定表格的序列
  908. if(!empty($explode_str) && strpos($template, $explode_str) !== false){
  909. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  910. $parts = explode("$explode_str", $template,2);
  911. // 生成所有行
  912. $generatedRows = [];
  913. foreach ($data as $row) {
  914. $replacements = [];
  915. foreach ($row as $key => $value) {
  916. $replacements["{{{$key}}}"] = $value;
  917. }
  918. $generatedRows[] = strtr($explode_str, $replacements);
  919. }
  920. if(empty($generatedRows) && empty($data)){
  921. $generatedRows[] = "No Data";
  922. }
  923. //如果 SQL字段是有多余未匹配的字段 调用一次个体替换
  924. $mapping = $explode_data['mapping'];
  925. if(!$mapping){
  926. $parts[0] = utils::replacements($data[0],$parts[0],$new_sql);
  927. }
  928. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  929. }else{
  930. //全文替换 上面统一有excuteListSql 这里的结果要变一下
  931. $replaceTemplate = utils::replacements($data[0],$template,$new_sql);
  932. }
  933. return $replaceTemplate;
  934. }
  935. // 在 reference 中查找第一个符合要求的 | ... | 行
  936. public static function findFirstTemplateRow($reference, $sql) {
  937. $sqlFields = common::extractSelectFields($sql);
  938. if (empty($sqlFields)) return null;
  939. $lines = preg_split('/\r\n|\r|\n/', $reference);
  940. foreach ($lines as $line) {
  941. $line = trim($line);
  942. // 检查是否是以 | 开头和结尾的表格行
  943. if (strpos($line, '|') !== 0 || substr($line, -1) !== '|') continue;
  944. // 提取该行中的所有 {{xxx}} 模板变量
  945. preg_match_all('/\{\{(\w+)\}\}/', $line, $matches);
  946. $templateVars = $matches[1];
  947. preg_match_all('/(?<=\|)([^|]+)(?=\|)/', $line, $matchesTwo);
  948. // 去除每个匹配项前后的空白字符
  949. $cells = $matchesTwo[1];
  950. if (empty($templateVars) || count($templateVars) <> count($cells)) continue;
  951. // 检查每个变量是否都在 SQL 字段中
  952. foreach ($templateVars as $var) {
  953. if (!in_array(strtolower($var), array_map('strtolower', $sqlFields))) {
  954. continue; // 跳出当前循环,继续检查下一行
  955. }
  956. }
  957. $mapping = true;
  958. //检查 SQL 字段是否有未匹配的字段
  959. if(count($sqlFields) <> count($templateVars)){
  960. $mapping = false;
  961. }
  962. // 所有变量都匹配成功,返回这一行
  963. return array("line"=>$line,"mapping" => $mapping);
  964. }
  965. return array("line"=>null,"mapping" =>true);; // 没有找到匹配行
  966. }
  967. /**
  968. * 替换复杂的reference 固定问题 分开
  969. */
  970. public static function replacementsFixedMultilineForFixed($data, $template,$explode_str) {
  971. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  972. $replaceTemplate = "";
  973. //检查模板 是否已经带有特定表格的序列
  974. if(strpos($template, $explode_str) !== false){
  975. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  976. $parts = explode("$explode_str", $template,2);
  977. // 生成所有行
  978. $generatedRows = [];
  979. foreach ($data as $row) {
  980. $replacements = [];
  981. foreach ($row as $key => $value) {
  982. $replacements["{{{$key}}}"] = $value;
  983. }
  984. $generatedRows[] = strtr($explode_str, $replacements);
  985. }
  986. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  987. }else{
  988. //有异常,模板原样返回
  989. $replaceTemplate = $template;
  990. }
  991. return $replaceTemplate;
  992. }
  993. /**
  994. * 替换 single reference Fixed
  995. */
  996. public static function replacementsFixed($data, $template,$fileds) {
  997. // 动态构建替换数组(格式:[key] => value)
  998. $replacements = [];
  999. foreach ($data as $key => $value) {
  1000. $replacements["{{$key}}"] = $value;
  1001. $replacements["{{{$key}}}"] = $value;
  1002. }
  1003. if(empty($data)){
  1004. foreach($fileds as $key){
  1005. $replacements["{{$key}}"] = "";
  1006. $replacements["{{{$key}}}"] = "";
  1007. }
  1008. }
  1009. // 执行替换
  1010. $result = strtr($template, $replacements);
  1011. // 输出结果
  1012. return $result;
  1013. }
  1014. public static function getMarkDownTableSpacing($str,$search){
  1015. //$str = "|--------------|\n sdsds| E1205546127 | ";
  1016. //$search = "| E1205546127 |";
  1017. // 查找搜索字符串的位置
  1018. $pos = strpos($str, $search);
  1019. if ($pos !== false) {
  1020. // 从搜索字符串前面开始向前查找 "|" 的位置
  1021. for ($i = $pos - 1; $i >= 0; $i--) {
  1022. if ($str[$i] === '|') {
  1023. // 提取两个位置之间的内容
  1024. $result = substr($str, $i + 1, $pos - $i - 1);
  1025. return $result;
  1026. }
  1027. }
  1028. } else {
  1029. return "\n";
  1030. }
  1031. }
  1032. public static function uniqueGroupbyData($unique_filed,$groups_filed,$rows){
  1033. $uniqueData = [];
  1034. $hBolSeen = [];
  1035. //需要去重
  1036. if(!empty($unique_filed)){
  1037. foreach ($rows as $row) {
  1038. $hBol = $row[$unique_filed]."_".$row[$groups_filed];
  1039. if (!isset($hBolSeen[$hBol])) {
  1040. $uniqueData[] = $row;
  1041. $hBolSeen[$hBol] = true;
  1042. }
  1043. }
  1044. } else {
  1045. //不需要去重
  1046. $uniqueData = $rows;
  1047. }
  1048. //分组计数
  1049. $dateGroups = [];
  1050. if(!empty($groups_filed)){
  1051. foreach ($uniqueData as $item) {
  1052. $date = $item[$groups_filed];
  1053. if (!isset($dateGroups[$date])) {
  1054. $dateGroups[$date] = 0;
  1055. }
  1056. $dateGroups[$date]++;
  1057. }
  1058. }
  1059. return $dateGroups;
  1060. }
  1061. public static function getDmoeSqlForAi($type){
  1062. $data= array();
  1063. $data["Show shipments delayed in the last 30 days."] = "select count(*)
  1064. from public.kln_record kr
  1065. inner join LATERAL (select h_bol from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) m on true
  1066. where kr.log_type like '%Delay'
  1067. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1068. and kr.event_date is not null and kr.event_old_date is not null
  1069. and (kr.event_date||' '||COALESCE(kr.event_time,'00:00'))::timestamp >= (kr.event_old_date||' '||COALESCE(kr.event_old_time,'00:00'))::timestamp;select oo.h_bol,oo.place_of_receipt_exp,oo.place_of_delivery_exp,oo.serial_no,oo.order_from,
  1070. kr.log_type,kr.event_old_date, kr.event_old_time,kr.event_date, kr.event_time,
  1071. (EXTRACT(DAY FROM ((event_date||' '||COALESCE(event_time,'00:00'))::timestamp - (event_old_date||' '||COALESCE(event_old_time,'00:00'))::timestamp))) as duration
  1072. from public.kln_record kr
  1073. inner join LATERAL (select h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,order_from
  1074. from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) oo on true
  1075. where kr.log_type like '%Delay'
  1076. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1077. and kr.event_date is not null and kr.event_old_date is not null
  1078. and (kr.event_date||' '||COALESCE(kr.event_time,'00:00'))::timestamp >= (kr.event_old_date||' '||COALESCE(kr.event_old_time,'00:00'))::timestamp
  1079. order by kr.log_time desc limit 10";
  1080. $data["Shipments arriving in the next 7 days."] = "select count(*)
  1081. from (
  1082. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1083. FROM public.kln_ocean oo
  1084. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1085. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1086. left join LATERAL (select a.code,a.description
  1087. from public.ocean_milestone a
  1088. inner join public.customer_service_milestone_sno s
  1089. on a.code = s.code
  1090. and s.type = 'sea'
  1091. and a.serial_no = oo.serial_no
  1092. and a.act_date is not null
  1093. order by s.sno desc limit 1) m on true
  1094. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 10
  1095. ) t;select serial_no,h_bol,place_of_receipt_exp,place_of_delivery_exp,description,eta,order_from,cargo_type
  1096. from (
  1097. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1098. FROM public.kln_ocean oo
  1099. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1100. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1101. left join LATERAL (select a.code,a.description
  1102. from public.ocean_milestone a
  1103. inner join public.customer_service_milestone_sno s
  1104. on a.code = s.code
  1105. and s.type = 'sea'
  1106. and a.serial_no = oo.serial_no
  1107. and a.act_date is not null
  1108. order by s.sno desc limit 1) m on true
  1109. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 20
  1110. ) t order by eta";
  1111. $data["List shipments with milestone updates in the last 7 days."] = "select count(*)
  1112. from (
  1113. select serial_no
  1114. from (SELECT oo.serial_no from public.ocean_milestone a
  1115. inner join public.customer_service_milestone_sno s on a.code = s.code
  1116. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1117. where s.type = 'sea'
  1118. and a.act_date is not null
  1119. ) po
  1120. )t;
  1121. select serial_no,order_from,h_bol, description,update_date_format,update_date,
  1122. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1123. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1124. from (
  1125. select serial_no,order_from,h_bol,description,to_char(update_date,'Mon DD') as update_date_format,update_date,code
  1126. from (SELECT oo.serial_no,oo.order_from,oo.h_bol,s.description,COALESCE(a.update_date, a.create_date) as update_date,a.code
  1127. from public.ocean_milestone a
  1128. inner join public.customer_service_milestone_sno s on a.code = s.code
  1129. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1130. where s.type = 'sea'
  1131. and a.act_date is not null
  1132. ) po
  1133. )t left join LATERAL (select public.getTimeAndLocationForKln(serial_no,code,''::text)::jsonb as jsonb_data) m on true
  1134. order by update_date limit 10;
  1135. select aa.update_date_format, COUNT(*) AS total_count
  1136. from (
  1137. select DISTINCT ON (h_bol) h_bol, update_date_format
  1138. from (
  1139. select h_bol,to_char(update_date,'Mon DD') as update_date_format
  1140. from (SELECT oo.h_bol,COALESCE(a.update_date, a.create_date) as update_date
  1141. from public.ocean_milestone a
  1142. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1143. where a.act_date is not null
  1144. ) po
  1145. )t order by h_bol
  1146. ) aa
  1147. group by aa.update_date_format order by aa.update_date_format ";
  1148. $data["What is the current status of my active shipments?"] ="SELECT count(*)
  1149. FROM public.kln_ocean oo
  1150. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1151. or not exists( select 1 from public.ocean_milestone a where a.serial_no = oo.serial_no and a.act_date is not null and a.code = 'IFFDEL')) and oo.transport_mode = 'sea' and order_from = 'public';with oo as(
  1152. SELECT h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,transport_mode,order_from
  1153. FROM public.kln_ocean oo
  1154. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1155. or not exists( select 1 from public.ocean_milestone a where a.serial_no = oo.serial_no and a.act_date is not null and a.code = 'IFFDEL')) and oo.transport_mode = 'sea' and order_from = 'public' order by id limit 10
  1156. )
  1157. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1158. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1159. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1160. from oo
  1161. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1162. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1163. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1164. from public.ocean_milestone a
  1165. left join public.customer_service_milestone_sno s on a.code = s.code
  1166. and s.type = 'sea'
  1167. and a.serial_no = oo.serial_no
  1168. and a.act_date is not null
  1169. order by s.sno desc limit 1) mil on true
  1170. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1171. where oo.transport_mode = 'sea' and order_from = 'public'
  1172. union all
  1173. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1174. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1175. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1176. from oo
  1177. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1178. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1179. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1180. from public.ocean_milestone a
  1181. left join public.customer_service_milestone_sno s on a.code = s.code
  1182. and s.type = 'air'
  1183. and a.serial_no = oo.serial_no
  1184. and a.act_date is not null
  1185. order by s.sno desc limit 1) mil on true
  1186. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1187. where oo.transport_mode = 'sea' and order_from = 'sfs'
  1188. union all
  1189. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1190. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1191. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1192. from oo
  1193. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1194. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1195. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1196. from public.air_milestone a
  1197. left join public.customer_service_milestone_sno s on a.code = s.code
  1198. and s.type = 'air'
  1199. and a.serial_no = oo.serial_no
  1200. and a.act_date is not null
  1201. order by s.sno desc limit 1) mil on true
  1202. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1203. where oo.transport_mode = 'air' and order_from = 'public'
  1204. union all
  1205. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1206. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1207. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1208. from oo
  1209. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1210. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1211. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1212. from sfs.air_milestone a
  1213. left join public.customer_service_milestone_sno s on a.code = s.code
  1214. and s.type = 'air'
  1215. and a.serial_no = oo.serial_no
  1216. and a.act_date is not null
  1217. order by s.sno desc limit 1) mil on true
  1218. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1219. where oo.transport_mode = 'air' and order_from = 'sfs'";
  1220. $data["List shipments with container status updates in the last 7 days."] = "select count(*)
  1221. FROM ra_online_container_status s
  1222. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1223. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1224. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1225. WHERE o.status::text <> 'Cancelled'::text
  1226. and is_display = true
  1227. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1228. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no);select oo.serial_no,oo.order_from,s.event_base as event,s.container_no,
  1229. to_char(to_timestamp(s.event_date, 'YYYYMMDD'), 'YYYY-MM-DD') as eventdate,
  1230. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate,
  1231. to_char(to_timestamp(s.event_time, 'HH24MI'), 'HH24:MI') as eventtime,
  1232. (select time_zone from public.city_timezone where uncode = s.event_code) as timezone,
  1233. e.description,
  1234. s.event_city as uncity
  1235. FROM ra_online_container_status s
  1236. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1237. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1238. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1239. LEFT JOIN public.kln_ocean oo ON oo.serial_no::text = o.serial_no::text
  1240. WHERE o.status::text <> 'Cancelled'::text
  1241. and is_display = true
  1242. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1243. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no) limit 10;select aa._eventdate, COUNT(*) AS total_count
  1244. from (select DISTINCT ON (s.container_no) s.container_no,
  1245. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate
  1246. FROM ra_online_container_status s
  1247. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1248. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1249. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1250. WHERE o.status::text <> 'Cancelled'::text
  1251. and is_display = true
  1252. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1253. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no)
  1254. order by s.container_no
  1255. )aa group by _eventdate order by _eventdate";
  1256. $data["Today's shipments summary."] = "select count(*)
  1257. from (
  1258. select oo.serial_no
  1259. from (
  1260. select t.serial_no from (
  1261. SELECT
  1262. a.serial_no,
  1263. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1264. from public.ocean_milestone a
  1265. left join public.customer_service_milestone_sno s on a.code = s.code
  1266. where s.type = 'sea'
  1267. and a.act_date is not null
  1268. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1269. )t WHERE rn = 1
  1270. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1271. union all
  1272. select oo.serial_no
  1273. from (
  1274. select t.serial_no from (
  1275. SELECT
  1276. a.code,a.serial_no,
  1277. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1278. from public.air_milestone a
  1279. left join public.customer_service_milestone_sno s on a.code = s.code
  1280. where s.type = 'sea'
  1281. and a.act_date is not null
  1282. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1283. )t WHERE rn = 1
  1284. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1285. union all
  1286. select oo.serial_no
  1287. from (
  1288. select t.serial_no from (
  1289. SELECT
  1290. a.serial_no,
  1291. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1292. from sfs.air_milestone a
  1293. left join public.customer_service_milestone_sno s on a.code = s.code
  1294. where s.type = 'sea'
  1295. and a.act_date is not null
  1296. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1297. )t WHERE rn = 1
  1298. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1299. )t;select *
  1300. from (
  1301. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1302. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1303. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1304. from (
  1305. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1306. from (
  1307. SELECT
  1308. case when a.code = 'IFFDEP' then 'Departure'
  1309. when a.code = 'IFFARR' then 'Arrived'
  1310. when a.code = 'IFFDEL' then 'Delivered'
  1311. else s.description end as action_type,
  1312. a.update_date,a.code,a.serial_no,
  1313. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1314. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1315. a.act_time,
  1316. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1317. from public.ocean_milestone a
  1318. left join public.customer_service_milestone_sno s on a.code = s.code
  1319. where s.type = 'sea'
  1320. and a.act_date is not null
  1321. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1322. )t WHERE rn = 1
  1323. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no
  1324. union all
  1325. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1326. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1327. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1328. from (
  1329. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1330. from (
  1331. SELECT
  1332. case when a.code = 'IFFDEP' then 'Departure'
  1333. when a.code = 'IFFARR' then 'Arrived'
  1334. when a.code = 'IFFDEL' then 'Delivered'
  1335. else s.description end as action_type,
  1336. a.update_date,a.code,a.serial_no,
  1337. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1338. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1339. a.act_time,
  1340. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1341. from public.air_milestone a
  1342. left join public.customer_service_milestone_sno s on a.code = s.code
  1343. where s.type = 'sea'
  1344. and a.act_date is not null
  1345. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1346. )t WHERE rn = 1
  1347. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no
  1348. union all
  1349. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1350. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1351. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1352. from (
  1353. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1354. from (
  1355. SELECT
  1356. case when a.code = 'IFFDEP' then 'Departure'
  1357. when a.code = 'IFFARR' then 'Arrived'
  1358. when a.code = 'IFFDEL' then 'Delivered'
  1359. else s.description end as action_type,
  1360. a.update_date,a.code,a.serial_no,
  1361. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1362. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1363. a.act_time,
  1364. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1365. from sfs.air_milestone a
  1366. left join public.customer_service_milestone_sno s on a.code = s.code
  1367. where s.type = 'sea'
  1368. and a.act_date is not null
  1369. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1370. )t WHERE rn = 1
  1371. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no
  1372. )t limit 10;select sum(case when (action_type='Departure') then 1 else 0 end) as dep,
  1373. sum(case when (action_type='Arrived') then 1 else 0 end) as arr,
  1374. sum(case when (action_type='Delivered') then 1 else 0 end) as del
  1375. from (
  1376. select action_type
  1377. from (
  1378. select t.action_type,t.serial_no from (
  1379. SELECT
  1380. case when a.code = 'IFFDEP' then 'Departure'
  1381. when a.code = 'IFFARR' then 'Arrived'
  1382. when a.code = 'IFFDEL' then 'Delivered'
  1383. else s.description end as action_type,
  1384. a.serial_no,
  1385. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1386. from public.ocean_milestone a
  1387. left join public.customer_service_milestone_sno s on a.code = s.code
  1388. where s.type = 'sea'
  1389. and a.act_date is not null
  1390. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1391. )t WHERE rn = 1
  1392. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1393. union all
  1394. select action_type
  1395. from (
  1396. select t.action_type,t.serial_no from (
  1397. SELECT
  1398. case when a.code = 'IFFDEP' then 'Departure'
  1399. when a.code = 'IFFARR' then 'Arrived'
  1400. when a.code = 'IFFDEL' then 'Delivered'
  1401. else s.description end as action_type,
  1402. a.serial_no,
  1403. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1404. from public.air_milestone a
  1405. left join public.customer_service_milestone_sno s on a.code = s.code
  1406. where s.type = 'sea'
  1407. and a.act_date is not null
  1408. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1409. )t WHERE rn = 1
  1410. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1411. union all
  1412. select action_type
  1413. from (
  1414. select t.action_type,t.serial_no from (
  1415. SELECT
  1416. case when a.code = 'IFFDEP' then 'Departure'
  1417. when a.code = 'IFFARR' then 'Arrived'
  1418. when a.code = 'IFFDEL' then 'Delivered'
  1419. else s.description end as action_type,
  1420. a.serial_no,
  1421. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1422. from sfs.air_milestone a
  1423. left join public.customer_service_milestone_sno s on a.code = s.code
  1424. where s.type = 'sea'
  1425. and a.act_date is not null
  1426. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1427. )t WHERE rn = 1
  1428. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1429. )t";
  1430. $data["Sort my active shipments by earliest arrival date."] = "select to_char(oo.eta,'DD-Mon') as eta, oo.h_bol,oo.transport_mode, oo.place_of_receipt_exp, oo.place_of_delivery_exp,oo.serial_no,oo.order_from,
  1431. case when oo.eta - CURRENT_DATE <= 0 then '< 1 days'::text
  1432. else (oo.eta - CURRENT_DATE)||' days'::text end as day_to_arr
  1433. from public.kln_ocean oo where 1=1 order by eta limit 10";
  1434. return $data[$type];
  1435. }
  1436. }
  1437. ?>