public void refreshData()
 {
     try
     {
         System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;
         //
         BLL.IRep单品汇总表 bll = new BLL.Rep单品汇总表();
         string        k   = "";
         bll.GetKey(key, dateTimePicker1.Value.ToString("yyyy-MM-dd"), dateTimePicker2.Value.ToString("yyyy-MM-dd"), txtgoodsname.Text, out k);
         key = k;
         //
         this.btn_first_Click(btn_first, null);
     }
     catch (Exception e)
     {
         Program.frmMsg(e.Message);
     }
     finally
     {
         System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default;
     }
 }