コード例 #1
0
ファイル: StatisticDress.cs プロジェクト: wynet321/aimu
        private void refreshDataGridViews()
        {
            Data rent = ShardDb.getDressStatistic(dateTimePickerStartDate.Value.ToShortDateString(), dateTimePickerEndDate.Value.ToShortDateString(), "租赁");

            if (!rent.Success)
            {
                this.Close();
                return;
            }
            dataGridViewRent.DataSource = rent.DataTable;
            Data sample = ShardDb.getDressStatistic(dateTimePickerStartDate.Value.ToShortDateString(), dateTimePickerEndDate.Value.ToShortDateString(), "卖样衣");

            if (!sample.Success)
            {
                this.Close();
                return;
            }
            dataGridViewSampleDress.DataSource = sample.DataTable;
            Data standard = ShardDb.getDressStatistic(dateTimePickerStartDate.Value.ToShortDateString(), dateTimePickerEndDate.Value.ToShortDateString(), "标准码");

            if (!standard.Success)
            {
                this.Close();
                return;
            }
            dataGridViewStandardDress.DataSource = standard.DataTable;
            Data specific = ShardDb.getDressStatistic(dateTimePickerStartDate.Value.ToShortDateString(), dateTimePickerEndDate.Value.ToShortDateString(), "量身定制");

            if (!specific.Success)
            {
                this.Close();
                return;
            }
            dataGridViewSpecificDress.DataSource = specific.DataTable;

            changeDataGridViewColumnTitle(dataGridViewRent);
            changeDataGridViewColumnTitle(dataGridViewSampleDress);
            changeDataGridViewColumnTitle(dataGridViewStandardDress);
            changeDataGridViewColumnTitle(dataGridViewSpecificDress);
        }