www.gusucode.com > 123phpshop电商系统 v1.2源码程序 > code/admin/order/refund.php

    <?php
/**
 * 123PHPSHOP
 * ============================================================================
 * 版权所有 2015 上海序程信息科技有限公司,并保留所有权利。
 * 网站地址: http://www.123PHPSHOP.com;
 * ----------------------------------------------------------------------------
 * 这是一个免费的软件。您可以在商业目的和非商业目的地前提下对程序除本声明之外的
 * 代码进行修改和使用;您可以对程序代码以任何形式任何目的的再发布,但一定请保留
 * 本声明和上海序程信息科技有限公司的联系方式!本软件中使用到的第三方代码版权属
 * 于原公司所有。上海序程信息科技有限公司拥有对本声明和123PHPSHOP软件使用的最终
 * 解释权!
 * ============================================================================
 *  作者:	123PHPSHOP团队
 *  手机:	13391334121
 *  邮箱:	service@123phpshop.com
 */
?>
<?php require_once('../../Connections/localhost.php'); ?>
<?php
$could_delete=1;
$colname_order = "-1";
if (isset($_GET['id'])) {
  $colname_order = (get_magic_quotes_gpc()) ? $_GET['id'] : addslashes($_GET['id']);
}
mysql_select_db($database_localhost, $localhost);
$query_order = sprintf("SELECT * FROM orders WHERE id = %s AND order_status=".ORDER_STATUS_RETURNED_APPLIED." OR order_status=".ORDER_STATUS_RETURNED, $colname_order);
$order = mysql_query($query_order, $localhost) or die(mysql_error());
$row_order = mysql_fetch_assoc($order);
$totalRows_order = mysql_num_rows($order);

if($totalRows_order==0){
	$could_delete=0;
} 

if($could_delete==1){

	$update_catalog = sprintf("update `orders` set order_status=".ORDER_STATUS_REFUND." where id = %s", $colname_order);
	$update_catalog_query = mysql_query($update_catalog, $localhost);
	if(!$update_catalog_query){
		$could_delete=0;
	}else{
	
		$order_log_sql="insert into order_log(order_id,message)values('".$colname_order."','".商家已经退款."')";
		mysql_query($order_log_sql, $localhost);
		$remove_succeed_url="index.php";
		header("Location: " . $remove_succeed_url );
 	}
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<?php if($could_delete==0){ ?>
<p>由于一下原因,您不能对这个订单进行退货处理:</p>
<p>1. 订单不存在,请检查参数之后再试。</p>
<p>2. 用户没有申请退货,请检查参数之后再试。</p>
<p>3. 系统错误,无法退货,请示稍后再试。 </p>
<p>您也可以<a href="index.php">点击这里返回</a>。
  <?php } ?>
</p>
</body>
</html>
<?php
mysql_free_result($order);
?>