You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
400 B

  1. <?php
  2. /*
  3. Author:XM
  4. Compeny:Spiders Travel
  5. */
  6. //检查订单已安排
  7. require_once __DIR__.'/../Common/Mysql.php';
  8. $pdo=conn();
  9. if(is_object($pdo)){
  10. $sql="CALL HT_CHECK_ORDER_PREPAID_TIME(2)";
  11. $result=$pdo->query($sql);
  12. $rowset=$result->fetchAll(PDO::FETCH_ASSOC);
  13. }
  14. if (is_array($rowset)){
  15. writeLog("check_order_auto_complete.php HT_CHECK_ORDER_PREPAID_TIME()::".json_encode($rowset));
  16. }
  17. exit;