Merge branch 'score_shop' into api_score_meger
| | |
| | | public AjaxResult importVipInfo(HttpServletResponse response, HttpServletRequest request, @RequestParam(value = "file", required = false) MultipartFile file) throws IOException { |
| | | |
| | | String fileName = file.getOriginalFilename(); |
| | | // String dirPath = "E:"; |
| | | String dirPath = PropertiesUtil.getString(AppConstance.FILES_TORAGE_PATH); |
| | | // String dirPath = "E:"; |
| | | String dirPath = PropertiesUtil.getString(AppConstance.FILES_TORAGE_PATH); |
| | | |
| | | File saveFile = new File(dirPath + "/" + fileName); |
| | | file.transferTo(saveFile); |
| | |
| | | //检查交易限制调整 |
| | | checkSealLimit(pageOrder); |
| | | |
| | | //交易业绩设置是否合理 |
| | | checkAchieveIsOk(pageOrder); |
| | | |
| | | |
| | | // 更新收款时间 |
| | | pageOrder.setPayTime(new Date()); |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 交易业绩设置是否合理 |
| | | * @param pageOrder |
| | | */ |
| | | private void checkAchieveIsOk(SysOrder pageOrder) { |
| | | double huakouSum = pageOrder.getItems().stream() |
| | | .mapToDouble( |
| | | item -> |
| | | item.getAchieveList().stream() |
| | | .filter(achieveNew -> "划扣".equals(achieveNew.getPayMethod())) |
| | | .mapToDouble(achieve -> achieve.getGoodsCash()).sum() |
| | | ).sum(); |
| | | |
| | | double czkPay= pageOrder.getFlows().stream() |
| | | .filter(sysOrderFlow -> "储值卡".equals(sysOrderFlow.getPayMethod())) |
| | | .mapToDouble(sysOrderFlow ->sysOrderFlow.getAmount().doubleValue()).sum(); |
| | | |
| | | if(czkPay!=huakouSum){ |
| | | throw new GlobleException("划扣业绩不等于储值卡扣款金额,请修改业绩设置!"); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 设置会员消费积分 |
| | |
| | | |
| | | import com.matrix.core.constance.MatrixConstance; |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import com.matrix.core.tools.DateUtil; |
| | | import com.matrix.core.tools.WebUtil; |
| | | import com.matrix.core.tools.excl.ExcelSheetPO; |
| | | import com.matrix.core.tools.excl.ExcelVersion; |
| | | import com.matrix.system.common.bean.SysUsers; |
| | | import com.matrix.system.common.constance.AppConstance; |
| | | import com.matrix.system.common.tools.DataAuthUtil; |
| | | import com.matrix.system.common.tools.ResponseHeadUtil; |
| | | import com.matrix.system.hive.dao.SysOrderItemDao; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.OutputStream; |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @RequestMapping(value = "/showList") |
| | | public @ResponseBody |
| | | AjaxResult showList( @RequestParam Map<String , Object> param) { |
| | | AjaxResult showList(@RequestParam Map<String, Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(orderItemDao.selectItemDetail(param), |
| | | orderItemDao.selectItemDetailTotal(param)); |
| | | } |
| | | @RequestMapping(value = "/exportShowList") |
| | | public void exportShowList(@RequestParam Map<String, Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "产品销售明细统计"; |
| | | String[] header = {"门店", "销售日期", "订单号", "商品名称", "分类", "客户名", "购买数量", "单价", "健康顾问", "支付方式", "状态"}; |
| | | String[] column = {"SHOP_NAME", "pay_time", "ORDER_NO", "goodsName", "cateName", "VIP_NAME", "COUNT", "ZK_PRICE", "su_name", "pay_method", "status"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = orderItemDao.selectItemDetail(param); |
| | | exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 产品销售明细统计 |
| | | */ |
| | | @RequestMapping(value = "/summaryItemDetail") |
| | | public @ResponseBody |
| | | AjaxResult summaryItemDetail( @RequestParam Map<String , Object> param) { |
| | | AjaxResult summaryItemDetail(@RequestParam Map<String, Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(orderItemDao.summaryItemDetail(param), |
| | | orderItemDao.summaryItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportSummaryItemDetail") |
| | | public void exportSummaryItemDetail(@RequestParam Map<String, Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "产品销售明细统计"; |
| | | String[] header = {"门店", "商品名称", "分类", "销售数量", "销售总额"}; |
| | | String[] column = {"SHOP_NAME", "goodsName", "cateName", "COUNT", "ZK_PRICE"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = orderItemDao.summaryItemDetail(param); |
| | | exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | public static void exportExcel(String title, String[] header,String[] column, List<Map<String, Object>> dataList, HttpServletResponse response) throws Exception { |
| | | //这里是从数据库里查数据并组装成我们想要的数据结构的过程 |
| | | List<ExcelSheetPO> res = new ArrayList<>(); |
| | | ExcelSheetPO orderSheet = new ExcelSheetPO(); |
| | | orderSheet.setSheetName(title); |
| | | orderSheet.setTitle(title); |
| | | orderSheet.setHeaders(header); |
| | | List<List<Object>> list = new ArrayList<>(); |
| | | if (dataList.size() > 0) { |
| | | for (Map<String, Object> item : dataList) { |
| | | List<Object> temp = new ArrayList<>(); |
| | | Arrays.stream(column).forEach(key-> temp.add(item.get(key))); |
| | | list.add(temp); |
| | | } |
| | | } |
| | | orderSheet.setDataList(list); |
| | | res.add(orderSheet); |
| | | response = ResponseHeadUtil.setExcelHead(response); |
| | | response.setHeader("Content-Disposition", |
| | | "attachment;filename=" + java.net.URLEncoder.encode(title + DateUtil.getTimeMark() + ".xlsx".trim(), "UTF-8")); |
| | | OutputStream os = response.getOutputStream(); |
| | | com.matrix.core.tools.excl.ExcelUtil.createWorkbookAtOutStream(ExcelVersion.V2007, res, os, true); |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import com.matrix.core.tools.WebUtil; |
| | | import com.matrix.system.common.bean.SysUsers; |
| | | import com.matrix.system.common.constance.AppConstance; |
| | | import com.matrix.system.common.tools.DataAuthUtil; |
| | | import com.matrix.system.hive.dao.SysProjUseDao; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public @ResponseBody |
| | | AjaxResult showList( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(projUseDao.selectItemDetail(param), |
| | | projUseDao.selectItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportShowList") |
| | | public void exportShowList( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "项目剩余次数明细"; |
| | | String[] header = {"客户名", "服务名称", "到期日期", "剩余次数", "单价", "项目类型", "套餐类型", "是否使用完成", "备注", "来源", "订单号"}; |
| | | String[] column = {"VIP_NAME", "PROJ_NAME", "FAIL_TIME", "SURPLUS_COUNT", "PRICE", "TYPE_NAME", "type", "IS_OVER", "remark", "SOURCE", "ORDER_NO"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = projUseDao.selectItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 项目剩余次数统计 |
| | |
| | | public @ResponseBody |
| | | AjaxResult summaryItemDetail( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(projUseDao.summaryItemDetail(param), |
| | | projUseDao.summaryItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportSummaryItemDetail") |
| | | public void exportSummaryItemDetail( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "项目剩余次数统计"; |
| | | String[] header = {"服务名称", "项目类型", "剩余次数", "剩余消耗总额"}; |
| | | String[] column = {"PROJ_NAME", "TYPE_NAME", "SURPLUS_COUNT", "PRICE"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = projUseDao.summaryItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import com.matrix.core.tools.WebUtil; |
| | | import com.matrix.system.common.bean.SysUsers; |
| | | import com.matrix.system.common.constance.AppConstance; |
| | | import com.matrix.system.common.tools.DataAuthUtil; |
| | | import com.matrix.system.hive.dao.SysBeauticianStateDao; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public @ResponseBody |
| | | AjaxResult showList( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | |
| | | return AjaxResult.buildSuccessInstance(beauticianStateDao.selectItemDetail(param), |
| | | beauticianStateDao.selectItemDetailTotal(param)); |
| | | } |
| | | |
| | | |
| | | @RequestMapping(value = "/exportShowList") |
| | | public void exportShowList( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "项目服务明细"; |
| | | String[] header = {"门店", "预约时间","划扣时间","服务单号","服务名称","分类","客户名","次数","划扣单价","提成","美疗师","来源"}; |
| | | String[] column = {"SHOP_NAME", "yy_time", "consume_time", "SERVICE_NO", "PROJ_NAME", "TYPE_NAME", "VIP_NAME", "COUNT", "PRICE", "extract", "su_name", "SOURCE"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = beauticianStateDao.selectItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 项目服务明细统计 |
| | |
| | | public @ResponseBody |
| | | AjaxResult summaryItemDetail( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(beauticianStateDao.summaryItemDetail(param), |
| | | beauticianStateDao.summaryItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportSummaryItemDetail") |
| | | public void exportSummaryItemDetail( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "项目服务明细统计"; |
| | | String[] header = {"门店", "服务名称","分类","总次数","消耗金额"}; |
| | | String[] column = {"SHOP_NAME", "PROJ_NAME", "TYPE_NAME", "COUNT", "PRICE"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = beauticianStateDao.summaryItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import com.matrix.core.tools.WebUtil; |
| | | import com.matrix.system.common.bean.SysUsers; |
| | | import com.matrix.system.common.constance.AppConstance; |
| | | import com.matrix.system.common.tools.DataAuthUtil; |
| | | import com.matrix.system.hive.dao.MoneyCardUseDao; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public @ResponseBody |
| | | AjaxResult showList( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(moneyCardUseDao.selectItemDetail(param), |
| | | moneyCardUseDao.selectItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportShowList") |
| | | public void exportShowList( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "客户充值卡明细"; |
| | | String[] header = {"客户名", "充值卡名称","到期日期","剩余本金","剩余赠送金额","是否使用完成","是否为会籍卡","备注","来源","订单号"}; |
| | | String[] column = {"VIP_NAME", "card_name","FAIL_TIME","real_money","gift_money","isOver","is_vip_car","remark","SOURCE","ORDER_NO"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = moneyCardUseDao.selectItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | /** |
| | |
| | | public @ResponseBody |
| | | AjaxResult summaryItemDetail( @RequestParam Map<String , Object> param) { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | if(!AppConstance.ZONGDIAN.equals(sysUsers.getShopName())){ |
| | | param.put("shopId",sysUsers.getShopId()); |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | return AjaxResult.buildSuccessInstance(moneyCardUseDao.summaryItemDetail(param), |
| | | moneyCardUseDao.summaryItemDetailTotal(param)); |
| | | } |
| | | |
| | | @RequestMapping(value = "/exportSummaryItemDetail") |
| | | public void exportSummaryItemDetail( @RequestParam Map<String , Object> param, HttpServletResponse response) throws Exception { |
| | | SysUsers sysUsers = (SysUsers) WebUtil.getSession().getAttribute(MatrixConstance.LOGIN_KEY); |
| | | String title = "客户充值卡统计"; |
| | | String[] header = {"充值卡名称", "剩余总本金", "剩余总赠送金额"}; |
| | | String[] column = {"card_name", "real_money", "gift_money"}; |
| | | |
| | | if(!DataAuthUtil.hasAllShopAuth()){ |
| | | param.put("shopId", sysUsers.getShopId()); |
| | | } |
| | | List<Map<String, Object>> dataList = moneyCardUseDao.summaryItemDetail(param); |
| | | OrderStatisticsAction.exportExcel(title, header,column, dataList, response); |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | and a.orderType = #{record.orderType} |
| | | </if> |
| | | <if test="record.beginTimeVo != null "> |
| | | and a.ORDER_TIME >= #{record.beginTimeVo} |
| | | and a.pay_time >= #{record.beginTimeVo} |
| | | </if> |
| | | <if test="record.endTimeVo != null "> |
| | | <![CDATA[and a.ORDER_TIME <= #{record.endTimeVo}]]> |
| | | <![CDATA[and a.pay_time <= #{record.endTimeVo}]]> |
| | | </if> |
| | | |
| | | </if> |
| | |
| | | and a.SHOP_ID = #{record.shopId} |
| | | </if> |
| | | <if test="record.beginTimeVo != null "> |
| | | and a.ORDER_TIME >= #{record.beginTimeVo} |
| | | and a.pay_time >= #{record.beginTimeVo} |
| | | </if> |
| | | <if test="record.endTimeVo != null "> |
| | | <![CDATA[and a.ORDER_TIME <= #{record.endTimeVo}]]> |
| | | <![CDATA[and a.pay_time <= #{record.endTimeVo}]]> |
| | | </if> |
| | | </if> |
| | | </select> |
| | |
| | | </select> |
| | | </div> |
| | | <div class="form-group mr-20"> |
| | | <label>订单日期</label> |
| | | <label>付款日期</label> |
| | | <input autocomplete="off" name="beginTimeVo" type="text" class="form-control datetimepicker" id="beginTime">- |
| | | <input autocomplete="off" name="endTimeVo" type="text" class="form-control datetimepicker" id="endTime"> |
| | | </div> |
| | |
| | | <th data-field="vipPhone">客户手机号</th> |
| | | <th data-field="orderTime" data-formatter="MGrid.getTime" |
| | | data-sortable="true">下单时间</th> |
| | | <th data-field="payTime" data-formatter="MGrid.getTime" |
| | | data-sortable="true">支付时间</th> |
| | | <th data-field="statu">订单状态</th> |
| | | <th data-field="total">订单总价</th> |
| | | <th data-field="zkTotal">折后价</th> |
| | |
| | | url:basePath+"/admin/moneyCardUseStatistics/showList" |
| | | }); |
| | | }); |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/moneyCardUseStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | |
| | | url:basePath+"/admin/moneyCardUseStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/moneyCardUseStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/orderStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn? "+param; |
| | | window.location.href=basePath+"/admin/orderStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | |
| | | sortOrder:"desc" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/serviceStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/serviceStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/serviceStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/projUseStatistics/showList" |
| | | }); |
| | | }); |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/projUseStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | | function initFunctionList() { |
| | | $.AjaxProxy({ |
| | | a: false, |
| | | c: false, |
| | |
| | | url:basePath+"/admin/projUseStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/projUseStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/moneyCardUseStatistics/showList" |
| | | }); |
| | | }); |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/moneyCardUseStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | | |
| | | function initFunctionList() { |
| | | $.AjaxProxy({ |
| | | a: false, |
| | | c: false, |
| | |
| | | url:basePath+"/admin/moneyCardUseStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/moneyCardUseStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/orderStatistics/showList" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/orderStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/orderStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/projUseStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | function initFunctionList() { |
| | | $.AjaxProxy({ |
| | | a: false, |
| | |
| | | sortOrder:"desc" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/serviceStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |
| | |
| | | url:basePath+"/admin/serviceStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/serviceStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | function initFunctionList() { |
| | | $.AjaxProxy({ |
| | |
| | | url:basePath+"/admin/projUseStatistics/showList" |
| | | }); |
| | | }); |
| | | |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/projUseStatistics/exportShowList?"+param; |
| | | } |
| | | |
| | | |
| | | |
| | | function initFunctionList() { |
| | | $.AjaxProxy({ |
| | | a: false, |
| | |
| | | url:basePath+"/admin/projUseStatistics/summaryItemDetail" |
| | | }); |
| | | }); |
| | | |
| | | function exportExcel(){ |
| | | var select_begin = $("#select_begin").val(); |
| | | var select_end = $("#select_end").val(); |
| | | var select_id = $("#select_id").val(); |
| | | var goodsName = $("#goodsName").val(); |
| | | var guwen = $("#goodsName").val(); |
| | | window.location.href=basePath+"/form/furnsale/exportFurn?startTime="+select_begin+"&endTime="+select_end+"&goodsName="+goodsName+"&shopId="+select_id+"&guwen="+guwen; |
| | | } |
| | | |
| | | |
| | | function exportExcel(){ |
| | | var param=MForm.toUrlParam("#serchform"); |
| | | window.location.href=basePath+"/admin/projUseStatistics/exportSummaryItemDetail?"+param; |
| | | } |
| | | |
| | | |
| | | function initFunctionList() { |