/// <summary> /// 生成营业报表 /// </summary> private void Bind(string day) { List <Model.occu_infor> listoi = blloi.GetDaySheet(day); if (listoi != null) { foreach (Model.occu_infor model in listoi) { sbtext.Append("<tr class=\"sj\"><td>" + model.room_number + "</td><td>" + model.occ_name + "</td><td>" + model.Real_mode_mode.real_mode_name + "</td><td>" + GetRoomStatu(model.state_id) + "</td><td>" + GetRoomStatu(model) + "</td><td>" + model.real_price.ToString("0.##") + "</td><td>" + model.occ_time + "</td><td>" + model.depar_time + "</td><td class=\"ff\">" + GetGoodsFF(model) + "</td><td class=\"fy\">" + GetGoodsFh(model) + "</td><td><span class=\"hj\"></span></td></tr>"); } } }