Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Theater
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴春
Theater
Commits
f9004153
Commit
f9004153
authored
Jan 29, 2019
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
场次座位图信息保存
parent
7287792b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
ScreeningHandler.cs
EheMall.Business/Handlers/ScreeningHandler.cs
+1
-0
ScreeningStaySeatService.cs
EheMall.Business/Services/ScreeningStaySeatService.cs
+2
-2
Create.cshtml
EheMall.Web/Areas/Admin/Views/Screening/Create.cshtml
+3
-0
Edit.cshtml
EheMall.Web/Areas/Admin/Views/Screening/Edit.cshtml
+3
-1
No files found.
EheMall.Business/Handlers/ScreeningHandler.cs
View file @
f9004153
...
...
@@ -40,6 +40,7 @@ namespace EheMall.Business.Handlers
[
AutofacResolve
]
private
ServiceCenter
.
IScreeningPriceService
_ScreeningPriceService
{
get
;
set
;
}
[
AutofacResolve
]
private
ServiceCenter
.
IScreeningStaySeatService
_ScreeningStaySeatService
{
get
;
set
;
}
/// <summary>
/// 只读服务
...
...
EheMall.Business/Services/ScreeningStaySeatService.cs
View file @
f9004153
...
...
@@ -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 de
sc"
);
string
sqlStr
=
string
.
Format
(
$@"SELECT * FROM ScreeningStaySeat WHERE bIsDeleted=0
{
where
}
order by iRow asc ,iCol a
sc"
);
var
list
=
DBHelper
.
Query
<
ScreeningStaySeat
>(
sqlStr
).
ToList
();
return
list
;
}
...
...
EheMall.Web/Areas/Admin/Views/Screening/Create.cshtml
View file @
f9004153
...
...
@@ -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') {
...
...
EheMall.Web/Areas/Admin/Views/Screening/Edit.cshtml
View file @
f9004153
...
...
@@ -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') {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment