bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
<?php
 
define('IN_ECS', true);
 
require (dirname(__FILE__) . '/includes/init.php');
// require(dirname(__FILE__) . '/includes/lib_goods.php');
 
if((DEBUG_MODE & 2) != 2)
{
    $smarty->caching = true;
}
 
/* ------------------------------------------------------ */
// -- act 操作项的初始化
/* ------------------------------------------------------ */
if(empty($_REQUEST['act']))
{
    // 没有ID则跳转到预售商品详情页
    if(empty($_REQUEST['id']))
    {
        $_REQUEST['act'] = 'list';
    }
    // 有ID则跳转到预售商品详情页
    else
    {
        $_REQUEST['act'] = 'view';
    }
}elseif ($_REQUEST['act'] == 'buy'){
    
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    
    /* 查询:判断是否登录 */
    if($_SESSION['user_id'] <= 0)
    {
        show_message('您还没有登录,请登录', '登录', 'user.php', 'error');
    }
    
    /* 查询:取得参数:预售活动id */
    $pre_sale_id = isset($_POST['pre_sale_id']) ? intval($_POST['pre_sale_id']) : 0;
 
    if($pre_sale_id <= 0)
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 查询:取得数量 */
    $number = isset($_POST['number']) ? intval($_POST['number']) : 1;
    $number = $number < 1 ? 1 : $number;
 
    /* 查询:取得预售活动信息 */
    $pre_sale = pre_sale_info($pre_sale_id, $number);
    if(empty($pre_sale))
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
 
 
    
    /* 查询:检查预售活动是否是进行中 */
    if($pre_sale['status'] != PSS_UNDER_WAY)
    {
        show_message($_LANG['ps_error_status'], '', '', 'error');
    }
    
    /* 查询:取得预售商品信息 */
    $goods = goods_info($pre_sale['goods_id']);
    if(empty($goods))
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 查询:判断数量是否足够 */
    if(($pre_sale['restrict_amount'] > 0 && $number > ($pre_sale['restrict_amount'] - $pre_sale['valid_goods'])) || $number > $goods['goods_number'])
    {
        show_message($_LANG['ps_error_goods_lacking'], '', '', 'error');
    }
    
    /* 查询:取得规格 */
    $specs = '';
    foreach($_POST as $key => $value)
    {
        if(strpos($key, 'spec_') !== false)
        {
            $specs .= ',' . intval($value);
        }
    }
    $specs = trim($specs, ',');
    
    /* 查询:如果商品有规格则取规格商品信息 配件除外 */
    if($specs)
    {
        $_specs = explode(',', $specs);
        $product_info = get_products_info($goods['goods_id'], $_specs);
    }
    
    empty($product_info) ? $product_info = array(
        'product_number' => 0, 'product_id' => 0
    ) : '';
    
    /* 查询:判断指定规格的货品数量是否足够 */
    if($specs && $number > $product_info['product_number'] && false) // 测试
    {
        show_message($_LANG['ps_error_goods_lacking'], '', '', 'error');
    }
    
    /* 查询:查询规格名称和值,不考虑价格 */
    $attr_list = array();
    $sql = "SELECT a.attr_name, g.attr_value " . "FROM " . $ecs->table('goods_attr') . " AS g, " . $ecs->table('attribute') . " AS a " . "WHERE g.attr_id = a.attr_id " . "AND g.goods_attr_id " . db_create_in($specs);
    $res = $db->query($sql);
    while($row = $db->fetchRow($res))
    {
        $attr_list[] = $row['attr_name'] . ': ' . $row['attr_value'];
    }
    $goods_attr = join(chr(13) . chr(10), $attr_list);
    
    /* 更新:清空购物车中所有预售商品 */
    include_once (ROOT_PATH . 'includes/lib_order.php');
    clear_cart(6);
    
    /* 更新:加入购物车 */
    $goods_price = $pre_sale['deposit'] > 0 ? $pre_sale['deposit'] : $pre_sale['cur_price'];
    $cart = array(
        'user_id' => $_SESSION['user_id'], 'session_id' => SESS_ID, 'goods_id' => $pre_sale['goods_id'], 'product_id' => $product_info['product_id'], 'goods_sn' => addslashes($goods['goods_sn']), 'goods_name' => addslashes($goods['goods_name']), 'market_price' => $goods['market_price'], 'goods_price' => $goods_price, 'goods_number' => $number, 'goods_attr' => addslashes($goods_attr), 'goods_attr_id' => $specs, 'is_real' => $goods['is_real'], 'extension_code' => addslashes($goods['extension_code']), 'parent_id' => 0, 'rec_type' => 6, 'is_gift' => 0
    );
    $db->autoExecute($ecs->table('cart'), $cart, 'INSERT');
    $_SESSION['sel_cartgoods'] = $db->insert_id();
    $_SESSION['pre_sale_cart'] = $cart;
    
    /* 更新:记录购物流程类型:预售 */
    $_SESSION['flow_type'] = '6';
    $_SESSION['extension_code'] = 'pre_sale';
    $_SESSION['extension_id'] = $pre_sale_id;
    
    //zhouhui周辉
    $GLOBALS['db']->query("UPDATE ".$GLOBALS['ecs']->table('cart')." set extension_code='pre_sale',rec_type='6' where goods_id=".$goods['goods_id']." AND user_id=".$_SESSION['user_id']);
 
    ecs_header("Location: ./flow.php?step=consignee\n");
    return ;
}
 
$function_name = 'action_' . $_REQUEST['act'];
 
if(! function_exists($function_name))
{
    
    $function_name = 'action_list';
}
 
call_user_func($function_name);
 
return;
 
/* ------------------------------------------------------ */
// -- 预售商品 --> 预售活动商品列表
/* ------------------------------------------------------ */
function action_list ()
{
    $smarty = $GLOBALS['smarty'];
    
    /* 取得预售活动总数 */
    $count = pre_sale_count();
 
    if($count > 0)
    {
        /* 取得每页记录数 */
        $size = isset($_CFG['page_size']) && intval($_CFG['page_size']) > 0 ? intval($_CFG['page_size']) : 12;
        
        /* 计算总页数 */
        $page_count = ceil($count / $size);
        
        /* 取得当前页 */
        $page = isset($_REQUEST['page']) && intval($_REQUEST['page']) > 0 ? intval($_REQUEST['page']) : 1;
        $page = $page > $page_count ? $page_count : $page;
        
        /* 缓存id:语言 - 每页记录数 - 当前页 */
        $cache_id = $_CFG['lang'] . '-' . $size . '-' . $page;
        $cache_id = sprintf('%X', crc32($cache_id));
    }
    else
    {
        /* 缓存id:语言 */
        $cache_id = $_CFG['lang'];
        $cache_id = sprintf('%X', crc32($cache_id));
    }
    
    
        if($count > 0)
        {
            /* 取得当前页的预售活动 */
            $ps_list = pre_sale_list($size, $page);
            $smarty->assign('ps_list', $ps_list);
            
            /* 设置分页链接 */
            $pager = get_pager('pre_sale.php', array(
                'act' => 'list'
            ), $count, $page, $size);
            $smarty->assign('pager', $pager);
        }
/*        echo "<pre>";
        print_r($ps_list);
        return;*/
        
        /* 模板赋值 */
        $smarty->assign("ROOTPATH", "../");
        $smarty->assign('cfg', $_CFG);
        $position = assign_ur_here('pre_sale');
        $smarty->assign('page_title', $position['title']); // 页面标题
        $smarty->assign('ur_here', $position['ur_here']); // 当前位置
        $smarty->assign('categories', get_categories_tree()); // 分类树
        $smarty->assign('helps', get_shop_help()); // 网店帮助
        $smarty->assign('top_goods', get_top10()); // 销售排行
        $smarty->assign('promotion_info', get_promotion_info());
        $smarty->assign('feed_url', ($_CFG['rewrite'] == 1) ? "feed-typepre_sale.xml" : 'feed.php?type=pre_sale'); // RSS
                                                                                                                   // UR
    /* 显示模板 */
    $smarty->display('pre_sale_list.dwt');
    
}
 
/* ------------------------------------------------------ */
// -- 预售商品 --> 商品详情
/* ------------------------------------------------------ */
function action_view ()
{
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    
    /* 取得参数:预售活动id */
    $pre_sale_id = isset($_REQUEST['id']) ? intval($_REQUEST['id']) : 0;
    if($pre_sale_id <= 0)
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 取得预售活动信息 */
    $pre_sale = pre_sale_info($pre_sale_id);
    
    if(empty($pre_sale))
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    // elseif ($pre_sale['is_on_sale'] == 0 || $pre_sale['is_alone_sale'] == 0)
    // {
    // header("Location: ./\n");
    // exit;
    // }
    
    /* 评价数量 */
    $pre_sale['comment_count'] = goods_comment_count($pre_sale['goods_id']);
    /* 累计销量 */
    $pre_sale['sale_count'] = goods_sale_count($pre_sale['goods_id']);
    /* 赠送积分 */
    $pre_sale['give_integral'] = $pre_sale['gift_integral'];
    
    /* 缓存id:语言,预售活动id,状态,(如果是进行中)当前数量和是否登录 */
    $cache_id = $_CFG['lang'] . '-' . $pre_sale_id . '-' . $pre_sale['status'];
    // 活动进行中
    if($pre_sale['status'] == PSS_UNDER_WAY)
    {
        $cache_id = $cache_id . '-' . $pre_sale['valid_goods'] . '-' . intval($_SESSION['user_id'] > 0);
    }
    $cache_id = sprintf('%X', crc32($cache_id));
    
    /* 如果没有缓存,生成缓存 */
    if(! $smarty->is_cached('pre_sale_goods.dwt', $cache_id) || true)
    {
        $pre_sale['gmt_end_date'] = $pre_sale['end_date'];
        $smarty->assign('pre_sale', $pre_sale);
        
        /* 取得预售商品信息 */
        $goods_id = $pre_sale['goods_id'];
        $goods = get_goods_info($goods_id);
        if(empty($goods))
        {
            ecs_header("Location: pre_sale.php\n");
            exit();
        }
        $goods['url'] = build_uri('goods', array(
            'gid' => $goods_id
        ), $goods['goods_name']);
        
        $goods = array_merge($goods, $pre_sale);
        
        $gift_integral = $pre_sale['gift_integral'];
        
        $goods['give_integral'] = $pre_sale['gift_integral'];
        
        // $parent_cat_id = get_parent_cat_id($goods['cat_id']);
        // $goods['child_cat'] = get_child_cat($parent_cat_id); // 相关分类
        // $goods['get_cat_brands'] = get_cat_brands($parent_cat_id);; // 同类品牌
        
        $smarty->assign('url', $_SERVER["REQUEST_URI"]);
        $smarty->assign('volume_price', $goods_volume_price);
        $smarty->assign('goods_id', $goods['goods_id']);
        $smarty->assign('promote_end_time', $goods['gmt_end_time']);
        
        $smarty->assign('helps', get_shop_help()); // 网店帮助
        $smarty->assign('top_goods', get_top10()); // 销售排行
        $smarty->assign('promotion_info', get_promotion_info());
        
        // yyy添加start
        $count1 = $GLOBALS['db']->getOne("SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('comment') . " where comment_type=0 and id_value ='$goods_id' and status=1");
        $smarty->assign('review_count', $count1); // 评论数
                                                  
        // 评价晒单 增加 by www.ahxcjy.com
        $rank_num['rank_a'] = $GLOBALS['db']->getOne("SELECT COUNT(*) AS num FROM " . $GLOBALS['ecs']->table('comment') . " WHERE id_value = '$goods_id' AND status = 1 AND comment_rank in (5,4)");
        $rank_num['rank_b'] = $GLOBALS['db']->getOne("SELECT COUNT(*) AS num FROM " . $GLOBALS['ecs']->table('comment') . " WHERE id_value = '$goods_id' AND status = 1 AND comment_rank in (3,2)");
        $rank_num['rank_c'] = $GLOBALS['db']->getOne("SELECT COUNT(*) AS num FROM " . $GLOBALS['ecs']->table('comment') . " WHERE id_value = '$goods_id' AND status = 1 AND comment_rank = 1");
        $rank_num['rank_total'] = $rank_num['rank_a'] + $rank_num['rank_b'] + $rank_num['rank_c'];
        $rank_num['rank_pa'] = ($rank_num['rank_a'] > 0) ? round(($rank_num['rank_a'] / $rank_num['rank_total']) * 100, 1) : 0;
        $rank_num['rank_pb'] = ($rank_num['rank_b'] > 0) ? round(($rank_num['rank_b'] / $rank_num['rank_total']) * 100, 1) : 0;
        $rank_num['rank_pc'] = ($rank_num['rank_c'] > 0) ? round(($rank_num['rank_c'] / $rank_num['rank_total']) * 100, 1) : 0;
        $rank_num['shaidan_num'] = $GLOBALS['db']->getOne("SELECT COUNT(*) AS num FROM " . $GLOBALS['ecs']->table('shaidan') . " WHERE goods_id = '$goods_id' AND status = 1");
        $smarty->assign('rank_num', $rank_num);
        
        $res = $GLOBALS['db']->getAll("SELECT * FROM " . $GLOBALS['ecs']->table('goods_tag') . " WHERE goods_id = '$goods_id' AND state = 1");
        foreach($res as $v)
        {
            $v['tag_num'] = $GLOBALS['db']->getOne("SELECT COUNT(*) AS num FROM " . $GLOBALS['ecs']->table('comment') . " WHERE id_value = '$goods_id' AND status = 1 AND FIND_IN_SET($v[tag_id],comment_tag)");
            $tag_arr[] = $v;
        }
        require_once 'includes/lib_comment.php';
        $tag_arr = array_sort($tag_arr, 'tag_num', 'desc');
        if($tag_arr)
        {
            foreach($tag_arr as $key => $val)
            {
                if($_CFG['tag_show_num'] > 0)
                {
                    if(($key + 1) <= $_CFG['tag_show_num'])
                    {
                        $comment_tags[] = $val;
                    }
                }
                else
                {
                    $comment_tags[] = $val;
                }
            }
        }
        $smarty->assign('comment_tags', $comment_tags);
        
        /* meta */
        $smarty->assign('keywords', htmlspecialchars($goods['keywords']));
        $smarty->assign('description', htmlspecialchars($goods['goods_brief']));
        
        $goods['goods_style_name'] = add_style($goods['goods_name'], $goods['goods_name_style']);
        $smarty->assign('goods', $goods);
        $smarty->assign('goods_id', $goods['goods_id']);
        
        /* 取得商品的规格 */
        $properties = get_goods_properties($goods_id);
        $smarty->assign('specification', $properties['spe']); // 商品规格
        $smarty->assign('pictures', get_goods_gallery_attr_2($goods_id, $goods_attr_id)); // 商品相册
        $smarty->assign('new_goods', get_recommend_goods('new')); // 最新商品
        $smarty->assign('shop_country', $_CFG['shop_country']);
        
        /* 代码增加_start By  */
        $sql_attr = "SELECT a.attr_id, ga.goods_attr_id FROM " . $GLOBALS['ecs']->table('attribute') . " AS a left join " . $GLOBALS['ecs']->table('goods_attr') . "  AS ga on a.attr_id=ga.attr_id  WHERE a.is_attr_gallery=1 and ga.goods_id='" . $goods_id . "' order by ga.goods_attr_id ";
        $goods_attr = $GLOBALS['db']->getRow($sql_attr);
        if($goods_attr)
        {
            $goods_attr_id = $goods_attr['goods_attr_id'];
            $smarty->assign('attr_id', $goods_attr['attr_id']);
        }
        else
        {
            $smarty->assign('attr_id', 0);
        }
        
        $prod_exist_arr = array();
        $sql_prod = "select goods_attr from " . $GLOBALS['ecs']->table('products') . " where product_number>0 and goods_id='$goods_id' order by goods_attr";
        $res_prod = $GLOBALS['db']->query($sql_prod);
        while($row_prod = $GLOBALS['db']->fetchRow($res_prod))
        {
            $prod_exist_arr[] = "|" . $row_prod['goods_attr'] . "|";
        }
        $smarty->assign('prod_exist_arr', $prod_exist_arr);
        
        // 模板赋值
        $smarty->assign('cfg', $_CFG);
        assign_template();
        
        $position = assign_ur_here(0, $goods['goods_name']);
        $smarty->assign('page_title', $position['title']); // 页面标题
        $smarty->assign('ur_here', $position['ur_here']); // 当前位置
        
        /* 代码增加_start By www.ahxcjy.com */
        $goods['supplier_name'] = "网站自营";
        if($goods['supplier_id'] > 0)
        {
            $sql_supplier = "SELECT s.supplier_id,s.supplier_name,s.add_time,sr.rank_name FROM " . $ecs->table("supplier") . " as s left join " . $ecs->table("supplier_rank") . " as sr ON s.rank_id=sr.rank_id WHERE s.supplier_id=" . $goods[supplier_id] . " AND s.status=1";
            $shopuserinfo = $db->getRow($sql_supplier);
            $goods['supplier_name'] = $shopuserinfo['supplier_name'];
            get_dianpu_baseinfo($goods['supplier_id'], $shopuserinfo);
        }
        
        assign_dynamic('pre_sale_goods');
    }
    
    // 更新商品点击次数
    $sql = 'UPDATE ' . $GLOBALS['ecs']->table('goods') . ' SET click_count = click_count + 1 ' . "WHERE goods_id = '" . $pre_sale['goods_id'] . "'";
    $GLOBALS['db']->query($sql);
    $smarty->assign("ROOTPATH", "../");
    $smarty->assign('now_time', gmtime()); // 当前系统时间
    $smarty->display('pre_sale_goods.dwt', $cache_id);
}
 
/* ------------------------------------------------------ */
// -- 预售商品 --> 购买
/* ------------------------------------------------------ */
function action_buy ()
{
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    
    /* 查询:判断是否登录 */
    if($_SESSION['user_id'] <= 0)
    {
        show_message($_LANG['ps_error_login'], '', '', 'error');
    }
    
    /* 查询:取得参数:预售活动id */
    $pre_sale_id = isset($_POST['pre_sale_id']) ? intval($_POST['pre_sale_id']) : 0;
    if($pre_sale_id <= 0)
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 查询:取得数量 */
    $number = isset($_POST['number']) ? intval($_POST['number']) : 1;
    $number = $number < 1 ? 1 : $number;
    
    /* 查询:取得预售活动信息 */
    $pre_sale = pre_sale_info($pre_sale_id, $number);
    if(empty($pre_sale))
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 查询:检查预售活动是否是进行中 */
    if($pre_sale['status'] != PSS_UNDER_WAY)
    {
        show_message($_LANG['ps_error_status'], '', '', 'error');
    }
    
    /* 查询:取得预售商品信息 */
    $goods = goods_info($pre_sale['goods_id']);
    if(empty($goods))
    {
        ecs_header("Location: pre_sale.php\n");
        exit();
    }
    
    /* 查询:判断数量是否足够 */
    if(($pre_sale['restrict_amount'] > 0 && $number > ($pre_sale['restrict_amount'] - $pre_sale['valid_goods'])) || $number > $goods['goods_number'])
    {
        show_message($_LANG['ps_error_goods_lacking'], '', '', 'error');
    }
    
    /* 查询:取得规格 */
    $specs = '';
    foreach($_POST as $key => $value)
    {
        if(strpos($key, 'spec_') !== false)
        {
            $specs .= ',' . intval($value);
        }
    }
    $specs = trim($specs, ',');
    
    /* 查询:如果商品有规格则取规格商品信息 配件除外 */
    if($specs)
    {
        $_specs = explode(',', $specs);
        $product_info = get_products_info($goods['goods_id'], $_specs);
    }
    
    empty($product_info) ? $product_info = array(
        'product_number' => 0, 'product_id' => 0
    ) : '';
    
    /* 查询:判断指定规格的货品数量是否足够 */
    if($specs && $number > $product_info['product_number'] && false) // 测试
    {
        show_message($_LANG['ps_error_goods_lacking'], '', '', 'error');
    }
    
    /* 查询:查询规格名称和值,不考虑价格 */
    $attr_list = array();
    $sql = "SELECT a.attr_name, g.attr_value " . "FROM " . $ecs->table('goods_attr') . " AS g, " . $ecs->table('attribute') . " AS a " . "WHERE g.attr_id = a.attr_id " . "AND g.goods_attr_id " . db_create_in($specs);
    $res = $db->query($sql);
    while($row = $db->fetchRow($res))
    {
        $attr_list[] = $row['attr_name'] . ': ' . $row['attr_value'];
    }
    $goods_attr = join(chr(13) . chr(10), $attr_list);
    
    /* 更新:清空购物车中所有预售商品 */
    include_once (ROOT_PATH . 'includes/lib_order.php');
    clear_cart(6);
    
    /* 更新:加入购物车 */
    $goods_price = $pre_sale['deposit'] > 0 ? $pre_sale['deposit'] : $pre_sale['cur_price'];
    $cart = array(
        'user_id' => $_SESSION['user_id'], 'session_id' => SESS_ID, 'goods_id' => $pre_sale['goods_id'], 'product_id' => $product_info['product_id'], 'goods_sn' => addslashes($goods['goods_sn']), 'goods_name' => addslashes($goods['goods_name']), 'market_price' => $goods['market_price'], 'goods_price' => $goods_price, 'goods_number' => $number, 'goods_attr' => addslashes($goods_attr), 'goods_attr_id' => $specs, 'is_real' => $goods['is_real'], 'extension_code' => addslashes($goods['extension_code']), 'parent_id' => 0, 'rec_type' => 6, 'is_gift' => 0
    );
    $db->autoExecute($ecs->table('cart'), $cart, 'INSERT');
    $_SESSION['sel_cartgoods'] = $db->insert_id();
    $_SESSION['pre_sale_cart'] = $cart;
    
    /* 更新:记录购物流程类型:预售 */
    $_SESSION['flow_type'] = '6';
    $_SESSION['extension_code'] = 'pre_sale';
    $_SESSION['extension_id'] = $pre_sale_id;
    
    /* 进入收货人页面 */
    ecs_header("Location: ./flow.php?step=checkout\n");
    exit();
}
 
/* ------------------------------------------------------ */
// -- 预售商品 --> 检查预售订单,取消在尾款支付时间范围内尚未支付尾款的订单
/* ------------------------------------------------------ */
function action_check_order ()
{
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    
    /* 获取订单状态为 已确认、未付款、未发货 的 预售订单列表 */
    $sql = "select a.*, (a.money_paid + a.surplus + a.integral_money + a.bonus) AS total_money, b.ext_info from " . $GLOBALS['ecs']->table('order_info') . " as a LEFT JOIN " . $GLOBALS['ecs']->table('goods_activity') . " as b on (a.extension_id = b.act_id) where (a.money_paid + a.surplus + a.integral_money + a.bonus) > 0 and a.extension_code = '" . pre_sale . "' and b.is_finished = " . PSS_SUCCEED . " and a.shipping_status = " . SS_UNSHIPPED . " and order_status = " . OS_CONFIRMED . " and pay_status = " . PS_UNPAYED;
    $order_list = $GLOBALS['db']->getAll($sql);
    
    foreach($order_list as $order)
    {
        $ext_info = unserialize($order['ext_info']);
        // $order = array_merge($order, $ext_info);
        
        // 总金额:goods_amount + shipping_fee + insure_fee + pay_fee + pack_fee +
        // card_fee + tax - discount
        // $total_fee = $order['goods_amount'] + $order['shipping_fee'] +
        // $order['insure_fee'] + $order['pay_fee'] + $order['pack_fee'] +
        // $order['card_fee'] + $order['tax'] - $order['discount'];
        // 已支付:money_paid + surplus + integral_money + bonus
        // $total_money = $order['money_paid'] + $order['surplus'] +
        // $order['integral_money'] + $order['bonus'];
        
        // 已付金额
        $total_money = $order['total_money'];
        // 定金
        $deposit = $ext_info['deposit'];
        
        // 定金为0跳过
        if($deposit == 0)
        {
            continue;
        }
        
        // 已支付金额等于定金
        if($total_money == $deposit)
        {
            $retainage_start = $ext_info['retainage_start'];
            $retainage_end = $ext_info['retainage_end'];
            
            $cur_time = gmtime();
            
            // 当前时间大于尾款支付结束时间则支付超时,取消订单
            if($cur_time > $retainage_end)
            {
                cancel_ps_order($order['order_id'], $order['user_id']);
            }
        }
    }
}
 
/* 取得预售活动总数 */
function pre_sale_count ()
{
    //$now = gmtime();
    // $sql = "SELECT COUNT(*) " . "FROM " .
    // $GLOBALS['ecs']->table('goods_activity') . "WHERE act_type = '" .
    // GAT_PRE_SALE . "' " . "AND start_time <= '$now' AND is_finished < 3";
    $sql = "SELECT COUNT(*) " . "FROM " . $GLOBALS['ecs']->table('goods_activity') . "WHERE act_type = '" . GAT_PRE_SALE . "' " . " AND is_finished < 3";
    
    return $GLOBALS['db']->getOne($sql);
}
 
/**
 * 取得某页的所有预售活动
 *
 * @param int $size
 *            每页记录数
 * @param int $page
 *            当前页
 * @return array
 */
function pre_sale_list ($size, $page)
{
    /* 取得预售活动 */
    $ps_list = array();
    $now = gmtime();
    // $sql = "SELECT b.*, IFNULL(g.goods_thumb, '') AS goods_thumb, b.act_id AS
    // pre_sale_id, " . "b.start_time AS start_date, b.end_time AS end_date,
    // g.shop_price " . "FROM " . $GLOBALS['ecs']->table('goods_activity') . "
    // AS b " . "LEFT JOIN " . $GLOBALS['ecs']->table('goods') . " AS g ON
    // b.goods_id = g.goods_id " . "WHERE b.act_type = '" . GAT_PRE_SALE . "' "
    // . "AND b.start_time <= '$now' AND b.is_finished < '" . PSS_SUCCEED . "'
    // ORDER BY b.act_id DESC";
    $sql = "SELECT b.*, IFNULL(g.goods_thumb, '') AS goods_thumb, b.act_id AS pre_sale_id, " . "b.start_time AS start_date, b.end_time AS end_date, g.shop_price " . "FROM " . $GLOBALS['ecs']->table('goods_activity') . " AS b " . "LEFT JOIN " . $GLOBALS['ecs']->table('goods') . " AS g ON b.goods_id = g.goods_id " . "WHERE b.act_type = '" . GAT_PRE_SALE . "' " . " AND b.is_finished < '" . PSS_SUCCEED . "' ORDER BY b.is_finished ASC";
    
    $res = $GLOBALS['db']->selectLimit($sql, $size, ($page - 1) * $size);
    while($pre_sale = $GLOBALS['db']->fetchRow($res))
    {
        $ext_info = unserialize($pre_sale['ext_info']);
        $pre_sale = array_merge($pre_sale, $ext_info);
        $stat = pre_sale_stat($row['act_id'], $ext_info['deposit']);
        $pre_sale = array_merge($pre_sale, $stat);
        
        /* 格式化时间 */
        $pre_sale['formated_start_date'] = local_date($GLOBALS['_CFG']['time_format'], $pre_sale['start_time']);
        $pre_sale['formated_end_date'] = local_date($GLOBALS['_CFG']['time_format'], $pre_sale['end_time']);
        
        // 本地时间,用于倒计时显示,符合JS格式
        $pre_sale['local_end_date'] = local_date('Y, m-1, d, H, i, s', $pre_sale['end_time']);
        $pre_sale['local_start_date'] = local_date('Y, m-1, d, H, i, s', $pre_sale['start_time']);
        
        /* 格式化保证金 */
        $pre_sale['formated_deposit'] = price_format($pre_sale['deposit'], false);
        
        /* 处理价格阶梯 */
        $price_ladder = $pre_sale['price_ladder'];
        if(! is_array($price_ladder) || empty($price_ladder))
        {
            $price_ladder = array(
                array(
                    'amount' => 0, 'price' => 0
                )
            );
        }
        else
        {
            foreach($price_ladder as $key => $amount_price)
            {
                $price_ladder[$key]['formated_price'] = price_format($amount_price['price']);
            }
        }
        $pre_sale['price_ladder'] = $price_ladder;
        
        /* 计算当前价 */
        $cur_price = $price_ladder[0]['price']; // 初始化
        $cur_amount = $stat['valid_goods']; // 当前数量
        foreach($price_ladder as $amount_price)
        {
            if($cur_amount >= $amount_price['amount'])
            {
                $cur_price = $amount_price['price'];
            }
            else
            {
                break;
            }
        }
        
        $pre_sale['cur_price'] = $cur_price;
        $pre_sale['formated_cur_price'] = price_format($cur_price, false);
        $pre_sale['formated_shope_price'] = price_format($pre_sale['shope_price'], false);
        
        $status = pre_sale_status($pre_sale);
        
        $pre_sale['start_time'] = local_date($GLOBALS['_CFG']['date_format'], $pre_sale['start_time']);
        $pre_sale['end_time'] = local_date($GLOBALS['_CFG']['date_format'], $pre_sale['end_time']);
        $pre_sale['cur_status'] = $GLOBALS['_LANG']['pss'][$status];
        $pre_sale['status'] = $status;
        
        /* 处理图片 */
        if(empty($pre_sale['goods_thumb']))
        {
            $pre_sale['goods_thumb'] = get_image_path($pre_sale['goods_id'], $pre_sale['goods_thumb'], true);
        }
        /* 处理链接 */
        $pre_sale['url'] = build_uri('pre_sale', array(
            'pre_sale_id' => $pre_sale['pre_sale_id']
        ));
        
        /* 加入数组 */
        $ps_list[] = $pre_sale;
    }
    
    return $ps_list;
}
 
/**
 * 取消一个用户的预售订单
 *
 * @access public
 * @param int $order_id
 *            订单ID
 * @param int $user_id
 *            用户ID
 *            
 * @return void
 */
function cancel_ps_order ($order_id, $user_id = 0)
{
    
    /* 查询订单信息,检查状态 */
    $sql = "SELECT user_id, order_id, order_sn , surplus , integral , bonus_id, order_status, shipping_status, pay_status FROM " . $GLOBALS['ecs']->table('order_info') . " WHERE order_id = '$order_id' and extension_code = '" . pre_sale . "'";
    $order = $GLOBALS['db']->GetRow($sql);
    
    if(empty($order))
    {
        $GLOBALS['err']->add($GLOBALS['_LANG']['order_exist']);
        return false;
    }
    
    // 如果用户ID大于0,检查订单是否属于该用户
    if($user_id > 0 && $order['user_id'] != $user_id)
    {
        $GLOBALS['err']->add($GLOBALS['_LANG']['no_priv']);
        
        return false;
    }
    
    // 订单状态只能是“未确认”或“已确认”
    if($order['order_status'] != OS_UNCONFIRMED && $order['order_status'] != OS_CONFIRMED)
    {
        $GLOBALS['err']->add($GLOBALS['_LANG']['current_os_not_unconfirmed']);
        
        return false;
    }
    
    // 发货状态只能是“未发货”
    if($order['shipping_status'] != SS_UNSHIPPED)
    {
        $GLOBALS['err']->add($GLOBALS['_LANG']['current_ss_not_cancel']);
        
        return false;
    }
    
    // 如果付款状态是“已付款”、“付款中”,不允许取消,要取消和商家联系
    if($order['pay_status'] != PS_UNPAYED)
    {
        $GLOBALS['err']->add($GLOBALS['_LANG']['current_ps_not_cancel']);
        
        return false;
    }
    
    // 将用户订单设置为取消
    $sql = "UPDATE " . $GLOBALS['ecs']->table('order_info') . " SET order_status = '" . OS_CANCELED . "' WHERE order_id = '$order_id'";
    if($GLOBALS['db']->query($sql))
    {
        /* 载入语言文件 */
        require (ROOT_PATH . 'languages/' . $_CFG['lang'] . '/user.php');
        
        // 记录log
        $note = $GLOBALS['_LANG']['ps_timeout_system_cancel'];
        order_action($order['order_sn'], OS_CANCELED, $order['shipping_status'], PS_UNPAYED, $note, 'system');
        
        /**
         * // 退货用户余额、积分、红包
         * if ($order['user_id'] > 0 && $order['surplus'] > 0)
         * {
         * $change_desc = sprintf($GLOBALS['_LANG']['return_surplus_on_cancel'],
         * $order['order_sn']);
         * log_account_change($order['user_id'], $order['surplus'], 0, 0, 0,
         * $change_desc);
         * }
         * if ($order['user_id'] > 0 && $order['integral'] > 0)
         * {
         * $change_desc =
         * sprintf($GLOBALS['_LANG']['return_integral_on_cancel'],
         * $order['order_sn']);
         * log_account_change($order['user_id'], 0, 0, 0, $order['integral'],
         * $change_desc);
         * }
         * if ($order['user_id'] > 0 && $order['bonus_id'] > 0)
         * {
         * change_user_bonus($order['bonus_id'], $order['order_id'], false);
         * }
         */
        
        // 如果使用库存,且下订单时减库存,则增加库存
        if($GLOBALS['_CFG']['use_storage'] == '1' && $GLOBALS['_CFG']['stock_dec_time'] == SDT_PLACE)
        {
            change_order_goods_storage($order['order_id'], false, 1);
        }
        
        /**
         * // 修改订单
         * $arr = array(
         * 'bonus_id' => 0,
         * 'bonus' => 0,
         * 'integral' => 0,
         * 'integral_money' => 0,
         * 'surplus' => 0
         * );
         * update_order($order['order_id'], $arr);
         */
        
        return true;
    }
    else
    {
        die($GLOBALS['db']->errorMsg());
    }
}
 
/* ------------------------------------------------------ */
// -- PRIVATE FUNCTION
/* ------------------------------------------------------ */
 
/**
 * 获得指定商品的关联商品
 *
 * @access public
 * @param integer $goods_id            
 * @return array
 */
function get_linked_goods ($goods_id)
{
    $sql = 'SELECT g.goods_id, g.goods_name, g.goods_thumb, g.goods_img, g.shop_price AS org_price, ' . "IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, " . 'g.market_price, g.promote_price, g.promote_start_date, g.promote_end_date ' . 'FROM ' . $GLOBALS['ecs']->table('link_goods') . ' lg ' . 'LEFT JOIN ' . $GLOBALS['ecs']->table('goods') . ' AS g ON g.goods_id = lg.link_goods_id ' . "LEFT JOIN " . $GLOBALS['ecs']->table('member_price') . " AS mp " . "ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' " . "WHERE lg.goods_id = '$goods_id' AND g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 " . "LIMIT " . $GLOBALS['_CFG']['related_goods_number'];
    $res = $GLOBALS['db']->query($sql);
    
    $arr = array();
    while($row = $GLOBALS['db']->fetchRow($res))
    {
        $arr[$row['goods_id']]['goods_id'] = $row['goods_id'];
        $arr[$row['goods_id']]['goods_name'] = $row['goods_name'];
        $arr[$row['goods_id']]['short_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $row['goods_name'];
        $arr[$row['goods_id']]['goods_thumb'] = get_image_path($row['goods_id'], $row['goods_thumb'], true);
        $arr[$row['goods_id']]['goods_img'] = get_image_path($row['goods_id'], $row['goods_img']);
        $arr[$row['goods_id']]['market_price'] = price_format($row['market_price']);
        $arr[$row['goods_id']]['shop_price'] = price_format($row['shop_price']);
        $arr[$row['goods_id']]['url'] = build_uri('goods', array(
            'gid' => $row['goods_id']
        ), $row['goods_name']);
        
        if($row['promote_price'] > 0)
        {
            $arr[$row['goods_id']]['promote_price'] = bargain_price($row['promote_price'], $row['promote_start_date'], $row['promote_end_date']);
            $arr[$row['goods_id']]['formated_promote_price'] = price_format($arr[$row['goods_id']]['promote_price']);
        }
        else
        {
            $arr[$row['goods_id']]['promote_price'] = 0;
        }
    }
    
    return $arr;
}
 
/**
 * 获得指定商品的关联文章
 *
 * @access public
 * @param integer $goods_id            
 * @return void
 */
function get_linked_articles ($goods_id)
{
    $sql = 'SELECT a.article_id, a.title, a.file_url, a.open_type, a.add_time ' . 'FROM ' . $GLOBALS['ecs']->table('goods_article') . ' AS g, ' . $GLOBALS['ecs']->table('article') . ' AS a ' . "WHERE g.article_id = a.article_id AND g.goods_id = '$goods_id' AND a.is_open = 1 " . 'ORDER BY a.add_time DESC';
    $res = $GLOBALS['db']->query($sql);
    
    $arr = array();
    while($row = $GLOBALS['db']->fetchRow($res))
    {
        $row['url'] = $row['open_type'] != 1 ? build_uri('article', array(
            'aid' => $row['article_id']
        ), $row['title']) : trim($row['file_url']);
        $row['add_time'] = local_date($GLOBALS['_CFG']['date_format'], $row['add_time']);
        $row['short_title'] = $GLOBALS['_CFG']['article_title_length'] > 0 ? sub_str($row['title'], $GLOBALS['_CFG']['article_title_length']) : $row['title'];
        
        $arr[] = $row;
    }
    
    return $arr;
}
 
/**
 * 获得指定商品的各会员等级对应的价格
 *
 * @access public
 * @param integer $goods_id            
 * @return array
 */
function get_user_rank_prices ($goods_id, $shop_price)
{
    $sql = "SELECT rank_id, IFNULL(mp.user_price, r.discount * $shop_price / 100) AS price, r.rank_name, r.discount " . 'FROM ' . $GLOBALS['ecs']->table('user_rank') . ' AS r ' . 'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . " AS mp " . "ON mp.goods_id = '$goods_id' AND mp.user_rank = r.rank_id " . "WHERE r.show_price = 1 OR r.rank_id = '$_SESSION[user_rank]'";
    $res = $GLOBALS['db']->query($sql);
    
    $arr = array();
    while($row = $GLOBALS['db']->fetchRow($res))
    {
        
        $arr[$row['rank_id']] = array(
            'rank_name' => htmlspecialchars($row['rank_name']), 'price' => price_format($row['price'])
        );
    }
    
    return $arr;
}
 
/**
 * 获得购买过该商品的人还买过的商品
 *
 * @access public
 * @param integer $goods_id            
 * @return array
 */
function get_also_bought ($goods_id)
{
    $sql = 'SELECT COUNT(b.goods_id ) AS num, g.goods_id, g.goods_name, g.goods_thumb, g.goods_img, g.shop_price, g.promote_price, g.promote_start_date, g.promote_end_date ' . 'FROM ' . $GLOBALS['ecs']->table('order_goods') . ' AS a ' . 'LEFT JOIN ' . $GLOBALS['ecs']->table('order_goods') . ' AS b ON b.order_id = a.order_id ' . 'LEFT JOIN ' . $GLOBALS['ecs']->table('goods') . ' AS g ON g.goods_id = b.goods_id ' . "WHERE a.goods_id = '$goods_id' AND b.goods_id <> '$goods_id' AND g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 " . 'GROUP BY b.goods_id ' . 'ORDER BY num DESC ' . 'LIMIT ' . $GLOBALS['_CFG']['bought_goods'];
    $res = $GLOBALS['db']->query($sql);
    
    $key = 0;
    $arr = array();
    while($row = $GLOBALS['db']->fetchRow($res))
    {
        $arr[$key]['goods_id'] = $row['goods_id'];
        $arr[$key]['goods_name'] = $row['goods_name'];
        $arr[$key]['short_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $row['goods_name'];
        $arr[$key]['goods_thumb'] = get_image_path($row['goods_id'], $row['goods_thumb'], true);
        $arr[$key]['goods_img'] = get_image_path($row['goods_id'], $row['goods_img']);
        $arr[$key]['shop_price'] = price_format($row['shop_price']);
        $arr[$key]['url'] = build_uri('goods', array(
            'gid' => $row['goods_id']
        ), $row['goods_name']);
        
        if($row['promote_price'] > 0)
        {
            $arr[$key]['promote_price'] = bargain_price($row['promote_price'], $row['promote_start_date'], $row['promote_end_date']);
            $arr[$key]['formated_promote_price'] = price_format($arr[$key]['promote_price']);
        }
        else
        {
            $arr[$key]['promote_price'] = 0;
        }
        
        $key ++;
    }
    
    return $arr;
}
 
/**
 * 获得指定商品的销售排名
 *
 * @access public
 * @param integer $goods_id            
 * @return integer
 */
function get_goods_rank ($goods_id)
{
    /* 统计时间段 */
    $period = intval($GLOBALS['_CFG']['top10_time']);
    if($period == 1) // 一年
    {
        $ext = " AND o.add_time > '" . local_strtotime('-1 years') . "'";
    }
    elseif($period == 2) // 半年
    {
        $ext = " AND o.add_time > '" . local_strtotime('-6 months') . "'";
    }
    elseif($period == 3) // 三个月
    {
        $ext = " AND o.add_time > '" . local_strtotime('-3 months') . "'";
    }
    elseif($period == 4) // 一个月
    {
        $ext = " AND o.add_time > '" . local_strtotime('-1 months') . "'";
    }
    else
    {
        $ext = '';
    }
    
    /* 查询该商品销量 */
    $sql = 'SELECT IFNULL(SUM(g.goods_number), 0) ' . 'FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o, ' . $GLOBALS['ecs']->table('order_goods') . ' AS g ' . "WHERE o.order_id = g.order_id " . "AND o.order_status = '" . OS_CONFIRMED . "' " . "AND o.shipping_status " . db_create_in(array(
        SS_SHIPPED, SS_RECEIVED
    )) . " AND o.pay_status " . db_create_in(array(
        PS_PAYED, PS_PAYING
    )) . " AND g.goods_id = '$goods_id'" . $ext;
    $sales_count = $GLOBALS['db']->getOne($sql);
    
    if($sales_count > 0)
    {
        /* 只有在商品销售量大于0时才去计算该商品的排行 */
        $sql = 'SELECT DISTINCT SUM(goods_number) AS num ' . 'FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o, ' . $GLOBALS['ecs']->table('order_goods') . ' AS g ' . "WHERE o.order_id = g.order_id " . "AND o.order_status = '" . OS_CONFIRMED . "' " . "AND o.shipping_status " . db_create_in(array(
            SS_SHIPPED, SS_RECEIVED
        )) . " AND o.pay_status " . db_create_in(array(
            PS_PAYED, PS_PAYING
        )) . $ext . " GROUP BY g.goods_id HAVING num > $sales_count";
        $res = $GLOBALS['db']->query($sql);
        
        $rank = $GLOBALS['db']->num_rows($res) + 1;
        
        if($rank > 10)
        {
            $rank = 0;
        }
    }
    else
    {
        $rank = 0;
    }
    
    return $rank;
}
 
/**
 * 获得商品选定的属性的附加总价格
 *
 * @param integer $goods_id            
 * @param array $attr            
 *
 * @return void
 */
function get_attr_amount ($goods_id, $attr)
{
    $sql = "SELECT SUM(attr_price) FROM " . $GLOBALS['ecs']->table('goods_attr') . " WHERE goods_id='$goods_id' AND " . db_create_in($attr, 'goods_attr_id');
    
    return $GLOBALS['db']->getOne($sql);
}
 
/**
 * 取得跟商品关联的礼包列表
 *
 * @param string $goods_id
 *            商品编号
 *            
 * @return 礼包列表
 */
function get_package_goods_list ($goods_id)
{
    $now = gmtime();
    $sql = "SELECT pg.goods_id, ga.act_id, ga.act_name, ga.act_desc, ga.goods_name, ga.start_time,
                   ga.end_time, ga.is_finished, ga.ext_info
            FROM " . $GLOBALS['ecs']->table('goods_activity') . " AS ga, " . $GLOBALS['ecs']->table('package_goods') . " AS pg
            WHERE pg.package_id = ga.act_id
            AND ga.start_time <= '" . $now . "'
            AND ga.end_time >= '" . $now . "'
            AND pg.goods_id = " . $goods_id . "
            GROUP BY ga.act_id
            ORDER BY ga.act_id ";
    $res = $GLOBALS['db']->getAll($sql);
    
    foreach($res as $tempkey => $value)
    {
        $subtotal = 0;
        $row = unserialize($value['ext_info']);
        unset($value['ext_info']);
        if($row)
        {
            foreach($row as $key => $val)
            {
                $res[$tempkey][$key] = $val;
            }
        }
        
        $sql = "SELECT pg.package_id, pg.goods_id, pg.goods_number, pg.admin_id, p.goods_attr, g.goods_sn, g.goods_name, g.market_price, g.goods_thumb, IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS rank_price
        FROM " . $GLOBALS['ecs']->table('package_goods') . " AS pg
                    LEFT JOIN " . $GLOBALS['ecs']->table('goods') . " AS g
                        ON g.goods_id = pg.goods_id
                    LEFT JOIN " . $GLOBALS['ecs']->table('products') . " AS p
                        ON p.product_id = pg.product_id
                    LEFT JOIN " . $GLOBALS['ecs']->table('member_price') . " AS mp
                    ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]'
                    WHERE pg.package_id = " . $value['act_id'] . "
                ORDER BY pg.package_id, pg.goods_id";
        
        $goods_res = $GLOBALS['db']->getAll($sql);
        
        foreach($goods_res as $key => $val)
        {
            $goods_id_array[] = $val['goods_id'];
            $goods_res[$key]['goods_thumb'] = get_image_path($val['goods_id'], $val['goods_thumb'], true);
            $goods_res[$key]['market_price'] = price_format($val['market_price']);
            $goods_res[$key]['rank_price'] = price_format($val['rank_price']);
            $subtotal += $val['rank_price'] * $val['goods_number'];
        }
        
        /* 取商品属性 */
        $sql = "SELECT ga.goods_attr_id, ga.attr_value
                FROM " . $GLOBALS['ecs']->table('goods_attr') . " AS ga, " . $GLOBALS['ecs']->table('attribute') . " AS a
                WHERE a.attr_id = ga.attr_id
                AND a.attr_type = 1
                AND " . db_create_in($goods_id_array, 'goods_id');
        $result_goods_attr = $GLOBALS['db']->getAll($sql);
        
        $_goods_attr = array();
        foreach($result_goods_attr as $value)
        {
            $_goods_attr[$value['goods_attr_id']] = $value['attr_value'];
        }
        
        /* 处理货品 */
        $format = '[%s]';
        foreach($goods_res as $key => $val)
        {
            if($val['goods_attr'] != '')
            {
                $goods_attr_array = explode('|', $val['goods_attr']);
                
                $goods_attr = array();
                foreach($goods_attr_array as $_attr)
                {
                    $goods_attr[] = $_goods_attr[$_attr];
                }
                
                $goods_res[$key]['goods_attr_str'] = sprintf($format, implode(',', $goods_attr));
            }
        }
        
        $res[$tempkey]['goods_list'] = $goods_res;
        $res[$tempkey]['subtotal'] = price_format($subtotal);
        $res[$tempkey]['saving'] = price_format(($subtotal - $res[$tempkey]['package_price']));
        $res[$tempkey]['package_price'] = price_format($res[$tempkey]['package_price']);
    }
    
    return $res;
}
 
function get_package_goods_list_1 ($goods_id)
{
    $now = gmtime();
    $sql = "SELECT ga.act_id,ga.ext_info
            FROM " . $GLOBALS['ecs']->table('goods_activity') . " AS ga, " . $GLOBALS['ecs']->table('package_goods') . " AS pg
            WHERE pg.package_id = ga.act_id
            AND ga.start_time <= '" . $now . "'
            AND ga.end_time >= '" . $now . "'
            AND pg.goods_id = " . $goods_id . "
            GROUP BY pg.package_id
            ORDER BY ga.act_id";
    
    $res = $GLOBALS['db']->getAll($sql);
    
    foreach($res as $tempkey => $value)
    {
        $subtotal = 0;
        $i = 1;
        
        // 获取礼包价
        $row = unserialize($value['ext_info']);
        unset($value['ext_info']);
        if($row)
        {
            foreach($row as $key => $val)
            {
                $res[$tempkey][$key] = $val;
            }
        }
        
        $sql = "SELECT pg.package_id, pg.goods_id, pg.product_id, pg.goods_number, pg.admin_id, p.goods_attr, g.goods_sn, g.goods_name, g.market_price, g.goods_thumb, IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS rank_price
        FROM " . $GLOBALS['ecs']->table('package_goods') . " AS pg
                    LEFT JOIN " . $GLOBALS['ecs']->table('goods') . " AS g
                        ON g.goods_id = pg.goods_id
                    LEFT JOIN " . $GLOBALS['ecs']->table('products') . " AS p
                        ON p.product_id = pg.product_id
                    LEFT JOIN " . $GLOBALS['ecs']->table('member_price') . " AS mp
                    ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]'
                    WHERE pg.package_id = " . $value['act_id'] . "
                ORDER BY pg.package_id, pg.goods_id";
        
        $goods_ress = $GLOBALS['db']->query($sql);
        $goods_res = array();
        while($row = $GLOBALS['db']->fetchRow($goods_ress))
        {
            if($row['goods_id'] == $goods_id)
            {
                $goods_res[0] = $row;
            }
            else
            {
                $goods_res[$i] = $row;
                $i ++;
            }
        }
        
        foreach($goods_res as $key => $val)
        {
            $goods_id_array[] = $val['goods_id'];
            $goods_res[$key]['goods_thumb'] = get_image_path($val['goods_id'], $val['goods_thumb'], true);
            $goods_res[$key]['market_price'] = price_format($val['market_price']);
            $goods_res[$key]['rank_price'] = $val['rank_price'];
            $subtotal += $val['rank_price'] * $val['goods_number'];
        }
        
        /* 取商品属性 */
        $sql = "SELECT ga.goods_attr_id, ga.attr_value
                FROM " . $GLOBALS['ecs']->table('goods_attr') . " AS ga, " . $GLOBALS['ecs']->table('attribute') . " AS a
                WHERE a.attr_id = ga.attr_id
                AND a.attr_type = 1
                AND " . db_create_in($goods_id_array, 'goods_id');
        $result_goods_attr = $GLOBALS['db']->getAll($sql);
        
        $_goods_attr = array();
        foreach($result_goods_attr as $value)
        {
            $_goods_attr[$value['goods_attr_id']] = $value['attr_value'];
        }
        
        /* 处理货品 */
        $format = '[%s]';
        foreach($goods_res as $key => $val)
        {
            if($val['goods_attr'] != '')
            {
                $goods_attr_array = explode('|', $val['goods_attr']);
                
                $goods_attr = array();
                foreach($goods_attr_array as $_attr)
                {
                    $goods_attr[] = $_goods_attr[$_attr];
                }
                
                $goods_res[$key]['goods_attr_str'] = sprintf($format, implode(',', $goods_attr));
            }
        }
        
        ksort($goods_res); // 重新排序数组
        
        /* 重新计算套餐内的商品折扣价 */
        $zhekou = round(($res[$tempkey]['package_price'] / $subtotal), 8);
        foreach($goods_res as $key => $val)
        {
            $goods_res[$key]['rank_price_zk'] = $val['rank_price'] * $zhekou;
            $goods_res[$key]['rank_price_zk_format'] = price_format($goods_res[$key]['rank_price_zk']);
        }
        
        $res[$tempkey]['goods_list'] = $goods_res;
        $res[$tempkey]['subtotal'] = price_format($subtotal);
        $res[$tempkey]['zhekou'] = $zhekou * 100;
        $res[$tempkey]['saving'] = price_format(($subtotal - $res[$tempkey]['package_price']));
        $res[$tempkey]['package_price'] = price_format($res[$tempkey]['package_price']);
    }
    
    return $res;
}
 
/**
 * 获得指定商品的相册
 *
 * @access public
 * @param integer $goods_id            
 * @return array
 */
function get_goods_gallery_attr_2 ($goods_id, $goods_attr_id)
{
    $sql = 'SELECT img_id, img_original, img_url, thumb_url, img_desc' . ' FROM ' . $GLOBALS['ecs']->table('goods_gallery') . " WHERE goods_id = '$goods_id' and goods_attr_id='$goods_attr_id' LIMIT " . $GLOBALS['_CFG']['goods_gallery_number'];
    $row = $GLOBALS['db']->getAll($sql);
    if(count($row) == 0)
    {
        $sql = 'SELECT img_id, img_original, img_url, thumb_url, img_desc' . ' FROM ' . $GLOBALS['ecs']->table('goods_gallery') . " WHERE goods_id = '$goods_id' and goods_attr_id='0' LIMIT " . $GLOBALS['_CFG']['goods_gallery_number'];
        $row = $GLOBALS['db']->getAll($sql);
    }
    /* 格式化相册图片路径 */
    foreach($row as $key => $gallery_img)
    {
        $row[$key]['img_url'] = get_image_path($goods_id, $gallery_img['img_url'], false, 'gallery');
        $row[$key]['thumb_url'] = get_image_path($goods_id, $gallery_img['thumb_url'], true, 'gallery');
        $row[$key]['img_original'] = get_image_path($goods_id, $gallery_img['img_original'], true, 'gallery');
    }
    return $row;
}
 
/*
 * 获取商品所对应店铺的店铺基本信息
 * @param int $suppid 店铺id
 * @param int $suppinfo 入驻商的信息
 */
function get_dianpu_baseinfo ($suppid = 0, $suppinfo)
{
    if(intval($suppid) <= 0)
    {
        return;
    }
    global $smarty;
    $sql = "SELECT * FROM " . $GLOBALS['ecs']->table('supplier_shop_config') . " WHERE supplier_id = " . $suppid;
    $shopinfo = $GLOBALS['db']->getAll($sql);
    
    $_goods_attr = array();
    foreach($shopinfo as $value)
    {
        $_goods_attr[$value['code']] = $value['value'];
    }
    // 代码增加
    $sql1 = "SELECT AVG(comment_rank) FROM " . $GLOBALS['ecs']->table('comment') . " c" . " LEFT JOIN " . $GLOBALS['ecs']->table('order_info') . " o" . " ON o.order_id = c.order_id" . " WHERE c.status > 0 AND  o.supplier_id = " . $suppid;
    $avg_comment = $GLOBALS['db']->getOne($sql1);
    $avg_comment = round($avg_comment, 1);
    
    $sql2 = "SELECT AVG(server), AVG(shipping) FROM " . $GLOBALS['ecs']->table('shop_grade') . " s" . " LEFT JOIN " . $GLOBALS['ecs']->table('order_info') . " o" . " ON o.order_id = s.order_id" . " WHERE s.is_comment > 0 AND  s.server >0 AND o.supplier_id = " . $suppid;
    $row = $GLOBALS['db']->getRow($sql2);
    
    $avg_server = round($row['AVG(server)'], 1);
    $avg_shipping = round($row['AVG(shipping)'], 1);
    $haoping = round((($avg_comment + $avg_server + $avg_shipping) / 3) / 5, 2) * 100;
    // 代码增加
    
    $smarty->assign('ghs_css_path', 'themes/' . $_goods_attr['template'] . '/images/ghs/css/ghs_style.css'); // 入驻商所选模板样式路径
    $shoplogo = empty($_goods_attr['shop_logo']) ? 'themes/' . $_goods_attr['template'] . '/images/dianpu.jpg' : $_goods_attr['shop_logo'];
    $smarty->assign('shoplogo', $shoplogo); // 商家logo
    $smarty->assign('shopname', htmlspecialchars($_goods_attr['shop_name'])); // 店铺名称
    $smarty->assign('suppid', $suppinfo['supplier_id']); // 商家名称
    $smarty->assign('suppliername', htmlspecialchars($suppinfo['supplier_name'])); // 商家名称
    $smarty->assign('userrank', htmlspecialchars($suppinfo['rank_name'])); // 商家等级
    $smarty->assign('region', get_province_city($_goods_attr['shop_province'], $_goods_attr['shop_city']));
    $smarty->assign('address', $_goods_attr['shop_address']);
    $smarty->assign('serviceqq', $_goods_attr['qq']);
    $smarty->assign('serviceww', $_goods_attr['ww']);
    $smarty->assign('serviceemail', $_goods_attr['service_email']);
    $smarty->assign('servicephone', $_goods_attr['service_phone']);
    $smarty->assign('createtime', gmdate('Y-m-d', $suppinfo['add_time'])); // 商家创建时间
                                                                           // 代码增加
    $smarty->assign('c_rank', $avg_comment);
    $smarty->assign('serv_rank', $avg_server);
    $smarty->assign('shipp_rank', $avg_shipping);
    $smarty->assign('haoping', $haoping);
    // 代码增加
    $suppid = (intval($suppid) > 0) ? intval($suppid) : intval($_GET['suppId']);
}
 
/**
 * 获得预售的状态
 *
 * @access  public
 * @param   array
 * @return  integer
 */
function pre_sale_status($pre_sale)
{
    $now = gmtime();
    if ($pre_sale['is_finished'] == 0)
    {
        /* 未处理 */
        if ($now < $pre_sale['start_time'])
        {
            $status = PSS_PRE_START;
        }
        elseif ($now > $pre_sale['end_time'])
        {
            $status = PSS_FINISHED;
        }
        else
        {
            if ($pre_sale['restrict_amount'] == 0 || $pre_sale['valid_goods'] < $pre_sale['restrict_amount'])
            {
                $status = PSS_UNDER_WAY;
            }
            else
            {
                $status = PSS_FINISHED;
            }
        }
    }
    elseif ($pre_sale['is_finished'] == PSS_SUCCEED)
    {
        /* 已处理,团购成功 */
        $status = PSS_SUCCEED;
    }
    elseif ($pre_sale['is_finished'] == PSS_FAIL)
    {
        /* 已处理,团购失败 */
        $status = PSS_FAIL;
    }
 
    return $status;
}
 
/**
 * 取得某预售活动统计信息
 * @param   int     $pre_sale_id    预售活动id
 * @param   float   $deposit        保证金
 * @return  array   统计信息
 *                  total_order     总订单数</br>
 *                  total_goods     总商品数</br>
 *                  valid_order     有效订单数</br>
 *                  valid_goods     有效商品数</br>
 */
function pre_sale_stat($pre_sale_id, $deposit)
{
    $pre_sale_id = intval($pre_sale_id);
 
    /* 取得预售活动商品ID */
    $sql = "SELECT goods_id " .
            "FROM " . $GLOBALS['ecs']->table('goods_activity') .
            "WHERE act_id = '$pre_sale_id' " .
            "AND act_type = '" . GAT_PRE_SALE . "'";
    $pre_sale_goods_id = $GLOBALS['db']->getOne($sql);
 
    /* 取得总订单数和总商品数 */
    $sql = "SELECT COUNT(*) AS total_order, SUM(g.goods_number) AS total_goods " .
            "FROM " . $GLOBALS['ecs']->table('order_info') . " AS o, " .
            $GLOBALS['ecs']->table('order_goods') . " AS g " .
            " WHERE o.order_id = g.order_id " .
            "AND o.extension_code = '" . pre_sale . "' " .
            "AND o.extension_id = '$pre_sale_id' " .
            "AND g.goods_id = '$pre_sale_goods_id' " .
            "AND (order_status = '" . OS_CONFIRMED . "' OR order_status = '" . OS_UNCONFIRMED . "')";
    $stat = $GLOBALS['db']->getRow($sql);
    if ($stat['total_order'] == 0)
    {
        $stat['total_goods'] = 0;
    }
 
    /* 取得有效订单数和有效商品数 */
    $deposit = floatval($deposit);
    if ($deposit > 0 && $stat['total_order'] > 0)
    {
        $sql .= " AND (o.money_paid + o.surplus) >= '$deposit'";
        $row = $GLOBALS['db']->getRow($sql);
        $stat['valid_order'] = $row['total_order'];
        if ($stat['valid_order'] == 0)
        {
            $stat['valid_goods'] = 0;
        }
        else
        {
            $stat['valid_goods'] = $row['total_goods'];
        }
    }
    else
    {
        $stat['valid_order'] = $stat['total_order'];
        $stat['valid_goods'] = $stat['total_goods'];
    }
 
    return $stat;
}
 
/**
 * 根据预售活动编号取得预售活动信息
 * @param   int     $pre_sale_id    预售活动id
 * @param   int     $current_num    本次购买数量(计算当前价时要加上的数量)
 * @return  array
 *                  status    状态:</br>
 *                  formated_start_date    格式化预售开始时间</br>
 *                  formated_end_date    格式化预售结束时间</br>
 *                  formated_retainage_start    尾款支付开始时间</br>
 *                  formated_retainage_end    尾款支付结束时间</br>
 *                  formated_deposit    格式化后的保证金</br>
 *                  formated_sale_price    格式化后的预售价格</br>
 *                  price_ladder    阶梯价格[amount: 数量, price: 价格, formated_price: 格式化后的价格]</br>
 *                  total_order    总订单数</br>
 *                  total_goods    总商品数</br>
 *                  valid_order    有效订单数</br>
 *                  valid_goods    有效商品数</br>
 *                  cur_price    当前阶梯价格</br>
 *                  formated_cur_price    格式化后的当前阶梯价格</br>
 *                  cur_amount    当前阶梯数量</br>
 *                  gift_integral    赠送积分</br>
 *                  status    预售活动状态</br>
 */
function pre_sale_info($pre_sale_id, $current_num = 0)
{
    /* 取得团购活动信息 */
    $pre_sale_id = intval($pre_sale_id);
    $sql = "SELECT b.*,g.*, b.act_id AS pre_sale_id, b.act_desc AS pre_sale_desc, b.start_time, b.end_time " .
            "FROM " . $GLOBALS['ecs']->table('goods_activity') . " AS b " .
            "LEFT JOIN " . $GLOBALS['ecs']->table('goods') . " AS g ON b.goods_id = g.goods_id " .
            "WHERE act_id = '$pre_sale_id' " .
            "AND act_type = '" . GAT_PRE_SALE . "'";
    $pre_sale = $GLOBALS['db']->getRow($sql);
 
    /* 如果为空,返回空数组 */
    if (empty($pre_sale))
    {
        return array();
    }
 
    $ext_info = unserialize($pre_sale['ext_info']);
    $pre_sale = array_merge($pre_sale, $ext_info);
 
    /* 格式化时间 */
    $pre_sale['formated_start_date'] = local_date('Y-m-d H:i', $pre_sale['start_time']);
    $pre_sale['formated_end_date'] = local_date('Y-m-d H:i', $pre_sale['end_time']);
 
    // 尾款支付的开始和结束时间
    $pre_sale['formated_retainage_start'] = local_date('Y-m-d H:i', $pre_sale['retainage_start']);
    $pre_sale['formated_retainage_end'] = local_date('Y-m-d H:i', $pre_sale['retainage_end']);
 
    /* 格式化预售价格和保证金 */
    $pre_sale['formated_sale_price'] = price_format($pre_sale['sale_price'], false);
    $pre_sale['formated_deposit'] = price_format($pre_sale['deposit'], false);
 
    // 本地时间,用于倒计时显示,符合JS格式
    $pre_sale['local_end_date'] = local_date('Y, m-1, d, H, i, s', $pre_sale['end_time']);
 
    /* 处理价格阶梯 */
    $price_ladder = $pre_sale['price_ladder'];
 
    /* 价格阶梯必须为有效,而且一定会有价格阶梯 */
    if (!is_array($price_ladder) || empty($price_ladder))
    {
        // 如果阶梯价格设置为空则设置默认值
        // 这种情况应该不允许出现
        $price_ladder = array(array('amount' => 0, 'price' => 0));
    }
    else
    {
        // 遍历阶梯价格
        foreach ($price_ladder as $key => $amount_price)
        {
            // 格式化每一个阶梯价格
            $price_ladder[$key]['formated_price'] = price_format($amount_price['price'], false);
        }
    }
    $pre_sale['price_ladder'] = $price_ladder;
    $pre_sale['price_ladder_count'] = count($price_ladder);
 
    /* 统计信息 */
    $stat = pre_sale_stat($pre_sale_id, $pre_sale['deposit']);
    // 合并统计信息
    $pre_sale = array_merge($pre_sale, $stat);
 
    /* 计算当前价 */
    $cur_price  = $price_ladder[0]['price']; // 初始化
    $cur_amount = $stat['valid_goods'] + $current_num; // 当前数量
    // 计算最低价格
    foreach ($price_ladder as $amount_price)
    {
        if ($cur_amount >= $amount_price['amount'])
        {
            $cur_price = $amount_price['price'];
        }
        else
        {
            break;
        }
    }
 
    // 获取商品描述
    $pre_sale['goods_desc'] = $GLOBALS['db']->getOne("select goods_desc from ".$GLOBALS['ecs']->table('goods')." where goods_id=".$pre_sale['goods_id']);
    $pre_sale['cur_price'] = $cur_price;
    $pre_sale['$cur_amount'] = $cur_amount;
    $pre_sale['formated_cur_price'] = price_format($cur_price, false);
 
    // 计算折扣
    if ($pre_sale['shop_price'] == 0)
    {
        $pre_sale['zhekou'] = 0;
    }
    else
    {
        $pre_sale['zhekou'] = number_format(intval($pre_sale['cur_price'])/intval($pre_sale['shop_price']),2) * 100;
    }
 
    // 计算节省金额
    $pre_sale['jiesheng'] = $pre_sale['shop_price'] - $pre_sale['cur_price'];
 
    /* 最终价 */
    $pre_sale['trans_price'] = $pre_sale['cur_price'];
    $pre_sale['formated_trans_price'] = $pre_sale['formated_cur_price'];
    $pre_sale['trans_amount'] = $pre_sale['valid_goods'];
 
    /* 状态 */
    $pre_sale['status'] = pre_sale_status($pre_sale);
    if (isset($GLOBALS['_LANG']['gbs'][$pre_sale['status']]))
    {
        $pre_sale['status_desc'] = $GLOBALS['_LANG']['gbs'][$group_buy['status']];
    }
 
    $pre_sale['start_time'] = $pre_sale['formated_start_date'];
    $pre_sale['end_time'] = $pre_sale['formated_end_date'];
 
    $pre_sale['retainage_start'] = $pre_sale['formated_retainage_start'];
    $pre_sale['retainage_end'] = $pre_sale['formated_retainage_end'];
 
    return $pre_sale;
}
 
/**
 * 获取指定商品的评论数量
 *
 * @param int $goods_id
 *            商品编号
 * @return number
 */
function goods_comment_count ($goods_id)
{
    $sql = "select count(*) from " . $GLOBALS['ecs']->table('comment') . " where id_value = '$goods_id' and status = 0 and parent_id = 0";
    $count = $GLOBALS['db']->getOne($sql);
    return intval($count);
}
 
/**
 * 获取指定商品的的累计销量
 *
 * @param int $goods_id
 *            商品编号
 * @return number
 */
function goods_sale_count($goods_id)
{
    /* 查询该商品销量 */
    $sql = 'SELECT IFNULL(SUM(g.goods_number), 0) ' .
            'FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o, ' .
            $GLOBALS['ecs']->table('order_goods') . ' AS g ' .
            "WHERE o.order_id = g.order_id " .
            "AND o.order_status = " . OS_CONFIRMED .
            " AND o.pay_status = " . PS_PAYED .
            " AND g.goods_id = '$goods_id'";
    $sales_count = $GLOBALS['db']->getOne($sql);
 
    return $sales_count;
 
}