Beispiel #1
0
 //查询
 protected void BtnSearch_Click(object sender, EventArgs e)
 {
     lbInfo.Text = "";
     try
     {
         IList<Y_StyleFoundation> style = WMSFactory.Y_StyleFoundation.FindByCondition(string.Format("(StyleId='{0}' OR OldStyleId='{0}') AND (ColorId='{1}' OR OldColorId='{1}')", TxtStyleId.Text.Trim(), TxtColorId.Text.Trim()));
         if (style.Count <= 0)
         {
             lbInfo.Text = "没有找到任何记录!";
             return;
         }
         Y_StyleFoundation sf = style[0];
         //赋值,获取基本信息
         lbBrand.Text = sf.BrName;
         lbdprice.Text = sf.J_Price.ToString();
         lbPinM.Text = sf.S_Name;
         lbCd.Text = sf.Production;
         lbcf.Text = sf.Fabric == null ? "" : sf.Fabric.Replace(";", "<br />").Replace(";", "<br />");
         //获取颜色
         DataTable dt = WMSFactory.Y_GBCode.Query("SELECT c_name FROM F22.dbo.j_color where colorid='" + sf.ColorId + "'");
         if (dt != null && dt.Rows.Count > 0)
             lbColor.Text = dt.Rows[0][0].ToString();
         //获取国标码信息
         IList<Y_StylePrint> printlist = WMSFactory.Y_StylePrint.FindByCondition("StyleId='" + sf.StyleId + "'");
         if (printlist.Count > 0)
         {
             TxtDoType.Text = printlist[0].DoType;
             TxtGBK.Text = printlist[0].GBCode;
             TxtGrade.Text = printlist[0].Grade;
             TxtSafeType.Text = printlist[0].SafeType;
         }
         else
         {//随机分配一个国标码
             IList<Y_GBCode> codes = WMSFactory.Y_GBCode.FindAllByPage(0, 1, 1, "", "StyleId='' or StyleId is null");
             if (codes.Count > 0)
             {
                 Y_StylePrint p = new Y_StylePrint();
                 p.StyleId = sf.StyleId;
                 p.GBCode = codes[0].Code;
                 codes[0].StyleId = p.StyleId;
                 if (WMSFactory.Y_StylePrint.Add(p) && WMSFactory.Y_GBCode.Update(codes[0]))
                 {
                     TxtGBK.Text = codes[0].Code;
                 }
                 else
                 {
                     lbInfo.Text = "国标码分配失败,请重新单击‘查 询’按钮!";
                     return;
                 }
             }
             else
             {
                 lbInfo.Text = "没有可用的国标码了,请上传新的国标码!";
                 return;
             }
         }
         //加载尺码信息
         RPSize.DataSource = style;
         RPSize.DataBind();
     }
     catch (Exception error)
     {
         lbInfo.Text = "异常:"+error.Message;
     }
 }
Beispiel #2
0
 //查询
 protected void BtnSearch_Click(object sender, EventArgs e)
 {
     lbInfo.Text = "";
     try
     {
         IList <Y_StyleFoundation> style = WMSFactory.Y_StyleFoundation.FindByCondition(string.Format("(StyleId='{0}' OR OldStyleId='{0}') AND (ColorId='{1}' OR OldColorId='{1}')", TxtStyleId.Text.Trim(), TxtColorId.Text.Trim()));
         if (style.Count <= 0)
         {
             lbInfo.Text = "没有找到任何记录!";
             return;
         }
         Y_StyleFoundation sf = style[0];
         //赋值,获取基本信息
         lbBrand.Text  = sf.BrName;
         lbdprice.Text = sf.J_Price.ToString();
         lbPinM.Text   = sf.S_Name;
         lbCd.Text     = sf.Production;
         lbcf.Text     = sf.Fabric == null ? "" : sf.Fabric.Replace(";", "<br />").Replace(";", "<br />");
         //获取颜色
         DataTable dt = WMSFactory.Y_GBCode.Query("SELECT c_name FROM F22.dbo.j_color where colorid='" + sf.ColorId + "'");
         if (dt != null && dt.Rows.Count > 0)
         {
             lbColor.Text = dt.Rows[0][0].ToString();
         }
         //获取国标码信息
         IList <Y_StylePrint> printlist = WMSFactory.Y_StylePrint.FindByCondition("StyleId='" + sf.StyleId + "'");
         if (printlist.Count > 0)
         {
             TxtDoType.Text   = printlist[0].DoType;
             TxtGBK.Text      = printlist[0].GBCode;
             TxtGrade.Text    = printlist[0].Grade;
             TxtSafeType.Text = printlist[0].SafeType;
         }
         else
         {//随机分配一个国标码
             IList <Y_GBCode> codes = WMSFactory.Y_GBCode.FindAllByPage(0, 1, 1, "", "StyleId='' or StyleId is null");
             if (codes.Count > 0)
             {
                 Y_StylePrint p = new Y_StylePrint();
                 p.StyleId        = sf.StyleId;
                 p.GBCode         = codes[0].Code;
                 codes[0].StyleId = p.StyleId;
                 if (WMSFactory.Y_StylePrint.Add(p) && WMSFactory.Y_GBCode.Update(codes[0]))
                 {
                     TxtGBK.Text = codes[0].Code;
                 }
                 else
                 {
                     lbInfo.Text = "国标码分配失败,请重新单击‘查 询’按钮!";
                     return;
                 }
             }
             else
             {
                 lbInfo.Text = "没有可用的国标码了,请上传新的国标码!";
                 return;
             }
         }
         //加载尺码信息
         RPSize.DataSource = style;
         RPSize.DataBind();
     }
     catch (Exception error)
     {
         lbInfo.Text = "异常:" + error.Message;
     }
 }