| | |
| | | |
| | | public partial class _GwStatisRefund : PageBase<SysUser>, IRequiresSessionState |
| | | { |
| | | |
| | | |
| | | private int _userId = -1; |
| | | private string _userType = ""; |
| | | private string _account = ""; |
| | | string permissionsSQL = null; |
| | | |
| | | public string SelectedSpID { get; set; } |
| | | |
| | | public string StatisType { get; set; } |
| | |
| | | protected void Page_Load(object sender, EventArgs e) |
| | | { |
| | | this.CheckRight("502", FailedOperation.ErrorMsgOnly); |
| | | permissionsSQL = new GwClientDao().GetClientPermissions(_userId, _userType, null); |
| | | if (this.IsPostBack) |
| | | return; |
| | | this.SelectedOptions = StatisOption.None; |
| | |
| | | StringBuilder stringBuilder = new StringBuilder(); |
| | | using (GwSpDao gwSpDao = new GwSpDao()) |
| | | { |
| | | List<GwSp> list = gwSpDao.LoadInfoList("", "", ""); |
| | | List<GwSp> list = gwSpDao.LoadInfoList("", "", "", permissionsSQL); |
| | | if (list.Count == 0) |
| | | { |
| | | stringBuilder.Append("<option value=\"\">暂无客户信息</option>"); |