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
<?php
/**
  商家入驻
 * ============================================================================
 
 * ----------------------------------------------------------------------------
 
 * ============================================================================
 * $Author: zhangyh $
 * $Id: flow.php 17218 2011-01-24 04:10:41Z $
 */
 
define('IN_ECS', true);
 
require(dirname(__FILE__) . '/includes/init.php');
 
 assign_template();
 
$action  = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : 'default';
$smarty->assign('action',     $action);
 
if ($action == 'default')
{
    $smarty->display('supplier_reg.dwt');
}
 
if ($action == 'reg')
{
    /* 检查用户是否已经登录 */
    if ( $_SESSION['user_id'] == 0)
    {
         ecs_header("Location: user.php?back_act=supplier_reg.php?act=reg\n");
         exit;
    }
    
    $sql = "select supplier_id, status from ". $ecs->table('supplier') ." where user_id='". $_SESSION['user_id'] ."' ";
    
    $supplier_row = $db->getRow($sql);
    if ($supplier_row['supplier_id'])
    {
        if ($supplier_row['status'] =='0')
        {
            $status = "审核中";
        }
        elseif ($supplier_row['status'] =='-1')
        {
            $status = "审核未通过";
        }
        elseif ($supplier_row['status'] =='1')
        {
            $status = '审核已通过!';
        }
 
        $smarty->assign('supplier', $supplier_row);
        $smarty->assign('status', $status);
    }
    else
    {
        ecs_header("Location: user.php?act=supplier_reg\n");
        exit;
    }
 
    $smarty->display('supplier_reg.dwt');
}
 
 
?>