嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-bweb/src/main/java/com/bweb/controller/HighGasOilPriceController.java

181 lines
7.9 KiB

package com.bweb.controller;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.hai.common.exception.ErrorCode;
import com.hai.common.exception.ErrorHelp;
import com.hai.common.exception.SysCode;
import com.hai.common.utils.ResponseMsgUtil;
import com.hai.entity.*;
import com.hai.enum_type.MerchantStoreSourceType;
import com.hai.model.HighMerchantStoreModel;
import com.hai.model.ResponseData;
import com.hai.service.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.models.auth.In;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
@Controller
@RequestMapping(value = "/gasOilPrice")
@Api(value = "油品价格配置")
public class HighGasOilPriceController {
private static Logger log = LoggerFactory.getLogger(HighGasOilPriceController.class);
@Resource
private HighGasOilPriceService gasOilPriceService;
@Resource
private HighGasOilPriceOfficialService gasOilPriceOfficialService;
@Resource
private HighMerchantStoreService merchantStoreService;
@Resource
private CommonService commonService;
@RequestMapping(value="/editGasOilPrice",method = RequestMethod.POST)
@ResponseBody
@ApiOperation(value = "编辑油品价格")
public ResponseData editGasOilPrice(@RequestBody JSONObject body) {
try {
if (body.getLong("storeId") == null
|| body.getInteger("oilNo") == null
|| body.getBigDecimal("priceGun") == null
|| body.getBigDecimal("preferentialMargin") == null
) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","");
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, "");
}
// 查询门店详情
HighMerchantStoreModel store = merchantStoreService.getMerchantStoreById(body.getLong("storeId"));
if (store == null) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","未找到门店");
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到门店");
}
if (!store.getType().equals(1)) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","门店不是加油站");
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "门店不是加油站");
}
SecDictionary oilNo = commonService.mappingSysCode("GAS_OIL_TYPE", body.getString("oilNo"));
if (oilNo == null) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","未找到油品");
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到油品");
}
// 查询价格
HighGasOilPrice price = gasOilPriceService.getGasOilPriceByStoreAndOilNo(body.getLong("storeId"), Integer.valueOf(body.getString("oilNo")));
if (price == null) {
price = new HighGasOilPrice();
}
price.setMerchantStoreId(body.getLong("storeId"));
price.setOilNo(Integer.parseInt(oilNo.getCodeValue()));
price.setOilNoName(oilNo.getCodeName());
price.setPriceVip(body.getBigDecimal("priceGun").subtract(body.getBigDecimal("preferentialMargin")));
price.setPreferentialMargin(body.getBigDecimal("preferentialMargin"));
price.setPriceGun(body.getBigDecimal("priceGun"));
// 查询国标价格
HighGasOilPriceOfficial priceOfficial = gasOilPriceOfficialService.getPrice(store.getRegionId(), body.getInteger("oilNo"));
if (priceOfficial != null) {
price.setPriceOfficial(priceOfficial.getPriceOfficial());
}
price.setOilType(Integer.parseInt(oilNo.getExt1()));
price.setOilTypeName(oilNo.getExt2());
gasOilPriceService.editGasOilPrice(price);
return ResponseMsgUtil.success("操作成功");
} catch (Exception e) {
log.error("HighGasDiscountOilPriceController -> getGasDetailByStoreKey() error!",e);
return ResponseMsgUtil.exception(e);
}
}
@RequestMapping(value="/delOilPrice",method = RequestMethod.POST)
@ResponseBody
@ApiOperation(value = "删除油品价格")
public ResponseData delOilPrice(@RequestBody JSONObject body) {
try {
if (body.getLong("storeId") == null || StringUtils.isBlank(body.getString("oilNo")) ) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","");
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, "");
}
// 查询价格
HighGasOilPrice price = gasOilPriceService.getGasOilPriceByStoreAndOilNo(body.getLong("storeId"), Integer.valueOf(body.getString("oilNo")));
if (price == null) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","未找到油品价格");
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到油品价格");
}
price.setStatus(0);
gasOilPriceService.editGasOilPrice(price);
return ResponseMsgUtil.success("操作成功");
} catch (Exception e) {
log.error("HighGasDiscountOilPriceController -> getGasDetailByStoreKey() error!",e);
return ResponseMsgUtil.exception(e);
}
}
@RequestMapping(value="/getOilPriceDetail",method = RequestMethod.GET)
@ResponseBody
@ApiOperation(value = "查询油品价格详情")
public ResponseData getOilPriceDetail(@RequestParam(name = "storeId", required = true) Long storeId,
@RequestParam(name = "oilNo", required = true) Integer oilNo) {
try {
// 查询门店详情
HighMerchantStoreModel store = merchantStoreService.getMerchantStoreById(storeId);
if (store == null) {
log.error("HighGasDiscountOilPriceController -> editGasOilPrice() error!","未找到门店");
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到门店");
}
// 查询价格
HighGasOilPrice gasOilPrice = gasOilPriceService.getGasOilPriceByStoreAndOilNo(storeId, oilNo);
if (gasOilPrice == null) {
gasOilPrice = new HighGasOilPrice();
// 查询国标价格
HighGasOilPriceOfficial priceOfficial = gasOilPriceOfficialService.getPrice(store.getRegionId(), oilNo);
if (priceOfficial != null) {
gasOilPrice.setPriceOfficial(priceOfficial.getPriceOfficial());
}
}
return ResponseMsgUtil.success(gasOilPrice);
} catch (Exception e) {
log.error("HighGasDiscountOilPriceController -> getGasDetailByStoreKey() error!",e);
return ResponseMsgUtil.exception(e);
}
}
@RequestMapping(value="/getOilPriceListByStore",method = RequestMethod.GET)
@ResponseBody
@ApiOperation(value = "查询油品价格列表")
public ResponseData getOilPriceListByStore(@RequestParam(name = "storeId", required = true) Long storeId) {
try {
return ResponseMsgUtil.success(gasOilPriceService.getGasOilPriceByStore(storeId));
} catch (Exception e) {
log.error("HighGasDiscountOilPriceController -> getOilPriceListByStore() error!",e);
return ResponseMsgUtil.exception(e);
}
}
}