ShowDd.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("class/hShopSysFun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"shopdd");
  21. $enews=ehtmlspecialchars($_GET['enews']);
  22. $url="查看订单";
  23. $ddid=(int)$_GET['ddid'];
  24. if(!$ddid)
  25. {
  26. printerror('ErrorUrl','');
  27. }
  28. $r=$empire->fetch1("select * from {$dbtbpre}enewsshopdd where ddid='$ddid'");
  29. if(!$r['ddid'])
  30. {
  31. printerror('ErrorUrl','');
  32. }
  33. $addr=$empire->fetch1("select * from {$dbtbpre}enewsshopdd_add where ddid='$ddid'");
  34. //提交者
  35. if(empty($r[userid]))//非会员
  36. {
  37. $username="<font color=cccccc>游客</font>";
  38. }
  39. else
  40. {
  41. $username="<a href='../member/AddMember.php?enews=EditMember&userid=".$r[userid].$ecms_hashur['ehref']."' target=_blank>".$r[username]."</a>";
  42. }
  43. //需要发票
  44. $fp="否";
  45. if($r[fp])
  46. {
  47. $fp="是";
  48. }
  49. //金额
  50. $total=0;
  51. if($r[payby]==1)
  52. {
  53. $pstotal=$r[pstotal]." 点";
  54. $alltotal=$r[alltotalfen]." 点";
  55. $total=$r[pstotal]+$r[alltotalfen];
  56. $mytotal=$total." 点";
  57. }
  58. else
  59. {
  60. $pstotal=$r[pstotal]." 元";
  61. $alltotal=$r[alltotal]." 元";
  62. $total=$r[pstotal]+$r[alltotal]+$r[fptotal]-$r[pretotal];
  63. $mytotal=$total." 元";
  64. }
  65. //支付方式
  66. if($r[payby]==1)
  67. {
  68. $payfsname=$r[payfsname]."(积分购买)";
  69. }
  70. elseif($r[payby]==2)
  71. {
  72. $payfsname=$r[payfsname]."(余额购买)";
  73. }
  74. else
  75. {
  76. $payfsname=$r[payfsname];
  77. }
  78. //状态
  79. if($r['checked']==1)
  80. {
  81. $ch="已确认";
  82. }
  83. elseif($r['checked']==2)
  84. {
  85. $ch="取消";
  86. }
  87. elseif($r['checked']==3)
  88. {
  89. $ch="退货";
  90. }
  91. else
  92. {
  93. $ch="<font color=red>未确认</font>";
  94. }
  95. //发货
  96. if($r['outproduct']==1)
  97. {
  98. $ou="已发货";
  99. }
  100. elseif($r['outproduct']==2)
  101. {
  102. $ou="备货中";
  103. }
  104. else
  105. {
  106. $ou="<font color=red>未发货</font>";
  107. }
  108. if($r['haveprice']==1)
  109. {
  110. $ha="已付款";
  111. }
  112. else
  113. {
  114. $ha="<font color=red>未付款</font>";
  115. }
  116. //显示商品信息
  117. function ShowBuyproduct($buycar,$payby){
  118. global $empire,$dbtbpre;
  119. $record="!";
  120. $field="|";
  121. $buycarr=explode($record,$buycar);
  122. $bcount=count($buycarr);
  123. $totalmoney=0;
  124. $totalfen=0;
  125. ?>
  126. <table width='100%' border=0 align=center cellpadding=3 cellspacing=1>
  127. <tr class='header'>
  128. <td width='9%' height=23> <div align=center>序号</div></td>
  129. <td width='42%'> <div align=center>商品名称</div></td>
  130. <td width='15%'> <div align=center>单价</div></td>
  131. <td width='10%'> <div align=center>数量</div></td>
  132. <td width='19%'> <div align=center>小计</div></td>
  133. </tr>
  134. <?php
  135. $j=0;
  136. for($i=0;$i<$bcount-1;$i++)
  137. {
  138. $j++;
  139. $pr=explode($field,$buycarr[$i]);
  140. $productid=$pr[1];
  141. $fr=explode(",",$pr[1]);
  142. //ID
  143. $classid=(int)$fr[0];
  144. $id=(int)$fr[1];
  145. //属性
  146. $addatt='';
  147. if($pr[2])
  148. {
  149. $addatt=$pr[2];
  150. }
  151. //数量
  152. $pnum=(int)$pr[3];
  153. if(empty($pnum))
  154. {
  155. $pnum=1;
  156. }
  157. //单价
  158. $price=$pr[4];
  159. $thistotal=$price*$pnum;
  160. $buyfen=$pr[5];
  161. $thistotalfen=$buyfen*$pnum;
  162. if($payby==1)
  163. {
  164. $showprice=$buyfen." 点";
  165. $showthistotal=$thistotalfen." 点";
  166. }
  167. else
  168. {
  169. $showprice=$price." 元";
  170. $showthistotal=$thistotal." 元";
  171. }
  172. //产品名称
  173. $title=stripSlashes($pr[6]);
  174. //返回链接
  175. $titleurl="../../public/InfoUrl/?classid=$classid&id=$id";
  176. $totalmoney+=$thistotal;
  177. $totalfen+=$thistotalfen;
  178. ?>
  179. <tr>
  180. <td align=center><?=$j?></td>
  181. <td align=center><a href="<?=$titleurl?>" target="_blank"><?=$title?></a><?=$addatt?' - '.$addatt:''?></td>
  182. <td align=right><b>¥<?=$showprice?></b></td>
  183. <td align=right><?=$pnum?></td>
  184. <td align=right><?=$showthistotal?></td>
  185. </tr>
  186. <?php
  187. }
  188. //点数付费
  189. if($payby==1)
  190. {
  191. ?>
  192. <tr>
  193. <td colspan=5><div align=right>合计点数:<strong><?=$totalfen?></strong></div></td>
  194. <td>&nbsp;</td>
  195. </tr>
  196. <?php
  197. }
  198. else
  199. {
  200. ?>
  201. <tr>
  202. <td colspan=5><div align=right>合计:<strong>¥<?=$totalmoney?></strong></div></td>
  203. <td>&nbsp;</td>
  204. </tr>
  205. <?php
  206. }
  207. ?>
  208. </table>
  209. <?php
  210. }
  211. //------ 操作日志 ------
  212. //操作事件
  213. $shopecms_r=array
  214. (
  215. 'SetChecked'=>'设置订单状态',
  216. 'SetOutProduct'=>'设置发货状态',
  217. 'SetHaveprice'=>'设置付款状态',
  218. 'DelDd'=>'删除订单',
  219. 'EditPretotal'=>'修改优惠金额',
  220. 'DdRetext'=>'修改后台订单备注',
  221. 'DoCutMaxnum'=>'设置库存',
  222. );
  223. ?>
  224. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  225. <html>
  226. <head>
  227. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  228. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  229. <title>查看订单</title>
  230. <script>
  231. function PrintDd()
  232. {
  233. pdiv.style.display="none";
  234. window.print();
  235. }
  236. </script>
  237. </head>
  238. <body>
  239. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  240. <form name="showddform" id="showddform" method="post" action="ecmsshop.php" onsubmit="return confirm('确认要操作?');">
  241. <?=$ecms_hashur['form']?>
  242. <input name="enews" type="hidden" id="enews" value="DdRetext">
  243. <input name="ddid" type="hidden" id="ddid" value="<?=$ddid?>">
  244. <tr>
  245. <td width="61%" height="27" bgcolor="#FFFFFF"><strong>订单ID:
  246. <?=$r[ddno]?>
  247. </strong></td>
  248. <td width="39%" bgcolor="#FFFFFF"><strong>下单时间:
  249. <?=$r[ddtime]?>
  250. </strong></td>
  251. </tr>
  252. <tr>
  253. <td height="23" colspan="2" bgcolor="#EFEFEF"><strong>商品信息</strong></td>
  254. </tr>
  255. <tr>
  256. <td colspan="2">
  257. <?
  258. ShowBuyproduct($addr[buycar],$r[payby]);
  259. ?> </td>
  260. </tr>
  261. <tr>
  262. <td height="23" colspan="2" bgcolor="#EFEFEF"><strong>订单信息</strong></td>
  263. </tr>
  264. <tr>
  265. <td height="23" colspan="2"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  266. <tr>
  267. <td height="25"><div align="right">提交者:</div></td>
  268. <td><?=$username?></td>
  269. <td><div align="right">提交者IP地址:</div></td>
  270. <td><strong>
  271. <?=$r[userip]?>
  272. </strong></td>
  273. </tr>
  274. <tr>
  275. <td width="15%" height="25">
  276. <div align="right">订单号:</div></td>
  277. <td width="35%"><strong>
  278. <?=$r[ddno]?>
  279. </strong></td>
  280. <td width="15%"><div align="right">订单状态:</div></td>
  281. <td width="35%"><strong>
  282. <?=$ha?>
  283. </strong>/<strong>
  284. <?=$ou?>
  285. </strong>/<strong>
  286. <?=$ch?>
  287. </strong></td>
  288. </tr>
  289. <tr>
  290. <td height="25">
  291. <div align="right">下单时间:</div></td>
  292. <td><strong>
  293. <?=$r[ddtime]?>
  294. </strong></td>
  295. <td><div align="right">商品总金额:</div></td>
  296. <td><strong>
  297. <?=$alltotal?>
  298. </strong></td>
  299. </tr>
  300. <tr>
  301. <td height="25">
  302. <div align="right">配送方式:</div></td>
  303. <td><strong>
  304. <?=$r[psname]?>
  305. </strong></td>
  306. <td><div align="right">+ 商品运费:</div></td>
  307. <td><strong>
  308. <?=$pstotal?>
  309. </strong></td>
  310. </tr>
  311. <tr>
  312. <td height="25">
  313. <div align="right">支付方式:</div></td>
  314. <td><strong>
  315. <?=$payfsname?>
  316. </strong></td>
  317. <td><div align="right">+ 发票费用:</div></td>
  318. <td><?=$r[fptotal]?></td>
  319. </tr>
  320. <tr>
  321. <td height="25">
  322. <div align="right">需要发票:</div></td>
  323. <td><?=$fp?></td>
  324. <td><div align="right">- 优惠:</div></td>
  325. <td><?=$r[pretotal]?></td>
  326. </tr>
  327. <tr>
  328. <td height="25">
  329. <div align="right">发票抬头:</div></td>
  330. <td><strong>
  331. <?=stripSlashes($r[fptt])?>
  332. </strong></td>
  333. <td><div align="right">订单总金额:</div></td>
  334. <td><strong>
  335. <?=$mytotal?>
  336. </strong></td>
  337. </tr>
  338. <tr>
  339. <td height="25"><div align="right">发票名称:</div></td>
  340. <td colspan="3"><strong>
  341. <?=stripSlashes($r[fpname])?>
  342. </strong></td>
  343. </tr>
  344. </table></td>
  345. </tr>
  346. <tr>
  347. <td height="23" colspan="2" bgcolor="#EFEFEF"><strong>收货人信息</strong></td>
  348. </tr>
  349. <tr>
  350. <td colspan="2"><table width="100%%" border="0" cellspacing="1" cellpadding="3">
  351. <tr>
  352. <td width="20%" height="25">真实姓名:</td>
  353. <td width="80%">
  354. <?=stripSlashes($r[truename])?> </td>
  355. </tr>
  356. <tr>
  357. <td height="25">QQ:</td>
  358. <td>
  359. <?=stripSlashes($r[oicq])?> </td>
  360. </tr>
  361. <tr>
  362. <td height="25">MSN:</td>
  363. <td>
  364. <?=stripSlashes($r[msn])?> </td>
  365. </tr>
  366. <tr>
  367. <td height="25">固定电话:</td>
  368. <td>
  369. <?=stripSlashes($r[mycall])?> </td>
  370. </tr>
  371. <tr>
  372. <td height="25">手机:</td>
  373. <td>
  374. <?=stripSlashes($r[phone])?> </td>
  375. </tr>
  376. <tr>
  377. <td height="25">联系邮箱:</td>
  378. <td>
  379. <?=stripSlashes($r[email])?> </td>
  380. </tr>
  381. <tr>
  382. <td height="25">联系地址:</td>
  383. <td>
  384. <?=stripSlashes($r[address])?> </td>
  385. </tr>
  386. <tr>
  387. <td height="25">邮编:</td>
  388. <td>
  389. <?=stripSlashes($r[zip])?> </td>
  390. </tr>
  391. <tr>
  392. <td height="25">标志建筑:</td>
  393. <td><?=stripSlashes($r[signbuild])?></td>
  394. </tr>
  395. <tr>
  396. <td height="25">最佳送货时间:</td>
  397. <td><?=stripSlashes($r[besttime])?></td>
  398. </tr>
  399. <tr>
  400. <td height="25">备注:</td>
  401. <td>
  402. <?=nl2br(stripSlashes($addr[bz]))?> </td>
  403. </tr>
  404. </table></td>
  405. </tr>
  406. <tbody id="pdiv">
  407. <tr>
  408. <td height="23" colspan="2" bgcolor="#EFEFEF"><strong>相关操作</strong></td>
  409. </tr>
  410. <tr>
  411. <td height="23" colspan="2"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  412. <tr>
  413. <td width="16%">后台备注内容:<br>
  414. <br>
  415. <font color="#666666">(前台会员可查看,比如提供快递号等信息)</font></td>
  416. <td width="77%"><textarea name="retext" cols="65" rows="6" id="retext"><?=stripSlashes($addr['retext'])?></textarea></td>
  417. <td width="7%"><input type="submit" name="Submit2" value="提交" onClick="document.showddform.enews.value='DdRetext';"></td>
  418. </tr>
  419. <tr>
  420. <td height="25">修改优惠金额:</td>
  421. <td><input name="pretotal" type="text" id="pretotal" value="<?=$r[pretotal]?>">
  422. 修改原因:
  423. <input name="bz" type="text" id="bz"></td>
  424. <td><input type="submit" name="Submit3" value="提交" onClick="document.showddform.enews.value='EditPretotal';"></td>
  425. </tr>
  426. </table></td>
  427. </tr>
  428. <tr>
  429. <td height="23" colspan="2" bgcolor="#EFEFEF"><strong>订单操作日志</strong></td>
  430. </tr>
  431. <tr>
  432. <td height="23" colspan="2"><table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  433. <tr class="header">
  434. <td width="21%" height="23"><div align="center">操作时间</div></td>
  435. <td width="17%"><div align="center">操作者</div></td>
  436. <td width="19%"><div align="center">事件</div></td>
  437. <td width="19%"><div align="center">操作内容</div></td>
  438. <td width="24%"><div align="center">操作原因</div></td>
  439. </tr>
  440. <?php
  441. $logsql=$empire->query("select logid,userid,username,ecms,bz,addbz,logtime from {$dbtbpre}enewsshop_ddlog where ddid='$ddid' order by logid desc");
  442. while($logr=$empire->fetch($logsql))
  443. {
  444. $empirecms=$shopecms_r[$logr['ecms']];
  445. if($logr['ecms']=='DoCutMaxnum')
  446. {
  447. $logr['addbz']=$logr['addbz']=='ecms=1'?'还原库存':'减少库存';
  448. }
  449. ?>
  450. <tr bgcolor="#ffffff">
  451. <td height="23"><div align="center"><?=$logr['logtime']?></div></td>
  452. <td><div align="center"><?=$logr['username']?></div></td>
  453. <td><div align="center"><?=$empirecms?></div></td>
  454. <td><?=$logr['addbz']?></td>
  455. <td><?=$logr['bz']?></td>
  456. </tr>
  457. <?php
  458. }
  459. ?>
  460. </table></td>
  461. </tr>
  462. <tr>
  463. <td colspan="2"><div align="center">
  464. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  465. <tr>
  466. <td><div align="center">
  467. <input type="button" name="Submit" value=" 打 印 " onclick="javascript:PrintDd();">
  468. </div></td>
  469. </tr>
  470. </table>
  471. </div></td>
  472. </tr>
  473. </tbody>
  474. </form>
  475. </table>
  476. </body>
  477. </html>
  478. <?
  479. db_close();
  480. $empire=null;
  481. ?>