Exemple #1
0
 private void BindContractCategoryCount(bool isFlush)
 {
     if (UserHelper.ContractProjectList == null || isFlush == true)
     {
         //MessageBox.Show(this.IdDepartShortCall.Text);
         Search search = new Search
         {
             CategoryShortCall = this.IdDepartShortCall.Text,
             Year = int.Parse(this.IdYear.Text),
         };
         //获取当前会签单是第几单
         int count = _sc.GetCategoryYearContractCount(search);
         this.IdNo.Text = count.ToString();
     }
 }