|
@@ -202,7 +202,7 @@ public class ExportController extends BaseController {
|
|
|
HSSFWorkbook workbook = POIUtil.exportExcel(new String[]{"分部", "乐团编号", "乐团名称","合作单位", "乐团状态",
|
|
|
"收费模式","收费类型","乐团主管","成团人数", "在读人数", "申请时间", "成团时间", "清单状态"}, new String[]{
|
|
|
"organName", "id", "name","cooperationOrganName", "status.msg", "courseViewType.msg","chargeTypeName",
|
|
|
- "educationalTeacherName", /*"teamTeacherName", 和标题对不上*/"groupMemberNum","payNum"
|
|
|
+ "educationalTeacherName", "teamTeacherName", "groupMemberNum","payNum"
|
|
|
,"createTime","updateTime","hasVerifyMusicalList?'已确认':'未确认'"}, rows);
|
|
|
response.setContentType("application/octet-stream");
|
|
|
response.setHeader("Content-Disposition", "attac:wq" +
|
|
@@ -467,10 +467,10 @@ public class ExportController extends BaseController {
|
|
|
OutputStream outputStream = response.getOutputStream();
|
|
|
try {
|
|
|
HSSFWorkbook workbook = POIUtil.exportExcel(new String[]{"商品编号", "货号", "品牌", "商品名称",
|
|
|
- "是否组合商品", "是否库存预警","商品类型", "商品分类", "具体型号", "内部库存", "税务库存", "库存类型", "市场价(元)",
|
|
|
+ "是否组合商品", "商品类型", "商品分类", "具体型号", "内部库存", "税务库存", "库存类型", "市场价(元)",
|
|
|
"零售价(元)", "商品团购价(元)", "商品描述", "商品详情", "是否上下架"}, new String[]{
|
|
|
"id", "sn", "brand", "name",
|
|
|
- "complementGoodsIdList == null || complementGoodsIdList == '' ? '否':'是'", "stockWarning.msg",
|
|
|
+ "complementGoodsIdList == null || complementGoodsIdList == '' ? '否':'是'",
|
|
|
"type.desc", "goodsCategoryName", "specification", "stockCount", "taxStockCount", "stockType.msg", "marketPrice",
|
|
|
"discountPrice", "groupPurchasePrice", "brief", "desc", "status.msg"}, rows);
|
|
|
response.setContentType("application/octet-stream");
|
|
@@ -1923,8 +1923,8 @@ public class ExportController extends BaseController {
|
|
|
OutputStream outputStream = response.getOutputStream();
|
|
|
try {
|
|
|
|
|
|
- String[] header = {"分部", "单位编号", "单位名称", "是否启用","乐团主管","是否全职资源"};
|
|
|
- String[] body = {"organization.name", "id", "name", "isEnable == true ? '是':'否'", "realName", "fullJobResource == 1 ? '是' : '否'"};
|
|
|
+ String[] header = {"分部", "单位编号", "单位名称", "是否启用","乐团主管","状态栏"};
|
|
|
+ String[] body = {"organization.name", "id", "name", "isEnable == true ? '是':'否'", "realName", "isEnable == true ? '开启' : '未开启'"};
|
|
|
HSSFWorkbook workbook = POIUtil.exportExcel(header, body, pageList.getRows());
|
|
|
response.setContentType("application/octet-stream");
|
|
|
response.setHeader("Content-Disposition", "attachment;filename=cooperationOrgan-" + DateUtil.getDate(new Date()) + ".xls");
|