Commit 037c2560 authored by 吴春's avatar 吴春

打印票据

parent fac326fa
......@@ -189,6 +189,12 @@ namespace EheMall.Models.Models
[NotMapped]
public List<OrderSeat> OrderSeatList { get; set; }
/// <summary>
/// 场次
/// </summary>
[NotMapped]
public Screening Screening { get; set; }
/// <summary>
/// 场次时间
/// </summary>
......
var CreatedOKLodop7766 = null, CLodopIsLocal;
//====判断是否需要 Web打印服务CLodop:===
//===(不支持插件的浏览器版本需要用它)===
function needCLodop() {
try {
var ua = navigator.userAgent;
if (ua.match(/Windows\sPhone/i))
return true;
if (ua.match(/iPhone|iPod|iPad/i))
return true;
if (ua.match(/Android/i))
return true;
if (ua.match(/Edge\D?\d+/i))
return true;
var verTrident = ua.match(/Trident\D?\d+/i);
var verIE = ua.match(/MSIE\D?\d+/i);
var verOPR = ua.match(/OPR\D?\d+/i);
var verFF = ua.match(/Firefox\D?\d+/i);
var x64 = ua.match(/x64/i);
if ((!verTrident) && (!verIE) && (x64))
return true;
else if (verFF) {
verFF = verFF[0].match(/\d+/);
if ((verFF[0] >= 41) || (x64))
return true;
} else if (verOPR) {
verOPR = verOPR[0].match(/\d+/);
if (verOPR[0] >= 32)
return true;
} else if ((!verTrident) && (!verIE)) {
var verChrome = ua.match(/Chrome\D?\d+/i);
if (verChrome) {
verChrome = verChrome[0].match(/\d+/);
if (verChrome[0] >= 41)
return true;
}
}
return false;
} catch (err) {
return true;
}
}
//====页面引用CLodop云打印必须的JS文件,用双端口(8000和18000)避免其中某个被占用:====
if (needCLodop()) {
var src1 = "http://localhost:8000/CLodopfuncs.js?priority=1";
var src2 = "http://localhost:18000/CLodopfuncs.js?priority=0";
var head = document.head || document.getElementsByTagName("head")[0] || document.documentElement;
var oscript = document.createElement("script");
oscript.src = src1;
head.insertBefore(oscript, head.firstChild);
oscript = document.createElement("script");
oscript.src = src2;
head.insertBefore(oscript, head.firstChild);
CLodopIsLocal = !!((src1 + src2).match(/\/\/localho|\/\/127.0.0./i));
}
//====获取LODOP对象的主过程:====
function getLodop(oOBJECT, oEMBED) {
var strHtmInstall = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='install_lodop32.exe' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>";
var strHtmUpdate = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='install_lodop32.exe' target='_self'>执行升级</a>,升级后请重新进入。</font>";
var strHtm64_Install = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='install_lodop64.exe' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>";
var strHtm64_Update = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='install_lodop64.exe' target='_self'>执行升级</a>,升级后请重新进入。</font>";
var strHtmFireFox = "<br><br><font color='#FF00FF'>(注意:如曾安装过Lodop旧版附件npActiveXPLugin,请在【工具】->【附加组件】->【扩展】中先卸它)</font>";
var strHtmChrome = "<br><br><font color='#FF00FF'>(如果此前正常,仅因浏览器升级或重安装而出问题,需重新执行以上安装)</font>";
var strCLodopInstall_1 = "<br><font color='#FF00FF'>Web打印服务CLodop未安装启动,点击这里<a href='CLodop_Setup_for_Win32NT.exe' target='_self'>下载执行安装</a>";
var strCLodopInstall_2 = "<br>(若此前已安装过,可<a href='CLodop.protocol:setup' target='_self'>点这里直接再次启动</a>)";
var strCLodopInstall_3 = ",成功后请刷新本页面。</font>";
var strCLodopUpdate = "<br><font color='#FF00FF'>Web打印服务CLodop需升级!点击这里<a href='CLodop_Setup_for_Win32NT.exe' target='_self'>执行升级</a>,升级后请刷新页面。</font>";
var LODOP;
try {
var ua = navigator.userAgent;
var isIE = !!(ua.match(/MSIE/i)) || !!(ua.match(/Trident/i));
if (needCLodop()) {
try {
LODOP = getCLodop();
} catch (err) {}
if (!LODOP && document.readyState !== "complete") {
alert("网页还没下载完毕,请稍等一下再操作.");
return;
}
if (!LODOP) {
document.body.innerHTML = strCLodopInstall_1 + (CLodopIsLocal ? strCLodopInstall_2 : "") + strCLodopInstall_3 + document.body.innerHTML;
return;
} else {
if (CLODOP.CVERSION < "3.0.8.3") {
document.body.innerHTML = strCLodopUpdate + document.body.innerHTML;
}
if (oEMBED && oEMBED.parentNode)
oEMBED.parentNode.removeChild(oEMBED);
if (oOBJECT && oOBJECT.parentNode)
oOBJECT.parentNode.removeChild(oOBJECT);
}
} else {
var is64IE = isIE && !!(ua.match(/x64/i));
//=====如果页面有Lodop就直接使用,没有则新建:==========
if (oOBJECT || oEMBED) {
if (isIE)
LODOP = oOBJECT;
else
LODOP = oEMBED;
} else if (!CreatedOKLodop7766) {
LODOP = document.createElement("object");
LODOP.setAttribute("width", 0);
LODOP.setAttribute("height", 0);
LODOP.setAttribute("style", "position:absolute;left:0px;top:-100px;width:0px;height:0px;");
if (isIE)
LODOP.setAttribute("classid", "clsid:2105C259-1E0C-4534-8141-A753534CB4CA");
else
LODOP.setAttribute("type", "application/x-print-lodop");
document.documentElement.appendChild(LODOP);
CreatedOKLodop7766 = LODOP;
} else
LODOP = CreatedOKLodop7766;
//=====Lodop插件未安装时提示下载地址:==========
if ((!LODOP) || (!LODOP.VERSION)) {
if (ua.indexOf('Chrome') >= 0)
document.body.innerHTML = strHtmChrome + document.body.innerHTML;
if (ua.indexOf('Firefox') >= 0)
document.body.innerHTML = strHtmFireFox + document.body.innerHTML;
document.body.innerHTML = (is64IE ? strHtm64_Install : strHtmInstall) + document.body.innerHTML;
return LODOP;
}
}
if (LODOP.VERSION < "6.2.2.6") {
if (!needCLodop())
document.body.innerHTML = (is64IE ? strHtm64_Update : strHtmUpdate) + document.body.innerHTML;
}
//===如下空白位置适合调用统一功能(如注册语句、语言选择等):==
//=======================================================
return LODOP;
} catch (err) {
alert("getLodop出错:" + err);
}
}
This diff is collapsed.
@media print {
.no-print{ display: none}
.tempSenderClass{ border: none;color: #000;}
}
\ No newline at end of file
@page {size: 10cm 18cm;}
@page {
margin: 0cm;
}
@page {size: 21cm 29.7cm;}
\ No newline at end of file
@page {size: 24.1cm 13.97cm;}
\ No newline at end of file
@page {size: 24.1cm 14cm;}
\ No newline at end of file
@page {size: 24.1cm 7cm;}
\ No newline at end of file
@page {size: 24.1cm 9.31cm;}
\ No newline at end of file
@media all {
#print-container {
padding: 0em 0;
display: block;
}
#print-container .print {
page-break-after: always;
/*background: #ff0000
margin: 0 auto;
background: white;
page-break-after: auto;
box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, .7);
-webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, .7);
-moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, .7);;*/
}
#print-container .print table {
width: 100%;
color: black;
}
#print-container .print table.print-title {
margin-top: 0em;
}
#print-container .print table.print-title td {
width: 33.3%;
}
#print-container .print table.print-title td.title {
font-size: 24px;
text-align: center;
}
#print-container .print table.print-title td.orderno {
text-align: right;
}
#print-container .print .print-recipient {
margin: 1em 0;
}
#print-container .print .goods-list {
margin-bottom: 1em;
}
#print-container .print .goods-list td {
border: 1px #000000 solid;
}
}
/*@@page :left {
margin-left: 1cm;
}
@@page :right {
margin-right: 1cm;
}*/
@page :blank {
display: none;
}
@page {
margin: 0cm;
}
@media all {
#print-container .print {
page-break-after: always;
}
#print-container .print img { margin:0 auto;}
#print-container .print img + * {
text-align:justify
}
#print-container .print .logo{
display:none !important;
}
.clientPhone {
float: right;
margin-right: 50px;
}
.senderPhone {
float: right;
margin-right: 50px;
}
.print_paper {
border: none;
border-collapse: collapse;
width: 375px;
margin-top: -1px;
table-layout: fixed;
font-family: "宋体";
}
.print_paper td {
border: solid #000 1px;
padding: 0 5px;
overflow: hidden;
}
.table_first {
height: 10mm !important;
}
.print_paper .x1 {
font-size: 12pt;
font-family: "Microsoft YaHei"; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .x4 {
font-size: 32pt;
font-weight: bold;
font-family: "Microsoft YaHei";
text-align: left;
}
.print_paper .xx8 {
font-size: 16pt;
text-align: left;
font-family: "Microsoft YaHei";
}
.print_paper .xx10 {
font-size: 8pt;
font-weight: normal !important;
font-family: "Microsoft YaHei";
text-align: left; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx12 {
font-size: 6pt;
text-align: center;
font-family: "Microsoft YaHei"; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx14 {
font-size: 6pt;
text-align: left;
font-family: "Microsoft YaHei"; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx15 {
font-size: 8pt;
text-align: center;
font-family: "Microsoft YaHei"; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx16 {
font-size: 6pt;
text-align: left;
font-family: "Microsoft YaHei"; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx17 {
font-size: 8pt;
font-family: "Microsoft YaHei";
text-align: left; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.print_paper .xx18 {
font-size: 8pt;
font-weight: bold;
font-family: "Microsoft YaHei";
text-align: right; /*-webkit-transform-origin-x: 0;*/ /* -webkit-transform: scale(0.67);*/
}
.no_border {
width: 100%;
height: 100%;
}
.no_border td {
border: none;
vertical-align: top;
}
.print_paper .fwb {
font-weight: bold;
}
.print_paper .f24 {
font-family: "Arial";
font-size: 24pt;
}
.print_paper .p0 {
padding: 0;
}
.print_paper .ovh {
overflow: hidden;
}
.print_paper .ov {
overflow: visible;
}
.wa {
width: 100%;
}
.h30 {
height: 18.9px;
border-bottom: 1px solid #000;
width: 91px;
}
.h31 {
height: 94.5px;
width: 91px;
font-size: 5pt;
font-family: "Microsoft YaHei";
}
.vt {
vertical-align: top;
}
.tempClientClass {
/*border:1px dashed #000;*/
border: none;
color: #FF0084;
}
.tempSenderClass {
/*border:1px dashed #000;*/
border: none;
color: #0000FF;
}
}
@media all and (-webkit-min-device-pixel-ratio:0) {
.guge {
word-spacing: 0;
letter-spacing: 0;
width:120%;
padding:2.5%;
line-height: 1.5em;
font-size: 12px;
height: 72px;
margin-top: -10px;
-webkit-transform-origin-x: 0;
-webkit-transform: scale(0.80);
}
}
\ No newline at end of file
using EheMall.Infrastructure;
using EheMall.Models;
using EheMall.Models.Commands;
using EheMall.Models.Enums;
using EheMall.Models.Models;
using EheMall.ServiceCenter;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace EheMall.Web.Areas.TicketMall.Controllers
{
public class TakeTicketController : Controller
{
private ITheaterOrderService _TheaterOrderServices { get; set; }
private IScreeningService _ScreeningService { get; set; }
/// <summary>
/// 事件总线
/// </summary>
public Events.IEventBus _eventBus { get; set; }
private IScreeningPriceService _ScreeningPriceService { get; set; }
// GET: Admin/TheaterOrder
private IScreeningStaySeatService _ScreeningStaySeatService { get; set; }
private IOrderDetailService _OrderDetailServices { get; set; }
private IOrderSeatService _OrderSeatService { get; set; }
private ITheaterService _TheaterServices { get; set; }
public TakeTicketController()
{
_OrderDetailServices = EngineContext.Current.ResolveOptional<IOrderDetailService>();
_ScreeningStaySeatService = EngineContext.Current.ResolveOptional<IScreeningStaySeatService>();
_TheaterOrderServices = EngineContext.Current.ResolveOptional<ITheaterOrderService>();
_ScreeningService = EngineContext.Current.ResolveOptional<IScreeningService>();
_ScreeningPriceService = EngineContext.Current.ResolveOptional<IScreeningPriceService>();
_OrderSeatService = EngineContext.Current.ResolveOptional<IOrderSeatService>();
_TheaterServices = EngineContext.Current.ResolveOptional<ITheaterService>();
}
// GET: TicketMall/TakeTicket
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult ExchangeDetails(string CollectingTickets)
{
TheaterOrder model = new TheaterOrder();
Theater theaterModel = new Theater();
model.Screening = new Screening();
if (!string.IsNullOrWhiteSpace(CollectingTickets))
{
model = _TheaterOrderServices.GetOrderByCollectingTickets(CollectingTickets).FirstOrDefault();
theaterModel = _TheaterServices.Get(model.TheaterID);
model.Screening = _ScreeningService.Get(model.ScreeningID);
model.Screening.TheaterName = theaterModel.sName;
if (model.OrderState == OrderStateEnum.Cancel)
{
return Json(new { success = false, message = "订单已取消", model });
}
else if (model.OrderState == OrderStateEnum.Ticket || model.OrderState == OrderStateEnum.NotEntrance)
{
return Json(new { success = false, message = "订单已取票", model });
}
model.OrderDetailList = new List<OrderDetail>();
model.OrderDetailList = _OrderDetailServices.GetListByArticleTypeID(model.ID).ToList();
model.OrderSeatList = new List<OrderSeat>();
model.OrderSeatList = _OrderSeatService.GetListByArticleTypeID(model.ID).ToList();
}
return PartialView("_ExchangeDetails", model);
}
[HttpPost]
public ActionResult PrintDetails(string CollectingTickets)
{
TheaterOrder model = new TheaterOrder();
Theater theaterModel = new Theater();
model.Screening = new Screening();
if (!string.IsNullOrWhiteSpace(CollectingTickets))
{
model = _TheaterOrderServices.GetOrderByCollectingTickets(CollectingTickets).FirstOrDefault();
theaterModel = _TheaterServices.Get(model.TheaterID);
model.Screening = _ScreeningService.Get(model.ScreeningID);
model.Screening.TheaterName = theaterModel.sName;
if (model.OrderState == OrderStateEnum.Cancel)
{
return Json(new { success = false, message = "订单已取消", model });
}
else if (model.OrderState == OrderStateEnum.Ticket || model.OrderState == OrderStateEnum.NotEntrance)
{
return Json(new { success = false, message = "订单已取票", model });
}
model.OrderDetailList = new List<OrderDetail>();
model.OrderDetailList = _OrderDetailServices.GetListByArticleTypeID(model.ID).ToList();
model.OrderSeatList = new List<OrderSeat>();
model.OrderSeatList = _OrderSeatService.GetListByArticleTypeID(model.ID).ToList();
}
return PartialView("_PrintDetails", model);
}
[HttpPost]
public ActionResult UpdateOrderState(UpdateOrderStateCommand entity)
{
if (Request.IsAjaxRequest())
{
try
{
var model = _TheaterOrderServices.Get(entity.OrderID);
if (model.OrderState != OrderStateEnum.Normal)
{
return Json(new { valid = false, message = "当前订单" + Helpers.EnumHelper.GetEnumName(model.OrderState) });
}
//获取剧场提前取票时间
var screeningModel = _ScreeningService.Get(model.ScreeningID);
if (screeningModel.ExchangeTime > 0)
{
if ((screeningModel.StartTime - System.DateTime.Now).TotalMinutes > screeningModel.ExchangeTime)
{
return Json(new { valid = false, message = "当前订单只能提前" + screeningModel.ExchangeTime + "分钟取票" });
}
}
entity.iLogUserId = model.iBuyID;
entity.sLogUserName = "";
this._eventBus.Publish(entity);
return Json(new { valid = true, message = "操作成功" });
}
catch (Exception ex)
{
return Json(new { valid = false, message = "操作失败" });
}
}
return View();
}
}
}
\ No newline at end of file
This diff is collapsed.
@using EheMall.Models.Models
@model TheaterOrder
@{
}
<div class="orderlistTitle">@Model.Screening.Name</div>
<input type="hidden" id="orderId" value="@Model.ID" />
<div class="clearfix" style="margin:15px 0">
@if (Model.OrderSeatList != null && Model.OrderSeatList.Any())
{
foreach (var item in Model.OrderSeatList)
{
<div style="float:left;width:200px;">
<span class="orderSpan">票类:</span>
@if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.First)
{
<span class="orderSpan2">甲票</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Particularly)
{
<span class="orderSpan2">特票</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Scond)
{
<span class="orderSpan2">乙票</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Third)
{
<span class="orderSpan2">丙票</span>
}
</div>
<div style="float:left;">
<span class="orderSpan">座位号:</span>
@if (item.iTheaterSeatFloor == EheMall.Models.Enums.TheaterSeatFloorEnum.Loft)
{
<span class="orderSpan2">楼厢<text>@item.iCol</text>排<text>@item.iShowNum</text></span>
}
else
{
<span class="orderSpan2">堂厢</span>
}
</div>
}
}
</div>
<div class="clearfix">
<div style="float:left;width:200px;">
<span class="orderSpan">时长:</span><span class="orderSpan2"><text>@Model.Screening.ShowTime</text>分钟</span>
</div>
<div style="float:left;">
<span class="orderSpan">@Model.Screening.TheaterName</span>
<span class="orderSpan2"></span>
<span style="margin:0 10px;">@Model.Screening.StartTime.ToString("MM月dd日")</span>
<span>@Model.Screening.StartTime.ToString("HH:mm")</span>
</div>
</div>
\ No newline at end of file
@using EheMall.Models.Models
@model TheaterOrder
@{
string tempStr = "page";
int tempIndex = 1;
}
@if (Model != null)
{
foreach (var item in Model.OrderSeatList)
{
<div class="TkContent clearfix" id='@(tempStr+tempIndex)'>
<div class="Tk_left clearfix">
<div class="Tk_leftInfo">
<div class="tk_jvTitle">@Model.Screening.TheaterName</div>
<div class="clearfix">
<div class="hallLeft commonBorder">
<span class="tk_yingting">影厅</span>
<span class="tk_hall">HALL</span>
<span class="tk_ting">@(EheMall.Helpers.EnumHelper.GetEnumName(item.iTheaterSeatFloor))</span>
</div>
<div class="Timeright commonBorder">
<span class="tk_yingting">时间</span>
<span class="tk_hall">TIME</span>
<span class="tk_TimeOne">@Model.Screening.StartTime.ToString("yyyy-MM-dd")</span>
<span class="tk_TimeTwo">@Model.Screening.StartTime.ToString("HH:mm")</span>
</div>
</div>
<div class="tk_pianName commonBorder">
<span class="tk_yingpian">影片</span>
<span class="tk_hall">MOVIE</span>
<span class="tk_movieName">@Model.Screening.Name</span>
</div>
<div class="tk_pianName commonBorder">
<span class="tk_yingting">座位</span>
<span class="tk_hall">SEAT</span>
<span class="tk_pai">
<span class="tk_bigPiao">@item.iCol</span>排<span class="tk_bigPiao">@item.iShowNum</span>座
</span>
<span class="tk_zongji" style="display:none;">(总计)</span>
<span class="tk_duihao">对号入座</span>
</div>
<div class="tk_piaoqu clearfix">
<div class="tk_putong">
<span>座类</span>
<span class="tk_combold">@(EheMall.Helpers.EnumHelper.GetEnumName(item.iTheaterSeatType))</span>
</div>
<div class="tk_chengren" style="display:none;">
<span>票类</span>
<span class="tk_combold"></span>
</div>
<div class="tk_piaojia">
<span>票价</span>
@if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.First)
{
<span class="tk_combold">@Model.OrderDetailList.FirstOrDefault().FirstPrice</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Particularly)
{
<span class="tk_combold">@Model.OrderDetailList.FirstOrDefault().ParticularlyPrice</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Scond)
{
<span class="tk_combold">@Model.OrderDetailList.FirstOrDefault().ScondPrice</span>
}
else if (item.iTheaterSeatType == EheMall.Models.Enums.TheaterSeatTypeEnum.Third)
{
<span class="tk_combold">@Model.OrderDetailList.FirstOrDefault().ThirdPrice</span>
}
</div>
</div>
<div class="commonBorder tk_twoCode">
</div>
</div>
<div class="Tk_leftquan">
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
<div class="tk_quanList"></div>
</div>
</div>
<div class="Tk_right">
<div class="tk_piaoList">
<div class="tk_pTou">副券</div>
<span style="font-weight: bold;margin-top:10px;display:inline-block;">@(EheMall.Helpers.EnumHelper.GetEnumName(item.iTheaterSeatFloor))</span>
</div>
<div class="tk_piaoList">
<div class="tk_pTou">票号 NO.</div>
<div style="font-size:14px;margin-top:5px;">3251009</div>
<div style="font-size:14px;">776913</div>
</div>
<div class="tk_piaoList">
<div class="tk_pTou">日期 DATE</div>
<span style="font-weight: bold;margin-top:10px;display:inline-block;">@Model.Screening.StartTime.ToString("MM.dd")</span>
</div>
<div class="tk_piaoList">
<div class="tk_pTou">时间 TIME</div>
<span style="font-weight: bold;margin-top:10px;display:inline-block;">@Model.Screening.StartTime.ToString("HH:mm")</span>
</div>
<div class="tk_piaoList">
<div class="tk_pTou">场次 SHOW</div>
<span style="font-weight: bold;margin-top:10px;display:inline-block;">1场</span>
</div>
<div class="tk_lastDiv">
<div>影片 movie</div>
<div><text>@item.iCol</text>排<text>@item.iShowNum</text>座</div>
</div>
</div>
</div>
tempIndex += 1;
}
}
......@@ -183,6 +183,7 @@
<Compile Include="Areas\Mobile\MobileAreaRegistration.cs" />
<Compile Include="Areas\TicketMall\Controllers\HomeController.cs" />
<Compile Include="Areas\TicketMall\Controllers\LoginController.cs" />
<Compile Include="Areas\TicketMall\Controllers\TakeTicketController.cs" />
<Compile Include="Areas\TicketMall\TicketMallAreaRegistration.cs" />
<Compile Include="Common\Config.cs" />
<Compile Include="Common\ConfigHandler.cs" />
......@@ -337,6 +338,7 @@
<Content Include="Areas\TicketMall\Content\css\main.css" />
<Content Include="Areas\TicketMall\Content\css\public.css" />
<Content Include="Areas\TicketMall\Content\css\SaleTicket.css" />
<Content Include="Areas\TicketMall\Content\js\jcpfree.js" />
<Content Include="Areas\TicketMall\Content\js\jquery.flexslider-min.js" />
<Content Include="Areas\TicketMall\Content\js\jquery.min.js" />
<Content Include="Areas\TicketMall\Content\js\jquery.ui.js" />
......@@ -345,6 +347,7 @@
<Content Include="Areas\TicketMall\Content\js\layer\theme\layer.css" />
<Content Include="Areas\TicketMall\Content\js\lib\jquery.min.js" />
<Content Include="Areas\TicketMall\Content\js\lib\jquery.pagination.js" />
<Content Include="Areas\TicketMall\Content\js\LodopFuncs.js" />
<Content Include="Areas\TicketMall\Content\js\moment.min.js" />
<Content Include="Areas\TicketMall\Content\layui\css\default\laydate.css" />
<Content Include="Areas\TicketMall\Content\layui\css\layui.css" />
......@@ -354,14 +357,38 @@
<Content Include="Areas\TicketMall\Content\layui\lay\modules\laydate.js" />
<Content Include="Areas\TicketMall\Content\layui\modules\laydate.js" />
<Content Include="Areas\TicketMall\Content\login.html" />
<Content Include="Areas\TicketMall\Content\print\no-print.css" />
<Content Include="Areas\TicketMall\Content\print\print-100x180.css" />
<Content Include="Areas\TicketMall\Content\print\print-210x297.css" />
<Content Include="Areas\TicketMall\Content\print\print-241x139.css" />
<Content Include="Areas\TicketMall\Content\print\print-241x140.css" />
<Content Include="Areas\TicketMall\Content\print\print-241x70.css" />
<Content Include="Areas\TicketMall\Content\print\print-241x93.css" />
<Content Include="Areas\TicketMall\Content\print\print-invoice.css" />
<Content Include="Areas\TicketMall\Content\print\print-zto-surface.css" />
<Content Include="Areas\TicketMall\Content\Sp_img\back.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\bingqu.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\btn.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\canChoose.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\checked.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\choose.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\choosed.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\cs.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\images-moren.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-0.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-1.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-2.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-3.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-4.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-5.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-6.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-7.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-8.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-9.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-delete.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\img-qk.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\jiaqu.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\movie.mp4" />
<Content Include="Areas\TicketMall\Content\Sp_img\no.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\201811060903.jpg" />
<Content Include="Areas\TicketMall\Content\Sp_img\201815060905.jpg" />
......@@ -400,9 +427,12 @@
<Content Include="Areas\TicketMall\Content\Sp_img\rectangular.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\search.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\seat.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\shape.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\speak.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\specialArea.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\ticket.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\ticketBack.jpg" />
<Content Include="Areas\TicketMall\Content\Sp_img\tickets.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\title.jpg" />
<Content Include="Areas\TicketMall\Content\Sp_img\tubff.png" />
<Content Include="Areas\TicketMall\Content\Sp_img\votebg.png" />
......@@ -849,6 +879,9 @@
<Content Include="Areas\Admin\Views\TheaterOrder\RefundTicket.cshtml" />
<Content Include="Areas\Admin\Views\TheaterOrder\Edit.cshtml" />
<Content Include="Areas\TicketMall\Views\SaleTheater\OrderDetails.cshtml" />
<Content Include="Areas\TicketMall\Views\TakeTicket\Index.cshtml" />
<Content Include="Areas\TicketMall\Views\TakeTicket\_ExchangeDetails.cshtml" />
<Content Include="Areas\TicketMall\Views\TakeTicket\_PrintDetails.cshtml" />
<None Include="Properties\PublishProfiles\publish.pubxml" />
<None Include="Scripts\jquery-1.8.0.intellisense.js" />
<Content Include="Scripts\jquery-1.10.2.js" />
......@@ -1575,6 +1608,17 @@
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
<ItemGroup>
<COMReference Include="JATOOLSPRINTERLib">
<Guid>{083432E4-D075-43A8-96A5-057188254255}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>tlbimp</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=301880
......@@ -41,6 +41,9 @@
</customHeaders>
</httpProtocol>
<directoryBrowse enabled="true" />
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="application/octet-stream" />
</staticContent>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
......
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