Commit f9004153 authored by 吴春's avatar 吴春

场次座位图信息保存

parent 7287792b
......@@ -40,6 +40,7 @@ namespace EheMall.Business.Handlers
[AutofacResolve]
private ServiceCenter.IScreeningPriceService _ScreeningPriceService { get; set; }
[AutofacResolve]
private ServiceCenter.IScreeningStaySeatService _ScreeningStaySeatService { get; set; }
/// <summary>
/// 只读服务
......
......@@ -22,10 +22,10 @@ namespace EheMall.Business.Services
public List<ScreeningStaySeat> GetList(string ScreeningId)
{
string where = "";
if (string.IsNullOrWhiteSpace(ScreeningId)) {
if (!string.IsNullOrWhiteSpace(ScreeningId)) {
where = $@" and ScreeningId='{ScreeningId}'";
}
string sqlStr = string.Format($@"SELECT * FROM ScreeningStaySeat WHERE bIsDeleted=0 {ScreeningId} order by CreateTime desc");
string sqlStr = string.Format($@"SELECT * FROM ScreeningStaySeat WHERE bIsDeleted=0 {where} order by iRow asc ,iCol asc");
var list = DBHelper.Query<ScreeningStaySeat>(sqlStr).ToList();
return list;
}
......
......@@ -183,6 +183,9 @@
}
var str = JSON.stringify(priceList);
data.push({ name: "priceList", value: str });
//座位列表
data.push({ name: "seatList", value: JSON.stringify(SeatData()) });
$.post(form.attr('action'), data, function (result) {
if (result.valid == true || result.valid == 'true') {
......
......@@ -129,7 +129,7 @@
}
$(document).ready(function () {
$.post('/Admin/Screening/ScreeningSeat', { TheaterId: '@Model.TheaterId' }, function (result) {
$.post('/Admin/Screening/ScreeningSeat', { TheaterId: '@Model.TheaterId', ScreeningId:'@Model.ID' }, function (result) {
$("#SeatDiv").html(result);
}, 'html');
var selectImages = $('#goods-select-image-value').val();
......@@ -213,6 +213,8 @@
}
var str = JSON.stringify(priceList);
data.push({ name: "priceList", value: str });
//座位列表
data.push({ name: "seatList", value: JSON.stringify(SeatData()) });
$.post(form.attr('action'), data, function (result) {
if (result.valid == true || result.valid == 'true') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment