2024-05-18 15:28:29 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.UI;
|
|
|
|
|
using System.Web.UI.WebControls;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Data.SqlClient;
|
|
|
|
|
public partial class Customer_browse : CommonPage
|
|
|
|
|
{
|
|
|
|
|
//创建一个共用的客户bll
|
|
|
|
|
Maticsoft.BLL.nr_z_kehu kehubll = new Maticsoft.BLL.nr_z_kehu();
|
|
|
|
|
//创建一个客户联系人bll
|
|
|
|
|
Maticsoft.BLL.nr_z_lianxiren_kh khlxrbll = new Maticsoft.BLL.nr_z_lianxiren_kh();
|
|
|
|
|
//创建一个客户模板
|
|
|
|
|
Maticsoft.Model.nr_z_kehu kehumd = new Maticsoft.Model.nr_z_kehu();
|
|
|
|
|
//创建一个操作记录模板
|
|
|
|
|
Maticsoft.Model.nr_sys_rizhi rizhi = new Maticsoft.Model.nr_sys_rizhi();
|
|
|
|
|
//创建一个操作记录bll
|
|
|
|
|
Maticsoft.BLL.nr_sys_rizhi rizhibll = new Maticsoft.BLL.nr_sys_rizhi();
|
|
|
|
|
Maticsoft.BLL.nr_sys_bianma bianma = new Maticsoft.BLL.nr_sys_bianma();
|
|
|
|
|
Maticsoft.BLL.nr_z_yhzh yonghu = new Maticsoft.BLL.nr_z_yhzh();
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!IsPostBack)
|
|
|
|
|
{
|
|
|
|
|
if (Session["user"] == null)
|
|
|
|
|
{
|
|
|
|
|
Response.Redirect("../index.aspx");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Request.QueryString["uid"] != null && Request.QueryString["uid"] != "")
|
|
|
|
|
{
|
|
|
|
|
id.Value = Request.QueryString["uid"].ToString();
|
|
|
|
|
}
|
|
|
|
|
Maticsoft.Model.nr_z_yhzh user = (Maticsoft.Model.nr_z_yhzh)(Session["user"]);
|
|
|
|
|
initdata(id.Value);
|
|
|
|
|
pdquanxian(user.juese);
|
|
|
|
|
jialxr();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 获取真正数据值
|
|
|
|
|
private void initdata(string did)
|
|
|
|
|
{
|
|
|
|
|
int idz = Convert.ToInt32(did);
|
|
|
|
|
kehumd = kehubll.GetModel(idz);
|
|
|
|
|
if (kehumd != null)
|
|
|
|
|
{
|
|
|
|
|
bh.Text = kehumd.bianhao;
|
|
|
|
|
khjc.Text = kehumd.khjc;
|
|
|
|
|
mingcheng.Text = kehumd.mingcheng;
|
|
|
|
|
//mingchengyw.Text = kehumd.mingchengyw;
|
|
|
|
|
youbian.Text = kehumd.youbian;
|
|
|
|
|
wangzhi.InnerText = kehumd.wangzhi;
|
|
|
|
|
kaihuhang.Text = kehumd.kaihuhang;
|
|
|
|
|
zhanghao.Text = kehumd.zhanghao;
|
|
|
|
|
shuihao.Text = kehumd.shuihao;
|
|
|
|
|
dianhua.Text = kehumd.dianhua;
|
|
|
|
|
chuanzhen.Text = kehumd.chuanzhen;
|
|
|
|
|
youjian.Text = kehumd.youxiang;
|
|
|
|
|
xyed.Text = kehumd.shouxianedu.ToString();
|
|
|
|
|
riqi.Text =DateTime.Parse(kehumd.riqi.ToString()).ToString("yyyy-MM-dd");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//hangye.Text = bianma.GetModel(Convert.ToInt32(kehumd.hangye)).mingcheng;
|
|
|
|
|
//xingzhi.Text = bianma.GetModel(Convert.ToInt32(kehumd.xingzhi)).mingcheng;
|
|
|
|
|
//laiyuan.Text = bianma.GetModel(Convert.ToInt32(kehumd.laiyuan)).mingcheng;
|
|
|
|
|
//leixing.Text = bianma.GetModel(Convert.ToInt32(kehumd.leixing)).mingcheng;
|
|
|
|
|
//guimo.Text = bianma.GetModel(Convert.ToInt32(kehumd.guimo)).mingcheng;
|
|
|
|
|
diqu.Text = bianma.GetModel(Convert.ToInt32( kehumd.diqu)).mingcheng;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//zhaopian.Src = "../Client_Folder/" + kehumd.zhaopian+ "";
|
|
|
|
|
//mingpian.Src = "../Client_Folder/" + kehumd.mingpian + "";
|
|
|
|
|
ywy.Text = kehumd.yewuyuan;
|
|
|
|
|
dizhi.InnerText= kehumd.dizhi;
|
|
|
|
|
//dizhiyw.InnerText = kehumd.dizhiyw;
|
|
|
|
|
beizhu.Text = kehumd.beizhu;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 添加联系人
|
|
|
|
|
private void jialxr()
|
|
|
|
|
{
|
|
|
|
|
DataSet lxrs=khlxrbll.GetList("kh_bh='" + bh.Text + "'");
|
|
|
|
|
string pin = "<table class='bule'> <tr class='tdlietou'><td colspan='4'><h4>联系人信息</h4></td></tr></table><table class='bule'>"
|
|
|
|
|
+ "<tr class='tbtilt'><td><span>联系人</span></td><td><span>分支部门</span></td><td><span>联系方式</span></td><td><span>备注</span></td></tr>";
|
|
|
|
|
foreach(DataRow l in lxrs.Tables[0].Rows)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
pin += "<tr><td><span>" + l["lianxiren"].ToString() + "</span></td>"
|
|
|
|
|
+ "<td ><span >" + l["zhiwei"].ToString() + "</span></td>"
|
|
|
|
|
+ "<td><span >" + l["shouji"].ToString() + "</span></td>"
|
|
|
|
|
+ "<td ><span>" + l["beizhu"].ToString() + "</span></td></tr>";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
lianxiren.InnerHtml = pin + "</table>";
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
#region 敏感权限查看
|
|
|
|
|
void pdquanxian(int juese)
|
|
|
|
|
{
|
|
|
|
|
Maticsoft.Model.nr_z_yhzh user = (Maticsoft.Model.nr_z_yhzh)(Session["user"]);
|
|
|
|
|
if (DBHlper.getzt(user.id) != 1)
|
|
|
|
|
{
|
|
|
|
|
Response.Redirect("../index.aspx");
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "查看全部") == false && DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "查看个人") == false)
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
Response.Redirect("../Common/nopower.htm");
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "编辑个人") &&ywy.Text==user.zhanghao)
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
bt_tj.Visible = true;
|
|
|
|
|
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "编辑全部") )
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
bt_tj.Visible = true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "删除个人") && ywy.Text == user.zhanghao)
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
bt_shanchu.Visible = true;
|
|
|
|
|
shanchu.Visible = true;
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "删除全部") )
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
bt_shanchu.Visible = true;
|
|
|
|
|
shanchu.Visible = true;
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "添加"))
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
fuzhi.Visible = true;
|
|
|
|
|
bt_add.Visible = true;
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "客户档案", "nr_z_kehu", "转交"))
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
zhuanjiao.Visible = true;
|
|
|
|
|
}
|
2024-05-21 15:05:24 +08:00
|
|
|
|
if (DBHlper.GetPermission(juese, "订单管理", "nr_z_dd", "添加"))
|
2024-05-18 15:28:29 +08:00
|
|
|
|
{
|
|
|
|
|
add_dd.Visible = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
protected void Shanchu_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (DBHlper.ExecuteReid("select count(*) from nr_z_dd where kh_bh='" + bh.Text + "'") > 0)
|
|
|
|
|
{
|
|
|
|
|
z_error.Text = "该客户已有订单,不能删除!";
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (DBHlper.ExecuteReid("select count(*) from nr_z_wuliao where kh_bh='" + bh.Text + "'") > 0)
|
|
|
|
|
{
|
|
|
|
|
z_error.Text = "该客户已有客户纸库了,不能删除!";
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kehumd = kehubll.GetModel(Convert.ToInt32(id.Value));
|
|
|
|
|
kehumd.zt = 0;
|
|
|
|
|
bool ci = kehubll.Update(kehumd);
|
|
|
|
|
if (ci)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
//给日志模板赋值
|
|
|
|
|
rizhi.riqi = DateTime.Now;
|
|
|
|
|
rizhi.leixing = "客户档案";
|
|
|
|
|
//将session转换对象取值
|
|
|
|
|
Maticsoft.Model.nr_z_yhzh zh = (Maticsoft.Model.nr_z_yhzh)Session["user"];
|
|
|
|
|
//拼接字符串插入日志
|
|
|
|
|
rizhi.jilu = zh.zhanghao + "删除了客户档案,档案编号为:" + bh.Text.Trim();
|
|
|
|
|
rizhi.yonghuming = zh.zhanghao.ToString();
|
|
|
|
|
rizhibll.Add(rizhi);
|
|
|
|
|
Response.Redirect("Customer_list.aspx", false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Response.Write("<script>alert('删除失败')</script>");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|