<title>发票表</title>
|
<!--当前位置开始-->
|
<div class="layui-card layadmin-header">
|
<div class="layui-breadcrumb" lay-filter="breadcrumb">
|
<script type="text/html" template lay-done="layui.data.updateMainBreadcrumb();">
|
</script>
|
</div>
|
</div>
|
<!--当前位置结束-->
|
<style>
|
/* 重写样式 */
|
</style>
|
<script type="text/html" template lay-type="Post" lay-url="{{ layui.setter.apiUrl }}Api/CoreCmsInvoice/GetIndex" lay-done="layui.data.done(d);">
|
|
</script>
|
<div class="table-body">
|
<table id="LAY-app-CoreCmsInvoice-tableBox" lay-filter="LAY-app-CoreCmsInvoice-tableBox"></table>
|
</div>
|
|
<script type="text/html" id="LAY-app-CoreCmsInvoice-toolbar">
|
<div class="layui-form coreshop-toolbar-search-form">
|
<div class="layui-form-item">
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<select name="category" id="category" lay-filter="conditionCode">
|
<option value="">请选择类型开票类型</option>
|
{{# layui.each(indexData.orderTaxCategory, function(index, item){ }}
|
<option value="{{ item.value }}">{{ item.description }}</option>
|
{{# }); }}
|
</select>
|
</div>
|
</div>
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<select name="type" id="type">
|
<option value="">请选择发票类型</option>
|
{{# layui.each(indexData.orderTaxType, function(index, item){ }}
|
<option value="{{ item.value }}">{{ item.description }}</option>
|
{{# }); }}
|
</select>
|
</div>
|
</div>
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<input type="text" name="title" id="title" placeholder="请输入发票抬头" class="layui-input">
|
</div>
|
</div>
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<input type="text" name="taxNumber" id="taxNumber" placeholder="请输入发票税号" class="layui-input">
|
</div>
|
</div>
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<select name="status" id="status">
|
<option value="">请选择开票状态</option>
|
{{# layui.each(indexData.orderTaxStatus, function(index, item){ }}
|
<option value="{{ item.value }}">{{ item.description }}</option>
|
{{# }); }}
|
</select>
|
</div>
|
</div>
|
<div class="layui-inline">
|
<button class="layui-btn layui-btn-sm" lay-submit lay-filter="LAY-app-CoreCmsInvoice-search"><i class="layui-icon layui-icon-search"></i>筛选</button>
|
</div>
|
</div>
|
</div>
|
</script>
|
<script type="text/html" id="LAY-app-CoreCmsInvoice-pagebar">
|
<div class="layui-btn-container">
|
<button class="layui-btn layui-btn-sm" lay-event="selectExportExcel"><i class="layui-icon layui-icon-add-circle"></i>选择导出</button>
|
<button class="layui-btn layui-btn-sm" lay-event="queryExportExcel"><i class="layui-icon layui-icon-download-circle"></i>查询导出</button>
|
</div>
|
</script>
|
<script type="text/html" id="LAY-app-CoreCmsInvoice-tableBox-bar">
|
<a class="layui-btn layui-btn-xs" lay-event="edit">编辑</a>
|
<a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>
|
</script>
|
|
<script>
|
var indexData;
|
var debug = layui.setter.debug;
|
layui.data.done = function (d) {
|
//开启调试情况下获取接口赋值数据
|
if (debug) { console.log(d); }
|
|
indexData = d.data;
|
layui.use(['index', 'table', 'laydate', 'util', 'coreHelper'],
|
function () {
|
var $ = layui.$
|
, admin = layui.admin
|
, table = layui.table
|
, form = layui.form
|
, laydate = layui.laydate
|
, setter = layui.setter
|
, coreHelper = layui.coreHelper
|
, util = layui.util
|
, view = layui.view;
|
|
laydate.render({
|
elem: '#searchTime-CoreCmsInvoice-createTime',
|
type: 'datetime',
|
range: '到',
|
});
|
laydate.render({
|
elem: '#searchTime-CoreCmsInvoice-updateTime',
|
type: 'datetime',
|
range: '到',
|
});
|
//重载form
|
form.render();
|
var searchwhere;
|
//监听搜索
|
form.on('submit(LAY-app-CoreCmsInvoice-search)',
|
function (data) {
|
var field = data.field;
|
searchwhere = field;
|
//执行重载
|
table.reloadData('LAY-app-CoreCmsInvoice-tableBox', { where: field });
|
});
|
//数据绑定
|
table.render({
|
elem: '#LAY-app-CoreCmsInvoice-tableBox',
|
url: layui.setter.apiUrl + 'Api/CoreCmsInvoice/GetPageList',
|
method: 'POST',
|
toolbar: '#LAY-app-CoreCmsInvoice-toolbar',
|
pagebar: '#LAY-app-CoreCmsInvoice-pagebar',
|
className: 'pagebarbox',
|
defaultToolbar: ['filter', 'print', 'exports'],
|
height: 'full-127',//无面包屑127,搜索框189,1行62
|
page: true,
|
limit: 30,
|
limits: [10, 15, 20, 25, 30, 50, 100, 200],
|
text: { none: '暂无相关数据' },
|
cols: [
|
[
|
{ type: "checkbox", fixed: "left" },
|
{ field: 'id', title: '序列', width: 50, sort: false },
|
{
|
field: 'category', title: '资源类型', sort: false, width: 80,
|
templet: function (data) {
|
for (var i = 0; i < d.data.orderTaxCategory.length; i++) {
|
if (data.category == d.data.orderTaxCategory[i].value) {
|
return d.data.orderTaxCategory[i].description;
|
}
|
}
|
return "";
|
}
|
},
|
{ field: 'sourceId', title: '资源序列', sort: false, width: 125 },
|
{
|
field: 'userNickName', title: '用户', sort: false, width: 180, templet: function (d) {
|
return d.userNickName + '(' + d.userId + ')';
|
}
|
},
|
{
|
field: 'type', title: '发票类型', sort: false, width: 80,
|
templet: function (data) {
|
for (var i = 0; i < d.data.orderTaxType.length; i++) {
|
if (data.type == d.data.orderTaxType[i].value) {
|
return d.data.orderTaxType[i].description;
|
}
|
}
|
return "";
|
}
|
},
|
{ field: 'title', title: '发票抬头', sort: false ,width: 200 },
|
{ field: 'taxNumber', title: '发票税号', sort: false, width: 150 },
|
{ field: 'amount', title: '发票金额', sort: false, width: 80, templet: function (data) { return '¥' + data.amount } },
|
{
|
field: 'status', title: '开票状态', width: 80,
|
templet: function (data) {
|
//for (var i = 0; i < d.data.orderTaxStatus.length; i++) {
|
// if (data.status == d.data.orderTaxStatus[i].value) {
|
// return d.data.orderTaxStatus[i].description;
|
// }
|
//}
|
//return "";
|
if (data.status === 1) {
|
return "<button type=\"button\" class=\"layui-btn layui-btn-danger layui-btn-xs\">未开票</button>";
|
} else if (data.status === 2) {
|
return "<button type=\"button\" class=\"layui-btn layui-btn-xs\">已开发 </button>";
|
}
|
|
}
|
},
|
{ field: 'fileUrl', title: '发票下载地址', sort: false},
|
{ field: 'remarks', title: '开票备注', sort: false, width: 150 },
|
{ field: 'createTime', title: '创建时间', width: 130, sort: false },
|
{ field: 'updateTime', title: '更新时间', width: 130, sort: false },
|
{ width: 122, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsInvoice-tableBox-bar' }
|
]
|
]
|
});
|
//监听排序事件
|
table.on('sort(LAY-app-CoreCmsInvoice-tableBox)', function (obj) {
|
table.reloadData('LAY-app-CoreCmsInvoice-tableBox', {
|
initSort: obj, //记录初始排序,如果不设的话,将无法标记表头的排序状态。
|
where: { //请求参数(注意:这里面的参数可任意定义,并非下面固定的格式)
|
orderField: obj.field, //排序字段
|
orderDirection: obj.type //排序方式
|
}
|
});
|
});
|
//头工具栏事件
|
table.on('pagebar(LAY-app-CoreCmsInvoice-tableBox)', function (obj) {
|
var checkStatus = table.checkStatus(obj.config.id);
|
switch (obj.event) {
|
case 'selectExportExcel':
|
doSelectExportExcel(checkStatus);
|
break;
|
case 'queryExportExcel':
|
doQueryExportexcel();
|
break;
|
};
|
});
|
//监听工具条
|
table.on('tool(LAY-app-CoreCmsInvoice-tableBox)',
|
function (obj) {
|
if (obj.event === 'del') {
|
doDelete(obj);
|
} else if (obj.event === 'edit') {
|
doEdit(obj)
|
}
|
});
|
//执行编辑操作
|
function doEdit(obj) {
|
coreHelper.Post("Api/CoreCmsInvoice/GetEdit", { id: obj.data.id }, function (e) {
|
if (e.code === 0) {
|
admin.popup({
|
shadeClose: false,
|
title: '编辑数据',
|
area: ['600px', '90%'],
|
id: 'LAY-popup-CoreCmsInvoice-edit',
|
success: function (layero, index) {
|
view(this.id).render('financial/invoice/edit', { data: e.data }).done(function () {
|
//监听提交
|
form.on('submit(LAY-app-CoreCmsInvoice-editForm-submit)',
|
function (data) {
|
var field = data.field; //获取提交的字段
|
if (debug) { console.log(field); } //开启调试返回数据
|
//提交 Ajax 成功后,关闭当前弹层并重载表格
|
coreHelper.Post("Api/CoreCmsInvoice/DoEdit", field, function (e) {
|
console.log(e)
|
if (e.code === 0) {
|
layui.table.reloadData('LAY-app-CoreCmsInvoice-tableBox'); //重载表格
|
layer.close(index); //再执行关闭
|
layer.msg(e.msg);
|
} else {
|
layer.msg(e.msg);
|
}
|
});
|
});
|
})
|
}
|
, btn: ['确定', '取消']
|
, yes: function (index, layero) {
|
layero.contents().find("#LAY-app-CoreCmsInvoice-editForm-submit").click();
|
}
|
});
|
} else {
|
layer.msg(e.msg);
|
}
|
});
|
}
|
//执行预览操作
|
function doDetails(obj) {
|
coreHelper.Post("Api/CoreCmsInvoice/GetDetails", { id: obj.data.id }, function (e) {
|
if (e.code === 0) {
|
admin.popup({
|
shadeClose: false,
|
title: '查看详情',
|
area: ['600px', '400px'],
|
id: 'LAY-popup-CoreCmsInvoice-details',
|
success: function (layero, index) {
|
view(this.id).render('base/CoreCmsInvoice/details', { data: e.data }).done(function () {
|
form.render();
|
});
|
}
|
});
|
} else {
|
layer.msg(e.msg);
|
}
|
});
|
}
|
//执行单个删除
|
function doDelete(obj) {
|
layer.confirm('确定删除吗?删除后将无法恢复。', function (index) {
|
coreHelper.Post("Api/CoreCmsInvoice/DoDelete", { id: obj.data.id }, function (e) {
|
if (debug) { console.log(e); } //开启调试返回数据
|
table.reloadData('LAY-app-CoreCmsInvoice-tableBox');
|
layer.msg(e.msg);
|
});
|
});
|
}
|
//执行查询条件导出excel
|
function doQueryExportexcel() {
|
layer.confirm('确定根据当前的查询条件导出数据吗?',
|
function (index) {
|
var field = searchwhere;
|
coreHelper.PostForm("Api/CoreCmsInvoice/QueryExportExcel", field, function (e) {
|
if (debug) { console.log(e); } //开启调试返回数据
|
if (e.code === 0) {
|
window.open(e.data);
|
} else {
|
layer.msg(e.msg);
|
}
|
});
|
});
|
}
|
//执行选择目录导出数据
|
function doSelectExportExcel(checkStatus) {
|
var checkData = checkStatus.data;
|
if (checkData.length === 0) {
|
return layer.msg('请选择您要导出的数据');
|
}
|
layer.confirm('确定导出选择的内容吗?',
|
function (index) {
|
var delidsStr = [];
|
layui.each(checkData,
|
function (index, item) {
|
delidsStr.push(item.id);
|
});
|
layer.close(index);
|
coreHelper.Post("Api/CoreCmsInvoice/SelectExportExcel", { id: delidsStr }, function (e) {
|
if (debug) { console.log(e); } //开启调试返回数据
|
if (e.code === 0) {
|
window.open(e.data);
|
} else {
|
layer.msg(e.msg);
|
}
|
});
|
});
|
}
|
//监听 表格复选框操作
|
|
layui.form.on('switch(switch_status)', function (obj) {
|
coreHelper.Post("Api/CoreCmsInvoice/DoSetstatus", { id: this.value, data: obj.elem.checked }, function (e) {
|
if (debug) { console.log(e); } //开启调试返回数据
|
//table.reloadData('LAY-app-CoreCmsInvoice-tableBox');
|
layer.msg(e.msg);
|
});
|
});
|
|
});
|
};
|
</script>
|
|
<!--设置是否开票-->
|
<script type="text/html" id="switch_status">
|
<input type="checkbox" name="switch_status" value="{{d.id}}" lay-skin="switch" lay-text="开启|关闭" lay-filter="switch_status" {{ d.status ? 'checked' : '' }}>
|
</script>
|