示例#1
0
        private void loadData()
        {
            string strWhere = " where t1.enabled=1 and t2.enabled=1 ";

            if (!string.IsNullOrEmpty(Request["CODE_HS"]))
            {
                strWhere = strWhere + " and t1.hscode like '%" + Request["CODE_HS"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["NAME_HS"]))
            {
                strWhere = strWhere + " and t2.hsname like '%" + Request["NAME_HS"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["CODE_CIQ"]))
            {
                strWhere = strWhere + " and t1.ciqcode like '%" + Request["CODE_CIQ"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["NAME_CIQ"]))
            {
                strWhere = strWhere + " and t3.ciqname like '%" + Request["NAME_CIQ"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["ENABLED_S"]))
            {
                strWhere = strWhere + " and t1.enabled='" + Request["ENABLED_S"] + "'";
            }
            Sql.RelaHSCCIQ bc = new Sql.RelaHSCCIQ();
            DataTable      dt = bc.LoaData(strWhere, "", "", ref totalProperty, Convert.ToInt32(Request["start"]),
                                           Convert.ToInt32(Request["limit"]));
            string json = JsonConvert.SerializeObject(dt, iso);

            Response.Write("{rows:" + json + ",total:" + totalProperty + "}");
            Response.End();
        }
示例#2
0
        public void save(string formdata)
        {
            JObject json = (JObject)JsonConvert.DeserializeObject(formdata);

            Sql.RelaHSCCIQ bcsql = new Sql.RelaHSCCIQ();
            //禁用人
            string stopman = "";
            //返回重复结果
            string repeat = "";
            //返回前端的值
            string response = "";

            if (json.Value <string>("ENABLED") == "1")
            {
                stopman = "";
            }
            else
            {
                FormsIdentity identity  = HttpContext.Current.User.Identity as FormsIdentity;
                string        userName  = identity.Name;
                JObject       json_user = Extension.Get_UserInfo(userName);
                stopman = (string)json_user.GetValue("ID");
            }

            //插入
            if (String.IsNullOrEmpty(json.Value <string>("ID")))
            {
                List <int> retunRepeat = bcsql.CheckRepeat(json.Value <string>("ID"), json.Value <string>("HSCODE"), json.Value <string>("CIQCODE"));
                repeat = bcsql.Check_Repeat(retunRepeat);
                if (repeat == "")
                {
                    //insert数据向表base_company当是5时插入成功
                    bcsql.insert_rela_hs_ciq(json, stopman);
                    repeat = "5";
                }
            }
            else
            {
                //更新
                List <int> retunRepeat = bcsql.CheckRepeat(json.Value <string>("ID"), json.Value <string>("HSCODE"), json.Value <string>("CIQCODE"));
                repeat = bcsql.Check_Repeat(retunRepeat);
                if (repeat == "")
                {
                    //insert数据向表base_company当是5时插入成功
                    DataTable dt = bcsql.LoadDataById(json.Value <string>("ID"));
                    int       i  = bcsql.update_rela_hs_ciq(json, stopman);
                    if (i > 0)
                    {
                        bcsql.insert_base_alterrecord(json, dt);
                    }
                    repeat = "5";
                }
            }

            response = "{\"success\":\"" + repeat + "\"}";

            Response.Write(response);
            Response.End();
        }
示例#3
0
        public void export()
        {
            string strWhere         = " where t1.enabled=1 and t2.enabled=1 ";
            string combo_ENABLED_S2 = Request["combo_ENABLED_S"];

            if (combo_ENABLED_S2 == "null")
            {
                combo_ENABLED_S2 = String.Empty;
            }
            if (!string.IsNullOrEmpty(Request["HSCODE"]))
            {
                strWhere = strWhere + " and t1.hscode like '%" + Request["HSCODE"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["HSNAME"]))
            {
                strWhere = strWhere + " and t2.hsname like '%" + Request["HSNAME"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["CIQ_CODE"]))
            {
                strWhere = strWhere + " and t1.ciqcode like '%" + Request["CIQ_CODE"] + "%'";
            }
            if (!string.IsNullOrEmpty(Request["CIQ_NAME"]))
            {
                strWhere = strWhere + " and t3.ciqname like '%" + Request["CIQ_NAME"] + "%'";
            }

            if (!string.IsNullOrEmpty(combo_ENABLED_S2))
            {
                strWhere = strWhere + " and t1.enabled='" + combo_ENABLED_S2 + "'";
            }
            Sql.RelaHSCCIQ bc = new Sql.RelaHSCCIQ();

            DataTable dt = bc.export_rela_hs_ciq(strWhere);

            //创建Excel文件的对象
            NPOI.HSSF.UserModel.HSSFWorkbook book = new NPOI.HSSF.UserModel.HSSFWorkbook();
            //添加一个导出成功sheet
            NPOI.SS.UserModel.ISheet sheet_S = book.CreateSheet("HS与CIQ对应关系");
            NPOI.SS.UserModel.IRow   row1    = sheet_S.CreateRow(0);
            row1.CreateCell(0).SetCellValue("HS代码");
            row1.CreateCell(1).SetCellValue("HS名称");
            row1.CreateCell(2).SetCellValue("CIQ代码");
            row1.CreateCell(3).SetCellValue("CIQ名称");
            row1.CreateCell(4).SetCellValue("启用情况");
            row1.CreateCell(5).SetCellValue("启用时间");
            row1.CreateCell(6).SetCellValue("维护人");
            row1.CreateCell(7).SetCellValue("维护时间");
            row1.CreateCell(8).SetCellValue("停用人");
            row1.CreateCell(9).SetCellValue("停用时间");
            row1.CreateCell(10).SetCellValue("备注");

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                NPOI.SS.UserModel.IRow rowtemp = sheet_S.CreateRow(i + 1);
                rowtemp.CreateCell(0).SetCellValue(dt.Rows[i]["HSCODE"].ToString());
                rowtemp.CreateCell(1).SetCellValue(dt.Rows[i]["HSNAME"].ToString());
                rowtemp.CreateCell(2).SetCellValue(dt.Rows[i]["CIQCODE"].ToString());
                rowtemp.CreateCell(3).SetCellValue(dt.Rows[i]["CIQNAME"].ToString());
                rowtemp.CreateCell(4).SetCellValue(dt.Rows[i]["ENABLED"].ToString() == "1" ? "是" : "否");
                rowtemp.CreateCell(5).SetCellValue(dt.Rows[i]["STARTDATE"].ToString());
                rowtemp.CreateCell(6).SetCellValue(dt.Rows[i]["CREATEMANNAME"].ToString());
                rowtemp.CreateCell(7).SetCellValue(dt.Rows[i]["CREATEDATE"].ToString());
                rowtemp.CreateCell(8).SetCellValue(dt.Rows[i]["STOPMANNAME"].ToString());
                rowtemp.CreateCell(9).SetCellValue(dt.Rows[i]["ENDDATE"].ToString());
                rowtemp.CreateCell(10).SetCellValue(dt.Rows[i]["REMARK"].ToString());
            }
            try
            {
                // 输出Excel
                string filename = "HS与CIQ对应关系.xls";
                Response.ContentType = "application/vnd.ms-excel";
                Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", Server.UrlEncode(filename)));
                Response.Clear();

                MemoryStream ms = new MemoryStream();
                book.Write(ms);
                Response.BinaryWrite(ms.GetBuffer());
                Response.End();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }
示例#4
0
        public Dictionary <int, List <int> > upload_RelaHSCIQ(string newfile, string fileName, string action, JObject json_formdata)
        {
            Sql.RelaHSCCIQ bc      = new Sql.RelaHSCCIQ();
            DataTable      dtExcel = GetExcelData_Table(Server.MapPath(newfile), 0);
            //DataTable dtExcel = GetExcelData_Table(newfile, 0);
            List <string> stringList = new List <string>();
            //停用人
            string stopman = "";

            //存放成功信息
            List <int> repeatListsuccess = new List <int>();
            //存放失败条数
            List <int> repeatListerror = new List <int>();
            //记住insert成功的条数
            int count = 0;
            //返回信息
            Dictionary <int, List <int> > dcInts = new Dictionary <int, List <int> >();

            for (int i = 0; i < dtExcel.Rows.Count; i++)
            {
                for (int j = 0; j < dtExcel.Columns.Count; j++)
                {
                    stringList.Add(dtExcel.Rows[i][j].ToString());
                }
                //HS
                string HSCODE = stringList[0];
                //CIQ
                string CIQCODE = stringList[1];

                string REMARK = stringList[2];
                //string ENABLED = stringList[4] == "是" ? "1" : "0";
                string ENABLED = "1";
                //维护人
                string CREATEMANNAME = json_formdata.Value <string>("CREATEMANNAME");
                //启用时间
                string STARTDATE = json_formdata.Value <string>("STARTDATE") == "" ? DateTime.MinValue.ToShortDateString() : json_formdata.Value <string>("STARTDATE");

                //停用日期
                string ENDDATE = json_formdata.Value <string>("ENDDATE") == ""
                    ? DateTime.MaxValue.ToShortDateString()
                    : json_formdata.Value <string>("ENDDATE");

                if (ENABLED == "1")
                {
                    stopman = "";
                }
                else
                {
                    FormsIdentity identity  = HttpContext.Current.User.Identity as FormsIdentity;
                    string        userName  = identity.Name;
                    JObject       json_user = Extension.Get_UserInfo(userName);
                    stopman = (string)json_user.GetValue("ID");
                }
                //导入判断条件
                List <int> inlist       = bc.CheckRepeat("", HSCODE, CIQCODE);
                string     check_repeat = bc.Check_Repeat(inlist);

                if (check_repeat == "")
                {
                    bc.insert_rela_hs_ciq_excel(HSCODE, CIQCODE, ENABLED, REMARK, stopman, STARTDATE, ENDDATE);
                    count = count + 1;
                }
                else
                {
                    repeatListerror.Add(i + 2);
                }

                //清除
                stringList.Clear();
            }
            repeatListsuccess.Add(count);
            dcInts.Add(1, repeatListsuccess);
            dcInts.Add(2, repeatListerror);
            return(dcInts);
        }