utils.class.php 79 KB

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