utils.class.php 70 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483
  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. if($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "tracking_checked"){
  340. //public tracking_checked 的user name 记录对应IP 地址
  341. $user_type = "Customer";
  342. $user_name = common::ip();
  343. } elseif($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "do_login"){
  344. //移除do_login 因为在登录的过程中,是没有用户信息的
  345. $user_name = $_REQUEST["uname"];
  346. } else{
  347. $user_name = _getLoginName();
  348. }
  349. $user_type = _isApexLogin() ? "Employee" : "Customer";
  350. //如果在没有登录前,没有登录信息,指定用户
  351. if(!isset($_SESSION['ONLINE_USER'])){
  352. $user_type = common::excuteOneSql("select user_type from public.ra_online_user u where lower(user_login) = '" . strtolower($user_name) . "'");
  353. }
  354. $operateInfo = utils::getPageByAction($_REQUEST["action"],$_REQUEST["operate"]);
  355. $page = $operateInfo["page"];
  356. $operation = $operateInfo["operate"];
  357. $operation_detail = utils::analyzeOperationDetail($_REQUEST["action"],$_REQUEST["operate"]);
  358. if(empty($operation_detail)){
  359. $operation_detail = common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  360. }
  361. //过滤一分钟以内,相同用户的重复请求
  362. $exist_sql = "select count(1) from public.customer_service_operation_log
  363. where user_name = '$user_name'
  364. and page = '$page' and operation = '$operation' and operation_detail = '$operation_detail'
  365. and operation_time > NOW() - INTERVAL '1 minute' limit 1;";
  366. $exist_obj = common::excuteOneSql($exist_sql);
  367. if(empty($exist_obj)){
  368. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  369. operation_time)
  370. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  371. common::excuteUpdateSql($sql);
  372. }
  373. }
  374. public static function getPageByAction($action,$operate){
  375. //取消
  376. $operationConvertName = array(
  377. "login=do_login" => array("page" =>"Login","operate"=>"Login"),
  378. "login=forgot_password" => array("page" =>"Login","operate"=>"Forgot_PPassword"),
  379. "login=logout" => array("page" =>"logout","operate"=>"logout"),
  380. "login=update_pwd_expires" => array("page" =>"Login","operate"=>"Reset password"),
  381. "ocean_booking=search" => array("page" =>"Booking","operate"=>"Search"),
  382. "Booking_Search=save_setting_display" => array("page" =>"Booking","operate"=>"Customize Coulumns"),
  383. "booking=autody" => array("page" =>"Booking","operate"=>"More Filter"),
  384. "booking=autoport" => array("page" =>"Booking","operate"=>"More Filter"),
  385. "ocean_booking=detail" => array("page" =>"Booking","operate"=>"Open Detailed Page"),
  386. "ocean_booking=excel" => array("page" =>"Booking","operate"=>"Download"),
  387. "ocean_booking=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  388. "opreation_log=search" => array("page" =>"Opreation_log","operate"=>"Search"),
  389. "login=tracking_checked" => array("page" =>"Tracking","operate"=>"Public tracking"),
  390. "ocean_order=search" => array("page" =>"Tracking","operate"=>"Search"),
  391. "Ocean_Search=save_setting_display" => array("page" =>"Tracking","operate"=>"Customize Coulumns"),
  392. "tracking=autody" => array("page" =>"Tracking","operate"=>"More Filter"),
  393. "tracking=autoport" => array("page" =>"Tracking","operate"=>"More Filter"),
  394. "ocean_order=detail" => array("page" =>"Tracking","operate"=>"Open Detailed Page"),
  395. "ocean_order=excel" => array("page" =>"Tracking","operate"=>"Download"),
  396. "ocean_order=download" => array("page" =>"Tracking","operate"=>"Download"),
  397. "ocean_order=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  398. "ocean_order=ams_isf_log" => array("page" =>"Tracking","operate"=>"AMS/ISF"),
  399. "ocean_order=ocean_vgm" => array("page" =>"Tracking","operate"=>"Enter VGM"),
  400. "ocean_order=save_ocean_vgm" => array("page" =>"Tracking","operate"=>"Save VGM"),
  401. "ocean_order=share_shipment" => array("page" =>"Tracking","operate"=>"Share shipment"),
  402. "ocean_order=document_upload" => array("page" =>"Tracking","operate"=>"document_upload"),
  403. "ocean_order=document_upload_do" => array("page" =>"Tracking","operate"=>"document_upload_do"),
  404. "tools=mark_save" => array("page" =>"Tools","operate"=>"Mark_Save"),
  405. "password=" => array("page" =>"Profile","operate"=>"Change password"));
  406. if($action == "ajax" && $operate == "save_setting_display"){
  407. $model_name = $_REQUEST['model_name'];
  408. return $operationConvertName[$model_name."=".$operate];
  409. }
  410. if($action == "ajax" && ($operate == "autody" || $operate == "autoport")){
  411. $model_name = $_REQUEST['search_mode'];
  412. return $operationConvertName[$model_name."=".$operate];
  413. }
  414. return $operationConvertName[$action."=".$operate];
  415. }
  416. public static function analyzeOperationDetail($action,$operate){
  417. if($action == "login" && $operate == "do_login"){
  418. $detail = 'System Account';
  419. if($_REQUEST['token']){
  420. $detail = 'From Apex Online';
  421. }
  422. }
  423. if($action == "login" && $operate == "logout"){
  424. $detail = 'User Logout';
  425. }
  426. if($action == "login" && $operate == "tracking_checked"){
  427. $detail = 'Join public tracking action,Public tracking number:'.$_POST['reference_number'];
  428. }
  429. if($action == "password"){
  430. $detail = 'User Change password';
  431. }
  432. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "search"){
  433. $detail = "";
  434. //还有一个同以分钟内,不记录相同的查询 这个需要建表查询
  435. //{"action":"ocean_booking","operate":"search","_ntype":"ocean_booking","cp":"1","ps":"100","rc":"-1","other_filed":"","uname":"ra.admin","psw":"abc123456789"}
  436. $filter_common_field = array("action","operate","_ntype","cp","ps","rc","other_filed","uname","psw");
  437. foreach($_REQUEST as $selected_key => $selected){
  438. if(!utils::in_array($selected_key, $filter_common_field)){
  439. if(is_array($selected)){
  440. $selected = utils::implode(",",$selected);
  441. }
  442. $detail .="$selected_key:".$selected."; ";
  443. }
  444. }
  445. if(empty($detail)){
  446. $detail .="No search condition";
  447. }
  448. }
  449. if($action == "ajax" && $operate == "save_setting_display"){
  450. $detail = "";
  451. $type = $_REQUEST['model_name'] == "Booking_Search" ? "Booking_Search" : "Ocean_Search";
  452. //记录最终save 和 default 字段相比的结果
  453. // $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  454. // and display_name in('Booking No.','MBL No.','HBL No.','Mode','Status',
  455. // 'Shipper','Consignee','Origin Agent','Destination Agent','Creation Time','ETD','ETA',
  456. // 'Voyage','Vessel','Week','Created by') order by default_order");
  457. $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  458. and default_display = true order by default_order");
  459. $ids = utils::implode(";", $_POST['ids']);
  460. $save_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  461. and id::text = any(regexp_split_to_array('$ids', ';')) order by default_order");
  462. $detele_detail = "";
  463. foreach($default_ids as $did){
  464. if(!utils::exist_array($did['id'],$save_ids)){
  465. $detele_detail .=$did['display_name']."/";
  466. }
  467. }
  468. $add_detail = "";
  469. foreach($save_ids as $sid){
  470. if(!utils::exist_array($sid['id'],$default_ids)){
  471. $add_detail .=$sid['display_name']."/";
  472. }
  473. }
  474. if(!empty($detele_detail)){
  475. $detail.="Detele fields: (".$detele_detail."). ";
  476. }
  477. if(!empty($add_detail)){
  478. $detail.="Add fields: (".$add_detail."). ";
  479. }
  480. if(empty($detail)){
  481. $detail = "The default field has not changed";
  482. }
  483. }
  484. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "detail"){
  485. $tabel = $action == "ocean_booking" ? "kln_booking" : "kln_ocean";
  486. $serial_no = common::deCode($_GET['a'], 'D');
  487. $sql = "SELECT booking_no,h_bol from public.$tabel where serial_no = '$serial_no' limit 1";
  488. $data = common::excuteObjectSql($sql);
  489. if(!empty($data['booking_no'])){
  490. $detail = 'Booking No.: '.$data['booking_no'];
  491. }else{
  492. $detail = 'HBOL: '.$data['h_bol'];
  493. }
  494. }
  495. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "save_communication"){
  496. $text = $_POST["text"];
  497. $detail = urldecode($text);
  498. }
  499. if(($action == "ocean_order") && $operate == "ams_isf_log"){
  500. $detail = "Enter AMS/ISF Page";
  501. }
  502. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "excel"){
  503. $detail = "Filter_condition:" . $_REQUEST['excel_filter_condition']." Selected Fields:". $_REQUEST['selected_fields'];
  504. }
  505. //Tracking詳情頁download的file(顯示file名稱)
  506. if(($action == "ocean_order") && $operate == "download"){
  507. $filename = common::deCode($_GET['url'], 'D');
  508. $filename = str_replace("/", DIRECTORY_SEPARATOR, $filename);
  509. $filename = str_replace("\\", DIRECTORY_SEPARATOR, $filename);
  510. $display_name = basename($filename);
  511. if (!file_exists($filename)){
  512. $detail = "Tracking Detail Attachment Download But File Not Exist : $display_name";
  513. }else{
  514. $detail = "Tracking Detail Attachment Download: $display_name";
  515. }
  516. }
  517. //Tracking詳情頁Upload Files(顯示file名稱)
  518. if(($action == "ocean_order") && $operate == "document_upload"){
  519. $detail = "Enter Upload Files page";
  520. }
  521. return $detail;
  522. }
  523. public static function calculateTicks($minValue, $maxValue, $targetTickCount = 10) {
  524. $tickSpacing = ($maxValue - $minValue);
  525. $tickSpacing = intval($tickSpacing);
  526. $interval = ceil($tickSpacing / $targetTickCount);
  527. $len = strlen($interval);
  528. if ($len >1){
  529. $interval = ceil($interval/pow(10,$len-1)) *pow(10,$len-1);
  530. }
  531. return $interval;
  532. }
  533. //只记录Public tracking
  534. public static function single_operation_log_save($user_type,$user_name,$page,$operation,$operation_detail){
  535. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  536. operation_time)
  537. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  538. common::excuteUpdateSql($sql);
  539. }
  540. public static function uuid() {
  541. return strtoupper(md5(uniqid("", TRUE) . mt_rand()));
  542. }
  543. public static function count($variable){
  544. if (is_array($variable)) {
  545. $count = count($variable);
  546. } else {
  547. $count = 0;
  548. }
  549. return $count;
  550. }
  551. public static function implode($sp,$variable){
  552. $variable = isset($variable) && is_array($variable) ? $variable : array();
  553. return implode($sp, $variable);
  554. }
  555. public static function in_array($str, $arr){
  556. if (is_array($arr)) {
  557. return in_array($str, $arr);
  558. } else {
  559. return false;
  560. }
  561. }
  562. public static function exist_array($key,$arr){
  563. $flag = false;
  564. foreach($arr as $v){
  565. if($v['id'] == $key ){
  566. $flag = true;
  567. }
  568. }
  569. return $flag;
  570. }
  571. public static function getConpanyForNotify($_schemas,$type){
  572. //如果有多個就留空
  573. $company = "";
  574. if($type == 'ocean'){
  575. $company = $_SESSION['ONLINE_USER']['company_name'];
  576. $company_arr = explode(";",$company);
  577. $temp = array();
  578. foreach($company_arr as $v){
  579. if(!empty($v)){
  580. $temp[] = $v;
  581. }
  582. }
  583. if(utils::count($temp) <= 1){
  584. return $company;
  585. }
  586. }
  587. if($type == 'air'){
  588. $company_id = $_SESSION['ONLINE_USER']['air_customers'];
  589. $company_id_arr = explode(";",$company_id);
  590. $temp = array();
  591. foreach($company_id_arr as $v){
  592. if(!empty($v)){
  593. $temp[] = $v;
  594. }
  595. }
  596. if(utils::count($temp) == 1){
  597. if ($_schemas == "public") {//apex ocean和air 分开
  598. $sql = "SELECT company from ocean.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  599. } else {
  600. $sql = "SELECT company from $_schemas.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  601. }
  602. $company = common::excuteOneSql($sql);
  603. }
  604. return $company;
  605. }
  606. }
  607. public static function getKlnDocNotifyContent($bol,$file_type,$upload_user_name,$upload_user_email,$company,$date_time){
  608. $report_setting = common::excuteObjectSql("select * from ra_online_auto_report_config where report_type = 'KLN_DOC_Notify' ");
  609. $report_content = $report_setting['report_content'];
  610. $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'");
  611. $missing_packing_th = "<tr>";
  612. foreach ($columns as $colk => $colvalue) {
  613. $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">
  614. <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>
  615. </td>';
  616. }
  617. $missing_packing_th .= "</tr>";
  618. $report_content = str_replace('<{missing_packing_th}>', $missing_packing_th, $report_content);
  619. $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)"));
  620. $missing_packing_tr = "";
  621. foreach ($data as $rk => $rv) {
  622. $missing_packing_tr .= "<tr>";
  623. foreach ($columns as $ck => $cv) {
  624. if(utils::endWith($cv['display_name'], "email")){
  625. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;border-top:none;
  626. 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">
  627. <a href="mailto:'.$rv[$cv['database_column_name']].'">'.$rv[$cv['database_column_name']].'</a>
  628. </td>';
  629. }else{
  630. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;'
  631. . '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>';
  632. }
  633. }
  634. $missing_packing_tr .= "</tr>";
  635. }
  636. $report_content = str_replace('<{missing_packing_tr}>', $missing_packing_tr, $report_content);
  637. return $report_content;
  638. }
  639. public static function _getSql($ids, $type,$shipment_mode,$sqlWhere) {
  640. $ids_arr = explode(',', $ids);
  641. $sql = "";
  642. if($type == "co2e_orgin"){
  643. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  644. $filed = "shippr_uncode";
  645. } else {
  646. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  647. $filed = "consignee_uncode";
  648. }
  649. $shipment_mode_where = " 1=1 ";
  650. //这里处理为空,目前没有数据
  651. $shipment_mode_where = " transport_mode = '$shipment_mode' ";
  652. $shipment_mode_where .= $sqlWhere;
  653. foreach ($ids_arr as $value) {
  654. if (!empty($value)) {
  655. if (empty($sql)) {
  656. $sql .= "SELECT $str FROM public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  657. } else {
  658. $sql .= " union all SELECT $str from public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  659. }
  660. }
  661. }
  662. return $sql;
  663. }
  664. public static function removeDuplicateArray($array){
  665. $result = array();
  666. foreach ($array as $value) {
  667. //过滤可能的空值,会引起前端页面有数据但无法显示
  668. if(!empty($value)){
  669. if (!utils::in_array($value, $result)) {
  670. $result[] = $value;
  671. }
  672. }
  673. }
  674. return $result;
  675. }
  676. public static function hasMacros($filePath) {
  677. $extension = pathinfo($filePath, PATHINFO_EXTENSION);
  678. if ($extension === 'xlsx') {
  679. // 检查 .xlsx 文件
  680. $zip = new ZipArchive();
  681. if ($zip->open($filePath) === TRUE) {
  682. // 检查是否存在 vbaProject.bin 文件
  683. $hasMacros = $zip->locateName('xl/vbaProject.bin') !== false;
  684. $zip->close();
  685. return $hasMacros;
  686. } else {
  687. return false; // 无法打开文件
  688. }
  689. } elseif ($extension === 'docx') {
  690. // 检查 .docx 文件
  691. $zip = new ZipArchive();
  692. if ($zip->open($filePath) === TRUE) {
  693. // 检查是否存在 vbaProject.bin 文件
  694. $hasMacros = $zip->locateName('word/vbaProject.bin') !== false;
  695. $zip->close();
  696. return $hasMacros;
  697. } else {
  698. return false; // 无法打开文件
  699. }
  700. } else {
  701. return false; // 不是支持的文件类型
  702. }
  703. }
  704. public static function arrayKeyToInt($arr){
  705. $ret = array();
  706. foreach($arr as $key => $val){
  707. $ret[] = $val;
  708. }
  709. return $ret;
  710. }
  711. public static function getDailyAndweeklyFrist($arr){
  712. $numericRecords = count($arr);
  713. $ret = array();
  714. $numericRecords_one = 0;
  715. $numericRecords_two = 0;
  716. foreach($arr as $key => $val){
  717. if($key == 0){
  718. $val["numericRecords"] = $numericRecords;
  719. $ret = $val;
  720. }
  721. if($val["notifiation_type"] == "Departure/Arrival_Delay"){
  722. if(utils::checkExist($val["delay_name"],"Departure_Delay")){
  723. $numericRecords_one +=1;
  724. }
  725. if(utils::checkExist($val["delay_name"],"Arrival_Delay")){
  726. $numericRecords_two +=1;
  727. }
  728. }
  729. if($val["notifiation_type"] == "ETD/ETA_Change"){
  730. if(utils::checkExist($val["date_change_name"],"ETD Change")){
  731. $numericRecords_one +=1;
  732. }
  733. if(utils::checkExist($val["date_change_name"],"ETA Change")){
  734. $numericRecords_two +=1;
  735. }
  736. }
  737. }
  738. //对Delay and change 特殊处理
  739. $ret["numericRecords_one"]= $numericRecords_one;
  740. $ret["numericRecords_two"]= $numericRecords_two;
  741. return $ret;
  742. }
  743. /**
  744. * ocean ->sea
  745. */
  746. public static function converModeToDB($shipment_transport_mode_arr){
  747. $converMode = array();
  748. foreach($shipment_transport_mode_arr as $model){
  749. if (strtolower($model) == "ocean"){
  750. $converMode[] = 'sea';
  751. }else{
  752. $converMode[] = strtolower($model);
  753. }
  754. }
  755. return utils::implode(";",$converMode);
  756. }
  757. /**
  758. * sea ->ocean
  759. */
  760. public static function converModeToDisplay($shipment_transport_mode){
  761. //数据转换前端需要的
  762. $converMode = array();
  763. $shipment_transport_mode_arr = explode(";", $shipment_transport_mode);
  764. foreach($shipment_transport_mode_arr as $model){
  765. if (strtolower($model) == "sea"){
  766. $converMode[] = 'Ocean';
  767. }else{
  768. $converMode[] = ucfirst($model);
  769. }
  770. }
  771. return utils::implode(";",$converMode);
  772. }
  773. public static function compareArrayEq($array1,$array2){
  774. $array1 = empty($array1) ? array():$array1;
  775. $array2 = empty($array2) ? array():$array2;
  776. // 使用array_diff比较并重置键名
  777. $diff1 = array_diff($array1, $array2);
  778. $diff2 = array_diff($array2, $array1);
  779. // 如果结果为空,说明两个数组一样
  780. if (empty($diff1) && empty($diff2)) {
  781. return true;
  782. } else {
  783. return false;
  784. }
  785. }
  786. public static function comvertutcinfo($time_zone){
  787. if(!empty($time_zone)){
  788. if(utils::checkExist($time_zone,"+")){
  789. $time_zone = str_replace('+', '-', $time_zone);
  790. }else{
  791. $time_zone = str_replace('-', '+', $time_zone);
  792. }
  793. }
  794. return $time_zone;
  795. }
  796. public static function arrayOrderBykeys($order,$data_kd,$key){
  797. $orderedData = []; // 用于存储按$order排序后的数据
  798. foreach ($order as $name) {
  799. foreach ($data_kd as $item) {
  800. if ($item[$key] == $name) {
  801. $orderedData[] = $item; // 将找到的元素添加到新数组中
  802. break; // 找到后跳出内层循环,继续外层循环处理下一个id
  803. }
  804. }
  805. }
  806. return $orderedData;
  807. }
  808. /**
  809. * 数组去掉null
  810. */
  811. public static function arrayRemoveNull($array){
  812. foreach ($array as &$value) {
  813. if (is_null($value)) {
  814. $value = '';
  815. }
  816. }
  817. unset($value); // 断开 $value 的引用
  818. return $array;
  819. }
  820. /**
  821. * public.kln_ocean 和 WHERE 的位置关系,进行条件拼接
  822. */
  823. public static function modifyString($input,$sqlWhere) {
  824. $search = 'public.kln_ocean';
  825. $pos = strpos($input, $search);
  826. if ($pos !== false) {
  827. $afterSearch = substr($input, $pos + strlen($search));
  828. $hasWhere = (stripos($afterSearch, 'WHERE') !== false);
  829. if ($hasWhere) {
  830. // 在 WHERE 后插入 1=1
  831. $wherePos = stripos($input, 'WHERE', $pos);
  832. $insertPos = $wherePos + strlen('WHERE');
  833. $sqlWhere =' ' .$sqlWhere.' and ';
  834. return substr_replace($input, $sqlWhere, $insertPos, 0);
  835. } else {
  836. // 在 public.kln_ocean 后插入 1=1
  837. $insertPos = $pos + strlen($search);
  838. $sqlWhere =' where ' .$sqlWhere.' ';
  839. return substr_replace($input, $sqlWhere, $insertPos, 0);
  840. }
  841. }
  842. return $input;
  843. }
  844. /**
  845. * LIMIT的处理,或者超过10
  846. */
  847. public static function processLimitClause($sql) {
  848. // 查找不区分大小写的 LIMIT 位置
  849. $limitPos = stripos($sql, 'LIMIT');
  850. if ($limitPos !== false) {
  851. // 截取 LIMIT 之前的部分,拼接固定内容
  852. $processed = substr($sql, 0, $limitPos) . 'LIMIT 10';
  853. } else {
  854. // 无 LIMIT 时直接追加
  855. $processed = $sql . ' LIMIT 10';
  856. }
  857. return $processed;
  858. }
  859. /**
  860. * 替换 single reference
  861. */
  862. public static function replacements($data, $template,$new_sql) {
  863. // 动态构建替换数组(格式:[key] => value)
  864. $replacements = [];
  865. foreach ($data as $key => $value) {
  866. $replacements["{{$key}}"] = $value;
  867. $replacements["{{{$key}}}"] = $value;
  868. }
  869. if(empty($data)){
  870. $fileds = common::extractSelectFields($new_sql);
  871. foreach($fileds as $key){
  872. $replacements["{{$key}}"] = "";
  873. $replacements["{{{$key}}}"] = "";
  874. }
  875. }
  876. // 执行替换
  877. $result = strtr($template, $replacements);
  878. // 输出结果
  879. return $result;
  880. }
  881. /**
  882. * 替换复杂的reference
  883. */
  884. public static function replacementsMultiline($data, $template,$new_sql) {
  885. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  886. $replaceTemplate = "";
  887. $explode_str = "|";
  888. foreach($data as $key => $val){
  889. if($key == 0){
  890. foreach($val as $field => $fieldVal){
  891. $explode_str.=" {{{$field}}} |";
  892. }
  893. }else{
  894. continue;
  895. }
  896. }
  897. if(empty($data)){
  898. $fileds = common::extractSelectFields($new_sql);
  899. foreach($fileds as $fieldVal){
  900. $explode_str.=" {{{$fieldVal}}} |";
  901. }
  902. }
  903. //检查模板 是否已经带有特定表格的序列
  904. if(strpos($template, $explode_str) !== false){
  905. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  906. $parts = explode("$explode_str", $template,2);
  907. // 生成所有行
  908. $generatedRows = [];
  909. foreach ($data as $row) {
  910. $replacements = [];
  911. foreach ($row as $key => $value) {
  912. $replacements["{{{$key}}}"] = $value;
  913. }
  914. $generatedRows[] = strtr($explode_str, $replacements);
  915. }
  916. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  917. }else{
  918. //全文替换 上面统一有excuteListSql 这里的结果要变一下
  919. $replaceTemplate = utils::replacements($data[0],$template,$new_sql);
  920. }
  921. return $replaceTemplate;
  922. }
  923. /**
  924. * 替换复杂的reference 固定问题 分开
  925. */
  926. public static function replacementsFixedMultilineForFixed($data, $template,$explode_str) {
  927. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  928. $replaceTemplate = "";
  929. //检查模板 是否已经带有特定表格的序列
  930. if(strpos($template, $explode_str) !== false){
  931. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  932. $parts = explode("$explode_str", $template,2);
  933. // 生成所有行
  934. $generatedRows = [];
  935. foreach ($data as $row) {
  936. $replacements = [];
  937. foreach ($row as $key => $value) {
  938. $replacements["{{{$key}}}"] = $value;
  939. }
  940. $generatedRows[] = strtr($explode_str, $replacements);
  941. }
  942. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  943. }else{
  944. //有异常,模板原样返回
  945. $replaceTemplate = $template;
  946. }
  947. return $replaceTemplate;
  948. }
  949. /**
  950. * 替换 single reference Fixed
  951. */
  952. public static function replacementsFixed($data, $template,$fileds) {
  953. // 动态构建替换数组(格式:[key] => value)
  954. $replacements = [];
  955. foreach ($data as $key => $value) {
  956. $replacements["{{$key}}"] = $value;
  957. $replacements["{{{$key}}}"] = $value;
  958. }
  959. if(empty($data)){
  960. foreach($fileds as $key){
  961. $replacements["{{$key}}"] = "";
  962. $replacements["{{{$key}}}"] = "";
  963. }
  964. }
  965. // 执行替换
  966. $result = strtr($template, $replacements);
  967. // 输出结果
  968. return $result;
  969. }
  970. public static function getMarkDownTableSpacing($str,$search){
  971. //$str = "|--------------|\n sdsds| E1205546127 | ";
  972. //$search = "| E1205546127 |";
  973. // 查找搜索字符串的位置
  974. $pos = strpos($str, $search);
  975. if ($pos !== false) {
  976. // 从搜索字符串前面开始向前查找 "|" 的位置
  977. for ($i = $pos - 1; $i >= 0; $i--) {
  978. if ($str[$i] === '|') {
  979. // 提取两个位置之间的内容
  980. $result = substr($str, $i + 1, $pos - $i - 1);
  981. return $result;
  982. }
  983. }
  984. } else {
  985. return "\n";
  986. }
  987. }
  988. public static function uniqueGroupbyData($unique_filed,$groups_filed,$rows){
  989. $uniqueData = [];
  990. $hBolSeen = [];
  991. //需要去重
  992. if(!empty($unique_filed)){
  993. foreach ($rows as $row) {
  994. $hBol = $row[$unique_filed]."_".$row[$groups_filed];
  995. if (!isset($hBolSeen[$hBol])) {
  996. $uniqueData[] = $row;
  997. $hBolSeen[$hBol] = true;
  998. }
  999. }
  1000. } else {
  1001. //不需要去重
  1002. $uniqueData = $rows;
  1003. }
  1004. //分组计数
  1005. $dateGroups = [];
  1006. if(!empty($groups_filed)){
  1007. foreach ($uniqueData as $item) {
  1008. $date = $item[$groups_filed];
  1009. if (!isset($dateGroups[$date])) {
  1010. $dateGroups[$date] = 0;
  1011. }
  1012. $dateGroups[$date]++;
  1013. }
  1014. }
  1015. return $dateGroups;
  1016. }
  1017. public static function getDmoeSqlForAi($type){
  1018. $data= array();
  1019. $data["Show shipments delayed in the last 30 days."] = "select count(*)
  1020. from public.kln_record kr
  1021. inner join LATERAL (select h_bol from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) m on true
  1022. where kr.log_type like '%Delay'
  1023. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1024. and kr.event_date is not null and kr.event_old_date is not null
  1025. 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,
  1026. kr.log_type,kr.event_old_date, kr.event_old_time,kr.event_date, kr.event_time,
  1027. (EXTRACT(DAY FROM ((event_date||' '||COALESCE(event_time,'00:00'))::timestamp - (event_old_date||' '||COALESCE(event_old_time,'00:00'))::timestamp))) as duration
  1028. from public.kln_record kr
  1029. inner join LATERAL (select h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,order_from
  1030. from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) oo on true
  1031. where kr.log_type like '%Delay'
  1032. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1033. and kr.event_date is not null and kr.event_old_date is not null
  1034. and (kr.event_date||' '||COALESCE(kr.event_time,'00:00'))::timestamp >= (kr.event_old_date||' '||COALESCE(kr.event_old_time,'00:00'))::timestamp
  1035. order by kr.log_time desc limit 10";
  1036. $data["Shipments arriving in the next 7 days."] = "select count(*)
  1037. from (
  1038. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1039. FROM public.kln_ocean oo
  1040. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1041. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1042. left join LATERAL (select a.code,a.description
  1043. from public.ocean_milestone a
  1044. inner join public.customer_service_milestone_sno s
  1045. on a.code = s.code
  1046. and s.type = 'sea'
  1047. and a.serial_no = oo.serial_no
  1048. and a.act_date is not null
  1049. order by s.sno desc limit 1) m on true
  1050. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 10
  1051. ) t;select serial_no,h_bol,place_of_receipt_exp,place_of_delivery_exp,description,eta,order_from,cargo_type
  1052. from (
  1053. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1054. FROM public.kln_ocean oo
  1055. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1056. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1057. left join LATERAL (select a.code,a.description
  1058. from public.ocean_milestone a
  1059. inner join public.customer_service_milestone_sno s
  1060. on a.code = s.code
  1061. and s.type = 'sea'
  1062. and a.serial_no = oo.serial_no
  1063. and a.act_date is not null
  1064. order by s.sno desc limit 1) m on true
  1065. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 20
  1066. ) t order by eta";
  1067. $data["List shipments with milestone updates in the last 7 days."] = "select count(*)
  1068. from (
  1069. select serial_no
  1070. from (SELECT oo.serial_no from public.ocean_milestone a
  1071. inner join public.customer_service_milestone_sno s on a.code = s.code
  1072. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1073. where s.type = 'sea'
  1074. and a.act_date is not null
  1075. ) po
  1076. )t;
  1077. select serial_no,order_from,h_bol, description,update_date_format,update_date,
  1078. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1079. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1080. from (
  1081. select serial_no,order_from,h_bol,description,to_char(update_date,'Mon DD') as update_date_format,update_date,code
  1082. 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
  1083. from public.ocean_milestone a
  1084. inner join public.customer_service_milestone_sno s on a.code = s.code
  1085. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1086. where s.type = 'sea'
  1087. and a.act_date is not null
  1088. ) po
  1089. )t left join LATERAL (select public.getTimeAndLocationForKln(serial_no,code,''::text)::jsonb as jsonb_data) m on true
  1090. order by update_date limit 10;
  1091. select aa.update_date_format, COUNT(*) AS total_count
  1092. from (
  1093. select DISTINCT ON (h_bol) h_bol, update_date_format
  1094. from (
  1095. select h_bol,to_char(update_date,'Mon DD') as update_date_format
  1096. from (SELECT oo.h_bol,COALESCE(a.update_date, a.create_date) as update_date
  1097. from public.ocean_milestone a
  1098. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1099. where a.act_date is not null
  1100. ) po
  1101. )t order by h_bol
  1102. ) aa
  1103. group by aa.update_date_format order by aa.update_date_format ";
  1104. $data["What is the current status of my active shipments?"] ="SELECT count(*)
  1105. FROM public.kln_ocean oo
  1106. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1107. 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(
  1108. SELECT h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,transport_mode,order_from
  1109. FROM public.kln_ocean oo
  1110. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1111. 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
  1112. )
  1113. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1114. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1115. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1116. from oo
  1117. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1118. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1119. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1120. from public.ocean_milestone a
  1121. left join public.customer_service_milestone_sno s on a.code = s.code
  1122. and s.type = 'sea'
  1123. and a.serial_no = oo.serial_no
  1124. and a.act_date is not null
  1125. order by s.sno desc limit 1) mil on true
  1126. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1127. where oo.transport_mode = 'sea' and order_from = 'public'
  1128. union all
  1129. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1130. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1131. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1132. from oo
  1133. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1134. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1135. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1136. from public.ocean_milestone a
  1137. left join public.customer_service_milestone_sno s on a.code = s.code
  1138. and s.type = 'air'
  1139. and a.serial_no = oo.serial_no
  1140. and a.act_date is not null
  1141. order by s.sno desc limit 1) mil on true
  1142. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1143. where oo.transport_mode = 'sea' and order_from = 'sfs'
  1144. union all
  1145. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1146. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1147. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1148. from oo
  1149. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1150. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1151. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1152. from public.air_milestone a
  1153. left join public.customer_service_milestone_sno s on a.code = s.code
  1154. and s.type = 'air'
  1155. and a.serial_no = oo.serial_no
  1156. and a.act_date is not null
  1157. order by s.sno desc limit 1) mil on true
  1158. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1159. where oo.transport_mode = 'air' and order_from = 'public'
  1160. union all
  1161. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1162. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1163. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1164. from oo
  1165. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1166. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1167. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1168. from sfs.air_milestone a
  1169. left join public.customer_service_milestone_sno s on a.code = s.code
  1170. and s.type = 'air'
  1171. and a.serial_no = oo.serial_no
  1172. and a.act_date is not null
  1173. order by s.sno desc limit 1) mil on true
  1174. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1175. where oo.transport_mode = 'air' and order_from = 'sfs'";
  1176. $data["List shipments with container status updates in the last 7 days."] = "select count(*)
  1177. FROM ra_online_container_status s
  1178. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1179. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1180. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1181. WHERE o.status::text <> 'Cancelled'::text
  1182. and is_display = true
  1183. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1184. 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,
  1185. to_char(to_timestamp(s.event_date, 'YYYYMMDD'), 'YYYY-MM-DD') as eventdate,
  1186. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate,
  1187. to_char(to_timestamp(s.event_time, 'HH24MI'), 'HH24:MI') as eventtime,
  1188. (select time_zone from public.city_timezone where uncode = s.event_code) as timezone,
  1189. e.description,
  1190. s.event_city as uncity
  1191. FROM ra_online_container_status s
  1192. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1193. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1194. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1195. LEFT JOIN public.kln_ocean oo ON oo.serial_no::text = o.serial_no::text
  1196. WHERE o.status::text <> 'Cancelled'::text
  1197. and is_display = true
  1198. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1199. 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
  1200. from (select DISTINCT ON (s.container_no) s.container_no,
  1201. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate
  1202. FROM ra_online_container_status s
  1203. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1204. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1205. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1206. WHERE o.status::text <> 'Cancelled'::text
  1207. and is_display = true
  1208. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1209. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no)
  1210. order by s.container_no
  1211. )aa group by _eventdate order by _eventdate";
  1212. $data["Today's shipments summary."] = "select count(*)
  1213. from (
  1214. select oo.serial_no
  1215. from (
  1216. select t.serial_no from (
  1217. SELECT
  1218. a.serial_no,
  1219. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1220. from public.ocean_milestone a
  1221. left join public.customer_service_milestone_sno s on a.code = s.code
  1222. where s.type = 'sea'
  1223. and a.act_date is not null
  1224. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1225. )t WHERE rn = 1
  1226. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1227. union all
  1228. select oo.serial_no
  1229. from (
  1230. select t.serial_no from (
  1231. SELECT
  1232. a.code,a.serial_no,
  1233. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1234. from public.air_milestone a
  1235. left join public.customer_service_milestone_sno s on a.code = s.code
  1236. where s.type = 'sea'
  1237. and a.act_date is not null
  1238. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1239. )t WHERE rn = 1
  1240. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1241. union all
  1242. select oo.serial_no
  1243. from (
  1244. select t.serial_no from (
  1245. SELECT
  1246. a.serial_no,
  1247. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1248. from sfs.air_milestone a
  1249. left join public.customer_service_milestone_sno s on a.code = s.code
  1250. where s.type = 'sea'
  1251. and a.act_date is not null
  1252. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1253. )t WHERE rn = 1
  1254. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1255. )t;select *
  1256. from (
  1257. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1258. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1259. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1260. from (
  1261. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1262. from (
  1263. SELECT
  1264. case when a.code = 'IFFDEP' then 'Departure'
  1265. when a.code = 'IFFARR' then 'Arrived'
  1266. when a.code = 'IFFDEL' then 'Delivered'
  1267. else s.description end as action_type,
  1268. a.update_date,a.code,a.serial_no,
  1269. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1270. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1271. a.act_time,
  1272. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1273. from public.ocean_milestone a
  1274. left join public.customer_service_milestone_sno s on a.code = s.code
  1275. where s.type = 'sea'
  1276. and a.act_date is not null
  1277. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1278. )t WHERE rn = 1
  1279. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no
  1280. union all
  1281. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1282. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1283. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1284. from (
  1285. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1286. from (
  1287. SELECT
  1288. case when a.code = 'IFFDEP' then 'Departure'
  1289. when a.code = 'IFFARR' then 'Arrived'
  1290. when a.code = 'IFFDEL' then 'Delivered'
  1291. else s.description end as action_type,
  1292. a.update_date,a.code,a.serial_no,
  1293. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1294. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1295. a.act_time,
  1296. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1297. from public.air_milestone a
  1298. left join public.customer_service_milestone_sno s on a.code = s.code
  1299. where s.type = 'sea'
  1300. and a.act_date is not null
  1301. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1302. )t WHERE rn = 1
  1303. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no
  1304. union all
  1305. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1306. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1307. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1308. from (
  1309. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1310. from (
  1311. SELECT
  1312. case when a.code = 'IFFDEP' then 'Departure'
  1313. when a.code = 'IFFARR' then 'Arrived'
  1314. when a.code = 'IFFDEL' then 'Delivered'
  1315. else s.description end as action_type,
  1316. a.update_date,a.code,a.serial_no,
  1317. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1318. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1319. a.act_time,
  1320. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1321. from sfs.air_milestone a
  1322. left join public.customer_service_milestone_sno s on a.code = s.code
  1323. where s.type = 'sea'
  1324. and a.act_date is not null
  1325. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1326. )t WHERE rn = 1
  1327. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no
  1328. )t limit 10;select sum(case when (action_type='Departure') then 1 else 0 end) as dep,
  1329. sum(case when (action_type='Arrived') then 1 else 0 end) as arr,
  1330. sum(case when (action_type='Delivered') then 1 else 0 end) as del
  1331. from (
  1332. select action_type
  1333. from (
  1334. select t.action_type,t.serial_no from (
  1335. SELECT
  1336. case when a.code = 'IFFDEP' then 'Departure'
  1337. when a.code = 'IFFARR' then 'Arrived'
  1338. when a.code = 'IFFDEL' then 'Delivered'
  1339. else s.description end as action_type,
  1340. a.serial_no,
  1341. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1342. from public.ocean_milestone a
  1343. left join public.customer_service_milestone_sno s on a.code = s.code
  1344. where s.type = 'sea'
  1345. and a.act_date is not null
  1346. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1347. )t WHERE rn = 1
  1348. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1349. union all
  1350. select action_type
  1351. from (
  1352. select t.action_type,t.serial_no from (
  1353. SELECT
  1354. case when a.code = 'IFFDEP' then 'Departure'
  1355. when a.code = 'IFFARR' then 'Arrived'
  1356. when a.code = 'IFFDEL' then 'Delivered'
  1357. else s.description end as action_type,
  1358. a.serial_no,
  1359. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1360. from public.air_milestone a
  1361. left join public.customer_service_milestone_sno s on a.code = s.code
  1362. where s.type = 'sea'
  1363. and a.act_date is not null
  1364. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1365. )t WHERE rn = 1
  1366. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1367. union all
  1368. select action_type
  1369. from (
  1370. select t.action_type,t.serial_no from (
  1371. SELECT
  1372. case when a.code = 'IFFDEP' then 'Departure'
  1373. when a.code = 'IFFARR' then 'Arrived'
  1374. when a.code = 'IFFDEL' then 'Delivered'
  1375. else s.description end as action_type,
  1376. a.serial_no,
  1377. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1378. from sfs.air_milestone a
  1379. left join public.customer_service_milestone_sno s on a.code = s.code
  1380. where s.type = 'sea'
  1381. and a.act_date is not null
  1382. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1383. )t WHERE rn = 1
  1384. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1385. )t";
  1386. $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,
  1387. case when oo.eta - CURRENT_DATE <= 0 then '< 1 days'::text
  1388. else (oo.eta - CURRENT_DATE)||' days'::text end as day_to_arr
  1389. from public.kln_ocean oo where 1=1 order by eta limit 10";
  1390. return $data[$type];
  1391. }
  1392. }
  1393. ?>