private void SelectedAllConsignmentBill(object obj)
        {
            if (ConsignmentBills.Count == 0)
            {
                return;
            }

            if (ConsignmentBills.Where(m => m.SelectedStatus == 0).Count() > 0)
            {
                // 查询有没有被锁定的数据
                string        billNos    = "'" + string.Join("','", ConsignmentBills.Select(m => m.BillNo)) + "'";
                string        lockstring = _consignmentService.GetConsignmentBillLockOwner(user.ID, billNos);
                bool          r          = ConsignmentBills.Where(m => m.CurrencyQuantity == 0).Count() > 0;
                StringBuilder sb         = new StringBuilder();

                if (string.IsNullOrEmpty(lockstring) || r)
                {
                    foreach (var item in ConsignmentBills)
                    {
                        if (SelectedConsignmentBillLists.Where(x => x.InterId == item.InterId).Count() == 0)
                        {
                            item.SelectedStatus = item.TotalQuantity == item.CurrencyQuantity ? 2 : 1;
                            SelectedConsignmentBillLists.Add(item);
                            sb.Append(",'" + item.BillNo + "'");
                        }
                    }
                    _consignmentService.AddUserCurrencyOperation(user.ID, sb.ToString().Substring(1));
                    SelectedConsignmentSum = SelectedConsignmentBillLists.Where(m => m.SelectedStatus > 0).Sum(m => m.CurrencyQuantity);
                    QuerySignmentBill(null);
                }
                else
                {
                    MessageBox.Show(lockstring + "!\r\n 或者已选数据的当前数量不能为0 ,不能批量选择");
                }
            }
        }
        private void InitQueryConSignmentBill()
        {
            QuerySignmentBill(null);

            SelectedConsignmentBillLists.Clear();
            _consignmentService.GetUserSelectedConsignmentBill(user.ID).ToList().ForEach(x => SelectedConsignmentBillLists.Add(x));
            SelectedConsignmentSum = SelectedConsignmentBillLists.Where(m => m.SelectedStatus > 0).Sum(m => m.CurrencyQuantity);
        }