public void refresh() { try { ClassDB.bindCombobox1("订单表", "订货单位", DHDW); // 绑定订货单位 ClassDB.bindCombobox1("订单表", "订货渠道", DHQD); // 绑定订货单位 ClassDB.bindCombobox1("订单表", "经办人", JBR); // 绑定订货单位 ClassDB.bindCombobox1("订单详单表", "产品类别", CPLB); // 绑定订货单位 string sql = "select 订单表.订单编号,订货单位,订货时间,送货地址,产品类别,产品名称,数量,收货人,联系方式,订货渠道,经办人 from 订单表 left join 订单详单表 on 订单表.订单编号=订单详单表.订单编号 " + "where (订货时间 Between #" + DHSJ.Value.ToString("yyyy-MM-dd hh:mm:ss") + "# and #" + DHSJEnd.Value.ToString("yyyy-MM-dd hh:mm:ss") + "#) and 订货单位 like '%" + DHDW.Text.Trim() + "%' and 订货渠道 like '%" + DHQD.Text.Trim() + "%' and 经办人 like '%" + JBR.Text.Trim() + "%' and 产品类别 like '%" + CPLB.Text.Trim() + "%' and 产品名称 like '%" + CPMC.Text.Trim() + "%' order by 订货时间 desc"; DataSet ds = ClassDB.getDataSet(sql); dataGridView1.DataSource = ds.Tables[0]; int nums = 0; for (int i = 0; i < dataGridView1.Rows.Count; i++) { nums += int.Parse(dataGridView1.Rows[i].Cells["数量"].Value.ToString()); } groupBox2.Text = "产品信息(合计:" + nums.ToString() + ")"; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
public void refresh() { try { ClassDB.bindCombobox1("订单表", "订货单位", DHDW); // 绑定订货单位 ClassDB.bindCombobox1("订单表", "订货渠道", DHQD); // 绑定订货单位 ClassDB.bindCombobox1("订单表", "经办人", JBR); // 绑定订货单位 string sql = "select 订单编号 as 订单流水号,订货单位,订货时间,送货地址,收货人,联系方式,订货渠道,经办人,提货方式,产品合计,备注 from 订单表 where (订货时间 Between #" + DHSJ.Value.ToString("yyyy-MM-dd hh:mm:ss") + "# and #" + DHSJEnd.Value.ToString("yyyy-MM-dd hh:mm:ss") + "#) and 订货单位 like '%" + DHDW.Text.Trim() + "%' and 订货渠道 like '%" + DHQD.Text.Trim() + "%' and 经办人 like '%" + JBR.Text.Trim() + "%' order by 订货时间 desc"; //MessageBox.Show(sql); DataSet ds = ClassDB.getDataSet(sql); dataGridView1.DataSource = ds.Tables[0]; } catch (Exception ex) { MessageBox.Show(ex.Message); } }