ShipmentHeaderController.java 15.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
package com.huaheng.pc.shipment.shipmentHeader.controller;

import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.huaheng.common.redis.RedisUtils;
import com.huaheng.common.utils.DateUtils;
import com.huaheng.common.utils.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.huaheng.common.constant.QuantityConstant;
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.support.Convert;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.PageDomain;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.framework.web.page.TableSupport;
import com.huaheng.pc.config.company.domain.Company;
import com.huaheng.pc.config.company.service.CompanyService;
import com.huaheng.pc.config.warehouse.domain.WarehouseU8;
import com.huaheng.pc.config.warehouse.service.WarehouseU8Service;
import com.huaheng.pc.config.waveMaster.domain.WaveMaster;
import com.huaheng.pc.config.waveMaster.service.WaveMasterService;
import com.huaheng.pc.receipt.receiptDetail.domain.ReceiptDetail;
import com.huaheng.pc.receipt.receiptDetailHistory.domain.ReceiptDetailHistory;
import com.huaheng.pc.receipt.receiptHeader.domain.ReceiptHeader;
import com.huaheng.pc.receipt.receiptHeaderHistory.domain.ReceiptHeaderHistory;
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetail;
import com.huaheng.pc.shipment.shipmentDetail.service.ShipmentDetailService;
import com.huaheng.pc.shipment.shipmentDetailHistory.domain.ShipmentDetailHistory;
import com.huaheng.pc.shipment.shipmentDetailHistory.service.ShipmentDetailHistoryService;
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;
import com.huaheng.pc.shipment.shipmentHeader.service.ShipmentHeaderService;
import com.huaheng.pc.shipment.shipmentHeaderHistory.domain.ShipmentHeaderHistory;
import com.huaheng.pc.shipment.shipmentHeaderHistory.service.ShipmentHeaderHistoryService;
import io.swagger.annotations.ApiParam;
import org.apache.commons.collections.CollectionUtils;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;
import java.lang.reflect.InvocationTargetException;
import java.util.*;
import java.util.stream.Collectors;


/**
 * 出库单主 信息操作处理
 * 
 * @author huaheng
 * @date 2018-08-19
 */
@Controller
@RequestMapping("/shipment/shipmentHeader")
public class ShipmentHeaderController extends BaseController {
    private String prefix = "shipment/shipmentHeader";
	
	@Resource
	private ShipmentHeaderService shipmentHeaderService;
	@Resource
	private ShipmentDetailService shipmentDetailService;
	@Resource
	private WaveMasterService waveMasterService;
	@Resource
	private CompanyService companyService;
	@Resource
	private ShipmentHeaderHistoryService shipmentHeaderHistoryService;
	@Resource
	private ShipmentDetailHistoryService shipmentDetailHistoryService;
	@Resource
	private WarehouseU8Service warehouseU8Service;
	@Resource
	private RedisTemplate redisTemplate;

	private long totalSize=0L;
	
	@RequiresPermissions("shipment:bill:view")
	@GetMapping()
	public String shipmentHeader()
	{
	    return prefix + "/shipmentHeader";
	}
	
	/**
	 * 查询出库单主列表
	 */
	@RequiresPermissions("shipment:bill:list")
	@Log(title = "出库-出库单", operating="查看出库主单", action = BusinessType.GRANT)
	@PostMapping("/list")
	@ResponseBody
	public TableDataInfo list(ShipmentHeader shipmentHeader,String createdBegin, String createdEnd)
			throws Exception{
		LambdaQueryWrapper<ShipmentHeader> lambdaQueryWrapper = Wrappers.lambdaQuery();
		PageDomain pageDomain = TableSupport.buildPageRequest();
		Integer pageNum = pageDomain.getPageNum();
		Integer pageSize = pageDomain.getPageSize();
//		if(StringUtils.isEmpty(createdBegin)){
//			createdBegin= DateUtils.getNowPreDays("yyyy-MM-dd HH:mm:ss", 150);
//		}
//		if(StringUtils.isEmpty(createdEnd)){
//			createdEnd= DateUtils.getNowPreDays("yyyy-MM-dd HH:mm:ss", 0);
//		}
		lambdaQueryWrapper.ge(StringUtils.isNotEmpty(createdBegin),ShipmentHeader::getCreated, createdBegin)
				.le(StringUtils.isNotEmpty(createdEnd), ShipmentHeader::getCreated, createdEnd)
				.eq(ShipmentHeader::getWarehouseCode,ShiroUtils.getWarehouseCode())
				.eq(ShipmentHeader::getDeleted,false)
				.in(StringUtils.isNotEmpty(shipmentHeader.getCompanyCode()),ShipmentHeader::getCompanyCode, shipmentHeader.getCompanyCode())
//				.in(StringUtils.isEmpty(shipmentHeader.getCompanyCode()), ShipmentHeader::getCompanyCode, ShiroUtils.getCompanyCodeList())
				.eq(StringUtils.isNotEmpty(shipmentHeader.getCode()),ShipmentHeader::getCode,shipmentHeader.getCode())
				.eq(StringUtils.isNotEmpty(shipmentHeader.getShipmentType()),ShipmentHeader::getShipmentType,shipmentHeader.getShipmentType())
				.notIn(ShipmentHeader::getShipmentType,"OO")
				.notIn(ShiroUtils.getWarehouseCode().equals("KS0001"),ShipmentHeader::getLastStatus,QuantityConstant.SHIPMENT_HEADER_COMPLETED,QuantityConstant.SHIPMENT_HEADER_RETURN)
				.eq(StringUtils.isNotEmpty(shipmentHeader.getReferCode()), ShipmentHeader::getReferCode, shipmentHeader.getReferCode())
				.eq(StringUtils.isNotEmpty(shipmentHeader.getReferCodeType()), ShipmentHeader::getReferCodeType, shipmentHeader.getReferCodeType())
				.eq(shipmentHeader.getFirstStatus()!=null, ShipmentHeader::getFirstStatus, shipmentHeader.getFirstStatus())
				.eq(shipmentHeader.getLastStatus()!=null, ShipmentHeader::getLastStatus, shipmentHeader.getLastStatus())
				.eq(StringUtils.isNotNull(shipmentHeader.getKdEable()), ShipmentHeader::getKdEable, shipmentHeader.getKdEable())
				.eq(StringUtils.isNotEmpty(shipmentHeader.getCreatedBy()), ShipmentHeader::getCreatedBy, shipmentHeader.getCreatedBy())
				.eq(StringUtils.isNotEmpty(shipmentHeader.getUWarehouseCode()), ShipmentHeader::getUWarehouseCode,shipmentHeader.getUWarehouseCode())

				.orderByDesc(ShipmentHeader::getCreated);
		if (StringUtils.isNotEmpty(shipmentHeader.getMaterialCode())) {
			lambdaQueryWrapper.apply(" id in(select shipmentId from shipment_detail where materialCode ='" + shipmentHeader.getMaterialCode() + "' )");
		}
		lambdaQueryWrapper.select(ShipmentHeader::getId,ShipmentHeader::getShipmentType,
				ShipmentHeader::getCode,ShipmentHeader::getCompanyCode,ShipmentHeader::getCreated,
				ShipmentHeader::getBackMsg,ShipmentHeader::getCreatedBy,ShipmentHeader::getFirstStatus,
				ShipmentHeader::getLastStatus,ShipmentHeader::getTotalLines,ShipmentHeader::getTotalQty,
				ShipmentHeader::getUWarehouseCode,ShipmentHeader::getReferCode,ShipmentHeader::getCustomerCode,
				ShipmentHeader::getWarehouseCode,ShipmentHeader::getRemark);
		if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize)){
			Page<ShipmentHeader> page = new Page<>(pageNum, pageSize);
			IPage<ShipmentHeader> iPage = shipmentHeaderService.page(page, lambdaQueryWrapper);
			Iterator<ShipmentHeader> iterator = iPage.getRecords().iterator();
//			while (iterator.hasNext()){
//				ShipmentHeader s = iterator.next();
//				if(!StringUtils.isAnyEmpty(s.getUWarehouseCode(),s.getWarehouseCode(),s.getCompanyCode())){
//					WarehouseU8 warehouseU8 = warehouseU8Service.getOne(new LambdaQueryWrapper<WarehouseU8>()
//							.eq(WarehouseU8::getUWarehouseCode, s.getUWarehouseCode())
//							.eq(WarehouseU8::getWarehouseCode, s.getWarehouseCode())
//							.eq(WarehouseU8::getCompanyCode, s.getCompanyCode())
//							.last("limit 1")
//					);
//					if (warehouseU8 != null) {
//						s.setUWarehouseName(warehouseU8.getUWarehouseName());
//					}
//				}
//				if(StringUtils.isNotEmpty(shipmentHeader.getMaterialCode())){
//					List<ShipmentDetail> list = shipmentDetailService.list(new LambdaQueryWrapper<ShipmentDetail>().eq(ShipmentDetail::getShipmentId, s.getId()).eq(ShipmentDetail::getWarehouseCode, ShiroUtils.getWarehouseCode()));
//					if(CollectionUtils.isNotEmpty(list)){
//						List<String> materStrings = list.stream().map(l -> l.getMaterialCode()).collect(Collectors.toList());
//						if(!materStrings.contains(shipmentHeader.getMaterialCode())){
//							iterator.remove();
//						}
//					}
//				}
//			}
			return getMpDataTable(iPage.getRecords(),iPage.getTotal());
		} else {
			List<ShipmentHeader> list = shipmentHeaderService.list(lambdaQueryWrapper);
			return getDataTable(list);
		}
	}

	/**
	 * 新增出库单主
	 */
	@GetMapping("/add")
	public String add()
	{
	    return prefix + "/add";
	}
	
	/**
	 * 新增保存出库单主
	 */
	@RequiresPermissions("shipment:bill:add")
	@Log(title = "出库-出库单", operating="新增出库主单", action = BusinessType.INSERT)
	@PostMapping("/add")
	@ResponseBody
	public AjaxResult addSave(ShipmentHeader shipmentHeader)
	{
		AjaxResult ajaxResult=shipmentHeaderService.saveHeader(shipmentHeader);
		return ajaxResult;
	}

	/**
	 * 修改出库单主
	 */
	@GetMapping("/edit/{id}")
	public String edit(@PathVariable("id") Integer id, ModelMap mmap)
	{
		ShipmentHeader shipmentHeader = shipmentHeaderService.getById(id);
		mmap.put("shipmentHeader", shipmentHeader);
	    return prefix + "/edit";
	}

	/**
	 * 修改保存出库单主
	 */
	@RequiresPermissions("shipment:bill:edit")
	@Log(title = "出库-出库单", operating="修改出库主单", action = BusinessType.UPDATE)
	@PostMapping("/edit")
	@ResponseBody
	public AjaxResult editSave(ShipmentHeader shipmentHeader)
	{
		ShipmentHeader temp =  shipmentHeaderService.getById(shipmentHeader.getId());
		if(temp.getFirstStatus()>100){
			return AjaxResult.error("已经超过订单池状态,不能修改");
		}
		temp.setCompanyCode(shipmentHeader.getCompanyCode());
		temp.setReferCode(shipmentHeader.getReferCode());
		temp.setReferPlatform(shipmentHeader.getReferPlatform());
		temp.setCustomerCode(shipmentHeader.getCustomerCode());
		temp.setPriority(shipmentHeader.getPriority());
		temp.setLastUpdatedBy(ShiroUtils.getLoginName());
		temp.setLastUpdated(new Date());
		Company company=companyService.getCompanyByCode(temp.getCompanyCode(),temp.getWarehouseCode());
		if(company!=null){
			temp.setErpCompanyCode(company.getErpCompany());
		}
		//根据货主、u8仓库找到对应erp仓库code
		temp.setUWarehouseCode(shipmentHeader.getUWarehouseCode());
		String erpCode=warehouseU8Service.getWarehouseErpCode(temp.getWarehouseCode(),temp.getCompanyCode(),temp.getUWarehouseCode());
		temp.setErpWarehouseCode(erpCode);

//		List<ShipmentDetail> list = shipmentDetailService.list(new LambdaQueryWrapper<ShipmentDetail>().eq(ShipmentDetail::getShipmentId, temp.getId()));
//		list.forEach(l -> {
//			l.setCompanyCode(temp.getCompanyCode());
//			l.setUWarehouseCode(temp.getUWarehouseCode());
//			l.setErpWarehouseCode(erpCode);
//		});
//		if (list != null && list.size() > 0) {
//			shipmentDetailService.updateBatchById(list);
//		}
		//根据货主、u8仓库找到对应erp仓库code
		return toAjax(shipmentHeaderService.saveOrUpdate(temp));
	}

	/**
	 * 删除出库单主
	 */
	@RequiresPermissions("shipment:bill:remove")
	@Log(title = "出库-出库单", operating="删除出库主单", action = BusinessType.DELETE)
	@PostMapping( "/remove")
	@ResponseBody
	@Transactional
	public AjaxResult remove(String ids) throws InvocationTargetException, IllegalAccessException {
		if (StringUtils.isEmpty(ids)) {
			return AjaxResult.error("id不能为空");
		}
		return shipmentHeaderService.deleteHeaderAndDetail(ids,false);
	}

	/**
	 * 删除出库单主
	 */
	@RequiresPermissions("shipment:bill:removeVIP")
	@Log(title = "出库-出库单", operating="删除出库主单", action = BusinessType.DELETE)
	@PostMapping( "/removeVIP")
	@ResponseBody
	@Transactional
	public AjaxResult removeVIP(String ids) {
		if (StringUtils.isEmpty(ids)) {
			return AjaxResult.error("id不能为空");
		}
		return shipmentHeaderService.deleteHeaderAndDetail(ids,true);
	}


	/**
	 * 审核出库主单
	 */
	@RequiresPermissions("shipment:bill:edit")
	@Log(title = "出库-出库单", operating="审核出库主单", action = BusinessType.UPDATE)
	@PostMapping("/review")
	@ResponseBody
	public AjaxResult review(String ids)
	{
		if (StringUtils.isEmpty(ids)) {
			return AjaxResult.error("id不能为空");
		}
		return shipmentHeaderService.review(ids);
	}

	/**
	 *  出库单报表打印
	 * @return
	 */
	@RequiresPermissions("shipment:bill:report")
	@Log(title = "出库-出库单", operating="打印出库单报表", action = BusinessType.OTHER)
	@GetMapping("/report/{id}")
	public String report(@PathVariable("id") Integer id, ModelMap mmap)
	{
		ShipmentHeader shipmentHeader = shipmentHeaderService.getById(id);
		mmap.put("shipmentHeader", shipmentHeader);

		LambdaQueryWrapper<ShipmentDetail> lambdaQueryWrapper = Wrappers.lambdaQuery();
		lambdaQueryWrapper.eq(ShipmentDetail::getShipmentId,id)
				.eq(ShipmentDetail::getWarehouseCode,ShiroUtils.getWarehouseCode());
		List<ShipmentDetail> details = shipmentDetailService.list(lambdaQueryWrapper);
		mmap.put("details", details);

		return prefix + "/report";
	}

	@PostMapping("/getShipmentHeader")
	@ResponseBody
	public AjaxResult<ShipmentHeader> getShipmentHeader(int id){
		return AjaxResult.success(shipmentHeaderService.getById(id));
	}


	/**
	 * 订单分析
	 */
//	@RequiresPermissions("shipment:bill:edit")
//	@Log(title = "出库-出库单", operating="订单分析", action = BusinessType.OTHER)
//	@PostMapping( "/analysis")
//	@ResponseBody
//	@Transactional
//	public void analysis(String ids){
//		if (StringUtils.isEmpty(ids))
//			throw new ServiceException("id不能为空");
//		for (Integer id : Convert.toIntArray(ids))
//		{
//
//		}
//
//	}

	/**
	 * 加入波次
	 */
	@GetMapping("/wave")
	public String addZoneCode()
	{
		return prefix + "/addWave";
	}

	/**
	 * 查询波次列表
	 */
	@RequiresPermissions("shipment:bill:wave")
	@Log(title = "出库-出库单", operating = "查询库区列表", action = BusinessType.GRANT)
	@PostMapping("/waveList")
	@ResponseBody
	public TableDataInfo waveList()
	{
		LambdaQueryWrapper<WaveMaster> lam = Wrappers.lambdaQuery();
		lam.eq(WaveMaster::getWarehouseCode,ShiroUtils.getWarehouseCode());
		List<WaveMaster> waveMasters = waveMasterService.list(lam);
		return getDataTable(waveMasters);
	}



	/**
	 * 波次
	 */
	@RequiresPermissions("shipment:bill:wave")
	@Log(title = "出库-出库单", operating="波次", action = BusinessType.OTHER)
	@PostMapping( "/addWave")
	@ResponseBody
	@Transactional
	public AjaxResult analysis(String ids,String code){
		if (StringUtils.isEmpty(ids)) {
			throw new ServiceException("id不能为空");
		}
		if(StringUtils.isEmpty(code)){
			throw new ServiceException("波次不能为空");
		}

		shipmentDetailService.saveWave(ids,code);

		return AjaxResult.success("加入波次成功");
	}

	/**
	 *
	 */
	@PostMapping( "/backERP")
	@ResponseBody
	@Transactional
	public AjaxResult backERP(String id){
		if (StringUtils.isEmpty(id)) {
			return AjaxResult.error("id不能为空");
		}
		ShipmentHeader shipmentHeader = shipmentHeaderService.getById(id);
		if (shipmentHeader == null) {
			return AjaxResult.error("没有找到出库单");
		}
		shipmentHeader.setFirstStatus(QuantityConstant.SHIPMENT_HEADER_RETURN);
		shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_RETURN);
		shipmentHeaderService.updateById(shipmentHeader);
		return AjaxResult.success("回传成功");
	}

}