|
|
package com.agent.controller.agent;
|
|
|
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
import com.agent.controller.BasicController;
|
|
|
import com.agent.entity.Constant;
|
|
|
import com.agent.entity.agent.*;
|
|
|
import com.agent.entity.agent.BasicAgentEntity;
|
|
|
import com.agent.entity.agent.DeliveryInfoEntity;
|
|
|
import com.agent.entity.agent.ManifestEntity;
|
|
|
import com.agent.entity.agent.PackageSizeEntity;
|
|
|
import com.agent.entity.agent.PackageTypeEntity;
|
|
|
import com.agent.entity.agent.PubDgEntity;
|
|
|
import com.agent.entity.agent.SupervisionEntity;
|
|
|
import com.agent.entity.system.UserEntity;
|
|
|
import com.agent.imf.agent.redis.RedisSaveMessage;
|
|
|
import com.agent.service.agent.*;
|
|
|
import com.agent.service.agent.BasicAgentService;
|
|
|
import com.agent.service.agent.DeliveryDicService;
|
|
|
import com.agent.service.agent.DeliveryInfoService;
|
|
|
import com.agent.service.agent.ManifestService;
|
|
|
import com.agent.service.agent.PackageSizeService;
|
|
|
import com.agent.service.agent.PackageTypeService;
|
|
|
import com.agent.service.agent.PubDgService;
|
|
|
import com.agent.service.agent.SupervisionService;
|
|
|
import com.agent.util.HttpJsonMsg;
|
|
|
import com.agent.vo.ResponseModel;
|
|
|
import com.agent.vo.agent.DeliveryVo;
|
|
|
import com.agent.xml.XmlBuildTask;
|
|
|
import com.agent.xml.common.XmlUtil;
|
|
|
import com.agent.xml.deliveryInfo.ApplicableFreightRateServiceChargeXml;
|
|
|
import com.agent.xml.deliveryInfo.ArrivalEventXml;
|
...
|
...
|
@@ -47,640 +81,624 @@ import com.framework.core.Servlets; |
|
|
import com.framework.shiro.SessionUtil;
|
|
|
import com.plugin.easyui.DataGrid;
|
|
|
import com.plugin.easyui.EasyPage;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* Created by cohesion on 2017/3/29.
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping(value = "/delivery")
|
|
|
public class DeliveryInfoController extends BasicController{
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DeliveryInfoController.class);
|
|
|
|
|
|
/**
|
|
|
* 交运信息
|
|
|
*/
|
|
|
@Resource
|
|
|
private DeliveryInfoService deliveryInfoService;
|
|
|
|
|
|
/**
|
|
|
* 代理人
|
|
|
*/
|
|
|
@Resource
|
|
|
private BasicAgentService agentService;
|
|
|
|
|
|
@Resource
|
|
|
private SupervisionService supervisionService;
|
|
|
|
|
|
@Resource
|
|
|
private PubDgService dgService;
|
|
|
|
|
|
@Resource
|
|
|
private PackageTypeService packageTypeService;
|
|
|
|
|
|
@Resource
|
|
|
private PackageSizeService sizeService;
|
|
|
|
|
|
@Resource
|
|
|
private ManifestService manifestService;
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
private DeliveryDicService deliverydicservice;
|
|
|
|
|
|
/**
|
|
|
* 交运信息页面
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/list")
|
|
|
public String getList(){
|
|
|
return "delivery/list";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 交运信息分页数据
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value="/grid.json")
|
|
|
@ResponseBody
|
|
|
public DataGrid<DeliveryVo> grid(HttpServletRequest request,EasyPage<DeliveryInfoEntity> pageForm) throws ParseException {
|
|
|
Map<String, Object> searchParams = Servlets.getParametersStartingWith(request, "search_");
|
|
|
searchParams.put("EQ_isdelete", 0);
|
|
|
String deliveryDate =searchParams.get("GTE_deliveryDate").toString();
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
if(StringUtils.isNotEmpty(deliveryDate)){
|
|
|
searchParams.put("GTE_deliveryDate",dateFormat.parse(deliveryDate));
|
|
|
}
|
|
|
String deliveryDate1 =searchParams.get("LTE_deliveryDate").toString();
|
|
|
if(StringUtils.isNotEmpty(deliveryDate1)){
|
|
|
searchParams.put("LTE_deliveryDate",dateFormat.parse(deliveryDate1));
|
|
|
}
|
|
|
pageForm.setSearchParams(searchParams);
|
|
|
pageForm.parseData(deliveryInfoService.getPage(pageForm));
|
|
|
return transferData(pageForm);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 编辑
|
|
|
* @param id
|
|
|
* @param model
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/edit" , method = {RequestMethod.GET })
|
|
|
public String edit(Long id, Model model) {
|
|
|
DeliveryInfoEntity deliveryInfo = null;
|
|
|
if(id!=null){
|
|
|
deliveryInfo = deliveryInfoService.findOne(id);
|
|
|
}
|
|
|
|
|
|
model.addAttribute("delivery", deliveryInfo);
|
|
|
UserEntity user = SessionUtil.getUser();
|
|
|
if(user!=null && user.getAgent()!=null){
|
|
|
BasicAgentEntity agent = agentService.findOne(user.getAgent());
|
|
|
model.addAttribute("userAgent",agent);
|
|
|
}
|
|
|
|
|
|
//品名代码
|
|
|
// List<DeliveryDicEntity> good = deliverydicservice.findGood();
|
|
|
// model.addAttribute("good",good);
|
|
|
|
|
|
//监管代码
|
|
|
List<SupervisionEntity> supervisionList = supervisionService.findAll();
|
|
|
model.addAttribute("supervisionList",supervisionList);
|
|
|
|
|
|
//危险品代码
|
|
|
List<PubDgEntity> dgList = dgService.findAll();
|
|
|
model.addAttribute("dgList",dgList);
|
|
|
|
|
|
//包装种类
|
|
|
List<PackageTypeEntity> typeList = packageTypeService.findAll();
|
|
|
model.addAttribute("typeList",typeList);
|
|
|
return "delivery/edit";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取包装类型
|
|
|
*
|
|
|
* @param hostId
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/size/get" , method = {RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public String getSize(Long hostId) {
|
|
|
return JSON.toJSONString(sizeService.getList(Constant.packageSizeDelivery, hostId),filter);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 保存
|
|
|
* @param deliveryJson
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/save" , method = {RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel save(String deliveryJson,String sizeJson) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
DeliveryInfoEntity delivery = JSONObject.parseObject(deliveryJson,DeliveryInfoEntity.class);
|
|
|
List<PackageSizeEntity> sizeList = JSONArray.parseArray(sizeJson,PackageSizeEntity.class);
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.save(delivery,sizeList);
|
|
|
model.setData(deliveryInfo.getId());
|
|
|
model.setStatus(200);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 保存并且发送
|
|
|
* @param deliveryJson
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/sendXml" , method = {RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel sendXml(String deliveryJson,String sizeJson,HttpServletRequest request) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
DeliveryInfoEntity delivery = JSONObject.parseObject(deliveryJson,DeliveryInfoEntity.class);
|
|
|
delivery.setIsdelete(1);
|
|
|
List<PackageSizeEntity> sizeList = JSONArray.parseArray(sizeJson,PackageSizeEntity.class);
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.save(delivery,sizeList);
|
|
|
|
|
|
//生成报文并且发送
|
|
|
String rootPath = request.getSession().getServletContext().getRealPath("/");
|
|
|
String path = rootPath+"/excel/manifest"+new Date().getTime()+".xml";
|
|
|
String xml = XmlUtil.convertToXml2(deliveryInfoService.deliveryXml(delivery), path);
|
|
|
//发送redis储存数据
|
|
|
System.out.println(xml);
|
|
|
new RedisSaveMessage().saveMessage(xml);
|
|
|
model.setData(deliveryInfo.getId());
|
|
|
model.setStatus(200);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 查询主单号是否存在
|
|
|
*
|
|
|
* @param mawbNo
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/queryMawbNo",method = {RequestMethod.POST})
|
|
|
@ResponseBody
|
|
|
public ResponseModel queryMawbId(Long id,String mawbNo){
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
List<DeliveryInfoEntity> list = null;
|
|
|
if(StringUtils.isNotEmpty(mawbNo)){
|
|
|
list = deliveryInfoService.findByMawbNo(mawbNo);
|
|
|
}
|
|
|
boolean exist = false;
|
|
|
if(CollectionUtils.isNotEmpty(list)){
|
|
|
if(list.size()>1){
|
|
|
exist = true;
|
|
|
}else if(!list.get(0).getId().equals(id)) {
|
|
|
exist = true;
|
|
|
}
|
|
|
}
|
|
|
if(exist){
|
|
|
model.setStatus(500);
|
|
|
}
|
|
|
else {
|
|
|
model.setStatus(200);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 删除
|
|
|
* @param ids
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/delete" , method = {RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel delete(String ids) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
deliveryInfoService.deleteAll(ids);
|
|
|
model.setStatus(200);
|
|
|
model.setMsg(HttpJsonMsg.SUCCESS);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
model.setMsg(HttpJsonMsg.ERROR);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
private DataGrid<DeliveryVo> transferData(EasyPage<DeliveryInfoEntity> pageForm){
|
|
|
DataGrid<DeliveryInfoEntity> list = pageForm.getData();
|
|
|
List<DeliveryVo> rows = new ArrayList<>();
|
|
|
if(CollectionUtils.isNotEmpty(list.getRows())){
|
|
|
for(DeliveryInfoEntity entity:list.getRows()){
|
|
|
DeliveryVo vo = new DeliveryVo();
|
|
|
vo.setId(entity.getId());
|
|
|
vo.setSupplier(entity.getSupplier());
|
|
|
vo.setMawbNo(entity.getMawbNo());
|
|
|
vo.setDestination(entity.getDestination());
|
|
|
vo.setGoodsName(entity.getGoodsName());
|
|
|
vo.setCbm(entity.getCbm());
|
|
|
vo.setWeight(entity.getWeight());
|
|
|
vo.setScheduledFlight(entity.getScheduledFlight());
|
|
|
if(entity.getAgent()!=null){
|
|
|
BasicAgentEntity agent = agentService.findOne(entity.getAgent());
|
|
|
if(agent!=null){
|
|
|
vo.setAgent(agent.getNameCn());
|
|
|
}
|
|
|
}
|
|
|
if(entity.getSendDate()!=null){
|
|
|
vo.setSendDate(Constant.dateFormat.format(entity.getSendDate()));
|
|
|
}
|
|
|
rows.add(vo);
|
|
|
}
|
|
|
}
|
|
|
DataGrid<DeliveryVo> vos = new DataGrid<>();
|
|
|
vos.setRows(rows);
|
|
|
vos.setTotal(list.getTotal());
|
|
|
return vos;
|
|
|
}
|
|
|
|
|
|
//发送报文
|
|
|
@RequestMapping(value = "/xml",method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
public ResponseModel createXml(Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
String rootPath = request.getSession().getServletContext().getRealPath("/");
|
|
|
String path = rootPath+"/excel/delivery"+new Date().getTime()+".xml";
|
|
|
String xml = "";
|
|
|
if(id!=null){
|
|
|
xml = beanToXml(path,id);
|
|
|
}
|
|
|
model.setData(xml);
|
|
|
return model;
|
|
|
}
|
|
|
public class DeliveryInfoController extends BasicController {
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DeliveryInfoController.class);
|
|
|
|
|
|
/**
|
|
|
* 交运信息
|
|
|
*/
|
|
|
@Resource
|
|
|
private DeliveryInfoService deliveryInfoService;
|
|
|
|
|
|
/**
|
|
|
* 代理人
|
|
|
*/
|
|
|
@Resource
|
|
|
private BasicAgentService agentService;
|
|
|
|
|
|
@Resource
|
|
|
private SupervisionService supervisionService;
|
|
|
|
|
|
@Resource
|
|
|
private PubDgService dgService;
|
|
|
|
|
|
@Resource
|
|
|
private PackageTypeService packageTypeService;
|
|
|
|
|
|
@Resource
|
|
|
private PackageSizeService sizeService;
|
|
|
|
|
|
@Resource
|
|
|
private ManifestService manifestService;
|
|
|
|
|
|
@Resource
|
|
|
private DeliveryDicService deliverydicservice;
|
|
|
|
|
|
/**
|
|
|
* 交运信息页面
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/list")
|
|
|
public String getList() {
|
|
|
return "delivery/list";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 交运信息分页数据
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/grid.json")
|
|
|
@ResponseBody
|
|
|
public DataGrid<DeliveryVo> grid(HttpServletRequest request, EasyPage<DeliveryInfoEntity> pageForm)
|
|
|
throws ParseException {
|
|
|
Map<String, Object> searchParams = Servlets.getParametersStartingWith(request, "search_");
|
|
|
searchParams.put("EQ_isdelete", 0);
|
|
|
String deliveryDate = searchParams.get("GTE_deliveryDate").toString();
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
if (StringUtils.isNotEmpty(deliveryDate)) {
|
|
|
searchParams.put("GTE_deliveryDate", dateFormat.parse(deliveryDate));
|
|
|
}
|
|
|
String deliveryDate1 = searchParams.get("LTE_deliveryDate").toString();
|
|
|
if (StringUtils.isNotEmpty(deliveryDate1)) {
|
|
|
searchParams.put("LTE_deliveryDate", dateFormat.parse(deliveryDate1));
|
|
|
}
|
|
|
pageForm.setSearchParams(searchParams);
|
|
|
pageForm.parseData(deliveryInfoService.getPage(pageForm));
|
|
|
return transferData(pageForm);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 编辑
|
|
|
*
|
|
|
* @param id
|
|
|
* @param model
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/edit", method = { RequestMethod.GET })
|
|
|
public String edit(Long id, Model model) {
|
|
|
DeliveryInfoEntity deliveryInfo = null;
|
|
|
if (id != null) {
|
|
|
deliveryInfo = deliveryInfoService.findOne(id);
|
|
|
}
|
|
|
|
|
|
model.addAttribute("delivery", deliveryInfo);
|
|
|
UserEntity user = SessionUtil.getUser();
|
|
|
if (user != null && user.getAgent() != null) {
|
|
|
BasicAgentEntity agent = agentService.findOne(user.getAgent());
|
|
|
model.addAttribute("userAgent", agent);
|
|
|
}
|
|
|
|
|
|
// 品名代码
|
|
|
// List<DeliveryDicEntity> good = deliverydicservice.findGood();
|
|
|
// model.addAttribute("good",good);
|
|
|
|
|
|
// 监管代码
|
|
|
List<SupervisionEntity> supervisionList = supervisionService.findAll();
|
|
|
model.addAttribute("supervisionList", supervisionList);
|
|
|
|
|
|
// 危险品代码
|
|
|
List<PubDgEntity> dgList = dgService.findAll();
|
|
|
model.addAttribute("dgList", dgList);
|
|
|
|
|
|
// 包装种类
|
|
|
List<PackageTypeEntity> typeList = packageTypeService.findAll();
|
|
|
model.addAttribute("typeList", typeList);
|
|
|
return "delivery/edit";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取包装类型
|
|
|
*
|
|
|
* @param hostId
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/size/get", method = { RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public String getSize(Long hostId) {
|
|
|
return JSON.toJSONString(sizeService.getList(Constant.packageSizeDelivery, hostId), filter);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 保存
|
|
|
*
|
|
|
* @param deliveryJson
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/save", method = { RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel save(String deliveryJson, String sizeJson) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
DeliveryInfoEntity delivery = JSONObject.parseObject(deliveryJson, DeliveryInfoEntity.class);
|
|
|
List<PackageSizeEntity> sizeList = JSONArray.parseArray(sizeJson, PackageSizeEntity.class);
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.save(delivery, sizeList);
|
|
|
model.setData(deliveryInfo.getId());
|
|
|
model.setStatus(200);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 保存并且发送
|
|
|
*
|
|
|
* @param deliveryJson
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/sendXml", method = { RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel sendXml(String deliveryJson, String sizeJson, HttpServletRequest request) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
DeliveryInfoEntity delivery = JSONObject.parseObject(deliveryJson, DeliveryInfoEntity.class);
|
|
|
delivery.setIsdelete(1);
|
|
|
List<PackageSizeEntity> sizeList = JSONArray.parseArray(sizeJson, PackageSizeEntity.class);
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.save(delivery, sizeList);
|
|
|
|
|
|
// 生成报文并且发送
|
|
|
String rootPath = request.getSession().getServletContext().getRealPath("/");
|
|
|
String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";
|
|
|
new XmlBuildTask(deliveryInfoService.deliveryXml(delivery), path).perform();
|
|
|
|
|
|
// String xml = XmlUtil.convertToXml2(deliveryInfoService.deliveryXml(delivery),
|
|
|
// path);
|
|
|
// new XmlSendTask().saveMessage(xml);
|
|
|
|
|
|
model.setData(deliveryInfo.getId());
|
|
|
model.setStatus(200);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 查询主单号是否存在
|
|
|
*
|
|
|
* @param mawbNo
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/queryMawbNo", method = { RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel queryMawbId(Long id, String mawbNo) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
List<DeliveryInfoEntity> list = null;
|
|
|
if (StringUtils.isNotEmpty(mawbNo)) {
|
|
|
list = deliveryInfoService.findByMawbNo(mawbNo);
|
|
|
}
|
|
|
boolean exist = false;
|
|
|
if (CollectionUtils.isNotEmpty(list)) {
|
|
|
if (list.size() > 1) {
|
|
|
exist = true;
|
|
|
} else if (!list.get(0).getId().equals(id)) {
|
|
|
exist = true;
|
|
|
}
|
|
|
}
|
|
|
if (exist) {
|
|
|
model.setStatus(500);
|
|
|
} else {
|
|
|
model.setStatus(200);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 删除
|
|
|
*
|
|
|
* @param ids
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/delete", method = { RequestMethod.POST })
|
|
|
@ResponseBody
|
|
|
public ResponseModel delete(String ids) {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
try {
|
|
|
deliveryInfoService.deleteAll(ids);
|
|
|
model.setStatus(200);
|
|
|
model.setMsg(HttpJsonMsg.SUCCESS);
|
|
|
} catch (Exception e) {
|
|
|
model.setStatus(500);
|
|
|
model.setMsg(HttpJsonMsg.ERROR);
|
|
|
logger.error("系统异常 >>", e);
|
|
|
}
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
private DataGrid<DeliveryVo> transferData(EasyPage<DeliveryInfoEntity> pageForm) {
|
|
|
DataGrid<DeliveryInfoEntity> list = pageForm.getData();
|
|
|
List<DeliveryVo> rows = new ArrayList<>();
|
|
|
if (CollectionUtils.isNotEmpty(list.getRows())) {
|
|
|
for (DeliveryInfoEntity entity : list.getRows()) {
|
|
|
DeliveryVo vo = new DeliveryVo();
|
|
|
vo.setId(entity.getId());
|
|
|
vo.setSupplier(entity.getSupplier());
|
|
|
vo.setMawbNo(entity.getMawbNo());
|
|
|
vo.setDestination(entity.getDestination());
|
|
|
vo.setGoodsName(entity.getGoodsName());
|
|
|
vo.setCbm(entity.getCbm());
|
|
|
vo.setWeight(entity.getWeight());
|
|
|
vo.setScheduledFlight(entity.getScheduledFlight());
|
|
|
if (entity.getAgent() != null) {
|
|
|
BasicAgentEntity agent = agentService.findOne(entity.getAgent());
|
|
|
if (agent != null) {
|
|
|
vo.setAgent(agent.getNameCn());
|
|
|
}
|
|
|
}
|
|
|
if (entity.getSendDate() != null) {
|
|
|
vo.setSendDate(Constant.dateFormat.format(entity.getSendDate()));
|
|
|
}
|
|
|
rows.add(vo);
|
|
|
}
|
|
|
}
|
|
|
DataGrid<DeliveryVo> vos = new DataGrid<>();
|
|
|
vos.setRows(rows);
|
|
|
vos.setTotal(list.getTotal());
|
|
|
return vos;
|
|
|
}
|
|
|
|
|
|
// 发送报文
|
|
|
@RequestMapping(value = "/xml", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
public ResponseModel createXml(Long id, HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
|
ResponseModel model = new ResponseModel();
|
|
|
String rootPath = request.getSession().getServletContext().getRealPath("/");
|
|
|
String path = rootPath + "/excel/delivery" + new Date().getTime() + ".xml";
|
|
|
String xml = "";
|
|
|
if (id != null) {
|
|
|
xml = beanToXml(path, id);
|
|
|
}
|
|
|
model.setData(xml);
|
|
|
return model;
|
|
|
}
|
|
|
|
|
|
private String beanToXml(String path, Long id) {
|
|
|
//获取表中信息
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.findOne(id);
|
|
|
//创建xml
|
|
|
DeliveryInfoMasterConsignmentXml mas = new DeliveryInfoMasterConsignmentXml();
|
|
|
mas.setId(deliveryInfo.getMawbNo());
|
|
|
mas.setNilcarriagevalueindicator("true");
|
|
|
mas.setDeclaredvalueforcarriageamount(deliveryInfo.getDeclaredvalueforcarriageamount());
|
|
|
|
|
|
mas.setNilcustomsvalueindicator("true");
|
|
|
mas.setDeclaredvalueforcustomsamount(deliveryInfo.getDeclaredvalueforcustomsamount());
|
|
|
|
|
|
mas.setNilinsurancevalueindicator("true");
|
|
|
mas.setInsurancevalueamount(deliveryInfo.getInsurancevalueamount());
|
|
|
|
|
|
mas.setTotalchargeprepaidindicator("true");
|
|
|
mas.setTotaldisbursementprepaidindicator("true");
|
|
|
mas.setIncludedtaregrossweightmeasure(deliveryInfo.getWeight());
|
|
|
mas.setNetweightmeasure(deliveryInfo.getRecheckWeight());
|
|
|
mas.setGrossvolumemeasure(deliveryInfo.getCbm());;
|
|
|
mas.setTotalpiecequantity(deliveryInfo.getRecheckPieces());
|
|
|
|
|
|
//发货人
|
|
|
DeliveryInfoConsignorPartyXML deli = new DeliveryInfoConsignorPartyXML();
|
|
|
deli.setName(deliveryInfo.getC_name());
|
|
|
deli.setLegalid(deliveryInfo.getC_legalid());
|
|
|
deli.setAccountid(deliveryInfo.getC_accountid());
|
|
|
//发货人地址
|
|
|
PostalStructuredAddressXml pos = new PostalStructuredAddressXml();
|
|
|
pos.setPostcodeCode(deliveryInfo.getC_postcodecode());
|
|
|
pos.setStreetName(deliveryInfo.getC_streetname());
|
|
|
pos.setCityName(deliveryInfo.getC_cityname());
|
|
|
pos.setCountryID(deliveryInfo.getC_countryid());
|
|
|
pos.setCountryName(deliveryInfo.getC_countryname());
|
|
|
pos.setCountrySubDivisionName(deliveryInfo.getC_countrysubdivisionname());
|
|
|
pos.setPostOfficeBox(deliveryInfo.getC_postofficebox());
|
|
|
pos.setCityID(deliveryInfo.getC_partycityid());
|
|
|
pos.setCountrySubDivisionID(deliveryInfo.getC_countrysubdivisionid());
|
|
|
deli.setPostalstructuredaddress(pos);
|
|
|
//发货人电话
|
|
|
DefinedTradeContactXml def = new DefinedTradeContactXml();
|
|
|
def.setPersonname(deliveryInfo.getC_personname());
|
|
|
def.setDepartmentname(deliveryInfo.getC_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml die = new DirectTelephoneCommunicationXml();
|
|
|
die.setCompleteNumber(deliveryInfo.getC_number());
|
|
|
def.setDirecttelephonecommunication(die);
|
|
|
|
|
|
FaxCommunicationxML fax = new FaxCommunicationxML();
|
|
|
fax.setCompletenumber(deliveryInfo.getC_completenumber());
|
|
|
def.setFaxcommunication(fax);
|
|
|
|
|
|
URIEmailCommunicationXML uri = new URIEmailCommunicationXML();
|
|
|
uri.setUriid(deliveryInfo.getC_uriid());
|
|
|
def.setUriemailcommunication(uri);
|
|
|
|
|
|
TelexCommunicationXml tel = new TelexCommunicationXml();
|
|
|
tel.setCompleteNumber(deliveryInfo.getC_completenumbers());
|
|
|
def.setTelexcommunication(tel);
|
|
|
|
|
|
deli.setDefinedtradecontact(def);
|
|
|
mas.setConsignorparty(deli);
|
|
|
|
|
|
//收货人
|
|
|
DeliveryInfoConsigneePartyXml del = new DeliveryInfoConsigneePartyXml();
|
|
|
del.setName(deliveryInfo.getS_name());
|
|
|
del.setLegalid(deliveryInfo.getS_legalid());
|
|
|
del.setAccountid(deliveryInfo.getS_accountid());
|
|
|
//地址
|
|
|
PostalStructuredAddressXml poss = new PostalStructuredAddressXml();
|
|
|
poss.setPostcodeCode(deliveryInfo.getS_postcodecode());
|
|
|
poss.setStreetName(deliveryInfo.getS_streetname());
|
|
|
poss.setCityName(deliveryInfo.getS_cityname());
|
|
|
poss.setCountryID(deliveryInfo.getS_countryid());
|
|
|
poss.setCountryName(deliveryInfo.getS_countryname());
|
|
|
poss.setCountrySubDivisionName(deliveryInfo.getS_countrysubdivisionname());
|
|
|
poss.setPostOfficeBox(deliveryInfo.getS_postofficebox());
|
|
|
poss.setCityID(deliveryInfo.getS_partycityid());
|
|
|
poss.setCountrySubDivisionID(deliveryInfo.getS_countrysubdivisionid());
|
|
|
del.setPostalstructuredaddress(poss);
|
|
|
|
|
|
//电话
|
|
|
DefinedTradeContactXml deff = new DefinedTradeContactXml();
|
|
|
deff.setPersonname(deliveryInfo.getS_personname());
|
|
|
deff.setDepartmentname(deliveryInfo.getC_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml diee = new DirectTelephoneCommunicationXml();
|
|
|
diee.setCompleteNumber(deliveryInfo.getS_number());
|
|
|
deff.setDirecttelephonecommunication(diee);
|
|
|
|
|
|
FaxCommunicationxML faxx = new FaxCommunicationxML();
|
|
|
faxx.setCompletenumber(deliveryInfo.getS_completenumber());
|
|
|
deff.setFaxcommunication(faxx);
|
|
|
|
|
|
URIEmailCommunicationXML urii = new URIEmailCommunicationXML();
|
|
|
urii.setUriid(deliveryInfo.getS_uriid());
|
|
|
deff.setUriemailcommunication(urii);
|
|
|
|
|
|
TelexCommunicationXml tell = new TelexCommunicationXml();
|
|
|
tell.setCompleteNumber(deliveryInfo.getS_completenumbers());
|
|
|
deff.setTelexcommunication(tell);
|
|
|
|
|
|
del.setDefinedtradecontact(deff);
|
|
|
mas.setConsigneeparty(del);
|
|
|
|
|
|
//填开代理人
|
|
|
DeliveryInfoFreightForwarderPartyXml defr = new DeliveryInfoFreightForwarderPartyXml();
|
|
|
defr.setName(deliveryInfo.getF_name());
|
|
|
defr.setLegalid(deliveryInfo.getF_legalid());
|
|
|
defr.setAccountid(deliveryInfo.getF_accountid());
|
|
|
//地址
|
|
|
PostalStructuredAddressXml stru = new PostalStructuredAddressXml();
|
|
|
stru.setPostcodeCode(deliveryInfo.getF_postcodecode());
|
|
|
stru.setStreetName(deliveryInfo.getF_streetname());
|
|
|
stru.setCityName(deliveryInfo.getF_cityname());
|
|
|
stru.setCountryID(deliveryInfo.getF_countryid());
|
|
|
stru.setCountryName(deliveryInfo.getF_countryname());
|
|
|
stru.setCountrySubDivisionName(deliveryInfo.getF_countrysubdivisionname());
|
|
|
stru.setPostOfficeBox(deliveryInfo.getF_postofficebox());
|
|
|
stru.setCityID(deliveryInfo.getF_cityid());
|
|
|
stru.setCountrySubDivisionID(deliveryInfo.getF_countrysubdivisionid());
|
|
|
defr.setPostalstructuredaddress(stru);
|
|
|
|
|
|
//电话
|
|
|
DefinedTradeContactXml detf = new DefinedTradeContactXml();
|
|
|
detf.setPersonname(deliveryInfo.getF_personname());
|
|
|
detf.setDepartmentname(deliveryInfo.getF_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml dieef = new DirectTelephoneCommunicationXml();
|
|
|
dieef.setCompleteNumber(deliveryInfo.getF_number());
|
|
|
detf.setDirecttelephonecommunication(dieef);
|
|
|
|
|
|
FaxCommunicationxML faxxf = new FaxCommunicationxML();
|
|
|
faxxf.setCompletenumber(deliveryInfo.getF_completenumber());
|
|
|
detf.setFaxcommunication(faxxf);
|
|
|
|
|
|
URIEmailCommunicationXML uriif = new URIEmailCommunicationXML();
|
|
|
uriif.setUriid(deliveryInfo.getF_uriid());
|
|
|
detf.setUriemailcommunication(uriif);
|
|
|
|
|
|
TelexCommunicationXml tellf = new TelexCommunicationXml();
|
|
|
tellf.setCompleteNumber(deliveryInfo.getF_completenumbers());
|
|
|
detf.setTelexcommunication(tellf);
|
|
|
|
|
|
defr.setDefinedtradecontact(detf);
|
|
|
mas.setFreightforwarderparty(defr);
|
|
|
|
|
|
//其他代理人
|
|
|
DeliveryInfoAssociatedPartyXml deliin = new DeliveryInfoAssociatedPartyXml();
|
|
|
deliin.setName(deliveryInfo.getA_name());
|
|
|
deliin.setLegalid(deliveryInfo.getA_legalid());
|
|
|
deliin.setAccountid(deliveryInfo.getA_accountid());
|
|
|
//地址
|
|
|
PostalStructuredAddressXml struip = new PostalStructuredAddressXml();
|
|
|
struip.setPostcodeCode(deliveryInfo.getP_postcodecode());
|
|
|
struip.setStreetName(deliveryInfo.getP_streetname());
|
|
|
struip.setCityName(deliveryInfo.getP_cityname());
|
|
|
struip.setCountryID(deliveryInfo.getP_countryid());
|
|
|
struip.setCountryName(deliveryInfo.getP_countryname());
|
|
|
struip.setCountrySubDivisionName(deliveryInfo.getP_countrysubdivisionname());
|
|
|
struip.setPostOfficeBox(deliveryInfo.getP_postofficebox());
|
|
|
struip.setCityID(deliveryInfo.getP_cityid());
|
|
|
struip.setCountrySubDivisionID(deliveryInfo.getP_countrysubdivisionid());
|
|
|
deliin.setPostalstructuredaddress(stru);
|
|
|
|
|
|
//电话
|
|
|
DefinedTradeContactXml detfip = new DefinedTradeContactXml();
|
|
|
detfip.setPersonname(deliveryInfo.getP_personname());
|
|
|
detfip.setDepartmentname(deliveryInfo.getP_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml dieefip = new DirectTelephoneCommunicationXml();
|
|
|
dieefip.setCompleteNumber(deliveryInfo.getP_number());
|
|
|
detfip.setDirecttelephonecommunication(dieefip);
|
|
|
|
|
|
FaxCommunicationxML faxxfip = new FaxCommunicationxML();
|
|
|
faxxfip.setCompletenumber(deliveryInfo.getP_completenumber());
|
|
|
detfip.setFaxcommunication(faxxfip);
|
|
|
|
|
|
URIEmailCommunicationXML uriifip = new URIEmailCommunicationXML();
|
|
|
uriifip.setUriid(deliveryInfo.getP_uriid());
|
|
|
detfip.setUriemailcommunication(uriifip);
|
|
|
|
|
|
TelexCommunicationXml tellfip = new TelexCommunicationXml();
|
|
|
tellfip.setCompleteNumber(deliveryInfo.getP_completenumbers());
|
|
|
detfip.setTelexcommunication(tellfip);
|
|
|
|
|
|
deliin.setDefinedtradecontact(detfip);
|
|
|
mas.setAssociatedparty(deliin);
|
|
|
|
|
|
//实发站
|
|
|
OriginLocationXml ori = new OriginLocationXml();
|
|
|
ori.setId(deliveryInfo.getOriginlocationid());
|
|
|
ori.setName(deliveryInfo.getOriginlocationname());
|
|
|
mas.setOriginlocation(ori);
|
|
|
|
|
|
//目的站
|
|
|
FinalDestinationLocationXml fina = new FinalDestinationLocationXml();
|
|
|
fina.setId(deliveryInfo.getFinaldestinationlocationid());
|
|
|
fina.setName(deliveryInfo.getFinaldestinationlocationname());
|
|
|
mas.setFinaldestinationlocation(fina);
|
|
|
|
|
|
//订仓信息
|
|
|
SpecifiedLogisticsTransportMovementXml spec = new SpecifiedLogisticsTransportMovementXml();
|
|
|
spec.setStagecode(deliveryInfo.getStagecode());
|
|
|
spec.setModecode(deliveryInfo.getModecode());
|
|
|
spec.setMode(deliveryInfo.getM_mode());
|
|
|
spec.setId(deliveryInfo.getM_id());
|
|
|
|
|
|
UsedLogisticsTransportMeansXml used = new UsedLogisticsTransportMeansXml();
|
|
|
used.setName(deliveryInfo.getM_name());
|
|
|
spec.setUsedlogisticstransportmeans(used);
|
|
|
|
|
|
|
|
|
ArrivalEventXml arrivalevent = new ArrivalEventXml();
|
|
|
arrivalevent.setScheduledoccurrencedatetime(deliveryInfo.getSc_datetime().toString());
|
|
|
|
|
|
OccurrenceArrivalLocationXml occ = new OccurrenceArrivalLocationXml();
|
|
|
occ.setId(deliveryInfo.getSc_id());
|
|
|
occ.setName(deliveryInfo.getSc_name());
|
|
|
occ.setTypecode(deliveryInfo.getSc_typecode());
|
|
|
arrivalevent.setOccurrencearrivallocation(occ);
|
|
|
spec.setArrivalevent(arrivalevent);
|
|
|
|
|
|
DepartureEventXml departureevent = new DepartureEventXml();
|
|
|
departureevent.setScheduledoccurrencedatetime(deliveryInfo.getSo_datetime().toString());
|
|
|
|
|
|
OccurrenceDepartureLocationXml ocu = new OccurrenceDepartureLocationXml();
|
|
|
ocu.setId(deliveryInfo.getSc_id());
|
|
|
ocu.setName(deliveryInfo.getSc_name());
|
|
|
ocu.setTypecode(deliveryInfo.getSc_typecode());
|
|
|
|
|
|
departureevent.setOccurrencedeparturelocation(ocu);
|
|
|
spec.setDepartureevent(departureevent);
|
|
|
|
|
|
spec.setSequencenumeric("1");
|
|
|
mas.setSpecifiedlogisticstransportmovement(spec);
|
|
|
|
|
|
//处理说明
|
|
|
HandlingInstructionsXml hand = new HandlingInstructionsXml();
|
|
|
hand.setDescription(deliveryInfo.getSeq2_description());
|
|
|
hand.setDescriptioncode(deliveryInfo.getSeq2_descriptioncode());
|
|
|
mas.setHandlinginstructions(hand);
|
|
|
|
|
|
//相关文件
|
|
|
AssociatedReferenceDocumentXml ass = new AssociatedReferenceDocumentXml();
|
|
|
ass.setId(deliveryInfo.getAss_id());
|
|
|
ass.setIssuedatetime(deliveryInfo.getAss_issuedatetime().toString());
|
|
|
ass.setTypecode(deliveryInfo.getAss_typecode());
|
|
|
ass.setName(deliveryInfo.getAss_name());
|
|
|
mas.setAssociatedreferencedocument(ass);
|
|
|
|
|
|
//海关相关代码
|
|
|
IncludedCustomsNoteXml inc = new IncludedCustomsNoteXml();
|
|
|
inc.setContentcode(deliveryInfo.getAss_contentcode());
|
|
|
inc.setContent(deliveryInfo.getAss_content());
|
|
|
inc.setSubjectcode(deliveryInfo.getAss_subjectcode());
|
|
|
inc.setCountryid(deliveryInfo.getAss_countryid());
|
|
|
mas.setIncludedcustomsnote(inc);
|
|
|
|
|
|
//货物信息
|
|
|
IncludedMasterConsignmentItemXml clide = new IncludedMasterConsignmentItemXml();
|
|
|
clide.setSequencenumeric(deliveryInfo.getInc_sequencenumeric());
|
|
|
clide.setTypecode(deliveryInfo.getAss_typecode());
|
|
|
clide.setGrossweightmeasure(deliveryInfo.getInc_grossweightmeasure());
|
|
|
clide.setGrossvolumemeasure(deliveryInfo.getInc_grossvolumemeasure());
|
|
|
clide.setTotalchargeamount(deliveryInfo.getInc_totalchargeamount());
|
|
|
clide.setPiecequantity(deliveryInfo.getInc_piecequantity());
|
|
|
clide.setTareweightmeasure(deliveryInfo.getInc_tareweightmeasure());
|
|
|
clide.setVolumetricfactor(deliveryInfo.getInc_volumetricfactor());
|
|
|
|
|
|
NatureIdentificationTransportCargoXml natu = new NatureIdentificationTransportCargoXml();
|
|
|
natu.setExtraidentification(deliveryInfo.getInc_extraidentification());
|
|
|
natu.setIdentification(deliveryInfo.getInc_identification());
|
|
|
clide.setNatureidentificationtransportcargo(natu);
|
|
|
|
|
|
TransportLogisticsPackageXml tr = new TransportLogisticsPackageXml();
|
|
|
tr.setItemQuantity(deliveryInfo.getInc_itemquantity());
|
|
|
|
|
|
LinearSpatialDimensionXml linde = new LinearSpatialDimensionXml();
|
|
|
linde.setDescription("true");
|
|
|
linde.setHeightmeasure(deliveryInfo.getInc_heightmeasure());
|
|
|
linde.setLengthmeasure(deliveryInfo.getInc_lengthmeasure());
|
|
|
linde.setWidthmeasure(deliveryInfo.getInc_widthmeasure());
|
|
|
tr.setLinearSpatialDimension(linde);
|
|
|
|
|
|
clide.setTransportlogisticspackage(tr);
|
|
|
|
|
|
|
|
|
ApplicableFreightRateServiceChargeXml app = new ApplicableFreightRateServiceChargeXml();
|
|
|
app.setAppliedamount(deliveryInfo.getInc_appliedamount());
|
|
|
app.setAppliedrate(deliveryInfo.getInc_appliedrate());
|
|
|
app.setCategorycode(deliveryInfo.getInc_chargeableweightmeasure());
|
|
|
app.setChargeableweightmeasure(deliveryInfo.getInc_chargeableweightmeasure());
|
|
|
app.setCommodityitemid(deliveryInfo.getInc_commodityitemid());
|
|
|
clide.setApplicablefreightrateservicecharge(app);
|
|
|
|
|
|
mas.setIncludedmasterconsignmentitem(clide);
|
|
|
|
|
|
//状态
|
|
|
ReportedStatusXml reop = new ReportedStatusXml();
|
|
|
reop.setReasonCode(deliveryInfo.getInc_reasoncode());
|
|
|
reop.setOperationCode(deliveryInfo.getInc_operationcode());
|
|
|
|
|
|
EventTimeXml even = new EventTimeXml();
|
|
|
even.setOccurrencedatetime(deliveryInfo.getInc_occurrencedatetime().toString());
|
|
|
even.setDatetimetypecode(deliveryInfo.getInc_datetimetypecode());
|
|
|
reop.setEventTime(even);
|
|
|
|
|
|
SpecifiedLocationXml spe = new SpecifiedLocationXml();
|
|
|
spe.setId(deliveryInfo.getSpe_id());
|
|
|
spe.setName(deliveryInfo.getSpe_name());
|
|
|
spe.setTypecode(deliveryInfo.getSpe_typecode());
|
|
|
reop.setSpecifiedLocation(spe);
|
|
|
|
|
|
mas.setReportedstatus(reop);
|
|
|
|
|
|
String xml = XmlUtil.convertToXml2(mas, path);
|
|
|
|
|
|
// System.out.println(xml);
|
|
|
// IMFServletManifst mis = new IMFServletManifst();
|
|
|
// mis.init(xml.toString());
|
|
|
|
|
|
// 获取表中信息
|
|
|
DeliveryInfoEntity deliveryInfo = deliveryInfoService.findOne(id);
|
|
|
// 创建xml
|
|
|
DeliveryInfoMasterConsignmentXml mas = new DeliveryInfoMasterConsignmentXml();
|
|
|
mas.setId(deliveryInfo.getMawbNo());
|
|
|
mas.setNilcarriagevalueindicator("true");
|
|
|
mas.setDeclaredvalueforcarriageamount(deliveryInfo.getDeclaredvalueforcarriageamount());
|
|
|
|
|
|
mas.setNilcustomsvalueindicator("true");
|
|
|
mas.setDeclaredvalueforcustomsamount(deliveryInfo.getDeclaredvalueforcustomsamount());
|
|
|
|
|
|
mas.setNilinsurancevalueindicator("true");
|
|
|
mas.setInsurancevalueamount(deliveryInfo.getInsurancevalueamount());
|
|
|
|
|
|
mas.setTotalchargeprepaidindicator("true");
|
|
|
mas.setTotaldisbursementprepaidindicator("true");
|
|
|
mas.setIncludedtaregrossweightmeasure(deliveryInfo.getWeight());
|
|
|
mas.setNetweightmeasure(deliveryInfo.getRecheckWeight());
|
|
|
mas.setGrossvolumemeasure(deliveryInfo.getCbm());
|
|
|
;
|
|
|
mas.setTotalpiecequantity(deliveryInfo.getRecheckPieces());
|
|
|
|
|
|
// 发货人
|
|
|
DeliveryInfoConsignorPartyXML deli = new DeliveryInfoConsignorPartyXML();
|
|
|
deli.setName(deliveryInfo.getC_name());
|
|
|
deli.setLegalid(deliveryInfo.getC_legalid());
|
|
|
deli.setAccountid(deliveryInfo.getC_accountid());
|
|
|
// 发货人地址
|
|
|
PostalStructuredAddressXml pos = new PostalStructuredAddressXml();
|
|
|
pos.setPostcodeCode(deliveryInfo.getC_postcodecode());
|
|
|
pos.setStreetName(deliveryInfo.getC_streetname());
|
|
|
pos.setCityName(deliveryInfo.getC_cityname());
|
|
|
pos.setCountryID(deliveryInfo.getC_countryid());
|
|
|
pos.setCountryName(deliveryInfo.getC_countryname());
|
|
|
pos.setCountrySubDivisionName(deliveryInfo.getC_countrysubdivisionname());
|
|
|
pos.setPostOfficeBox(deliveryInfo.getC_postofficebox());
|
|
|
pos.setCityID(deliveryInfo.getC_partycityid());
|
|
|
pos.setCountrySubDivisionID(deliveryInfo.getC_countrysubdivisionid());
|
|
|
deli.setPostalstructuredaddress(pos);
|
|
|
// 发货人电话
|
|
|
DefinedTradeContactXml def = new DefinedTradeContactXml();
|
|
|
def.setPersonname(deliveryInfo.getC_personname());
|
|
|
def.setDepartmentname(deliveryInfo.getC_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml die = new DirectTelephoneCommunicationXml();
|
|
|
die.setCompleteNumber(deliveryInfo.getC_number());
|
|
|
def.setDirecttelephonecommunication(die);
|
|
|
|
|
|
FaxCommunicationxML fax = new FaxCommunicationxML();
|
|
|
fax.setCompletenumber(deliveryInfo.getC_completenumber());
|
|
|
def.setFaxcommunication(fax);
|
|
|
|
|
|
URIEmailCommunicationXML uri = new URIEmailCommunicationXML();
|
|
|
uri.setUriid(deliveryInfo.getC_uriid());
|
|
|
def.setUriemailcommunication(uri);
|
|
|
|
|
|
TelexCommunicationXml tel = new TelexCommunicationXml();
|
|
|
tel.setCompleteNumber(deliveryInfo.getC_completenumbers());
|
|
|
def.setTelexcommunication(tel);
|
|
|
|
|
|
deli.setDefinedtradecontact(def);
|
|
|
mas.setConsignorparty(deli);
|
|
|
|
|
|
// 收货人
|
|
|
DeliveryInfoConsigneePartyXml del = new DeliveryInfoConsigneePartyXml();
|
|
|
del.setName(deliveryInfo.getS_name());
|
|
|
del.setLegalid(deliveryInfo.getS_legalid());
|
|
|
del.setAccountid(deliveryInfo.getS_accountid());
|
|
|
// 地址
|
|
|
PostalStructuredAddressXml poss = new PostalStructuredAddressXml();
|
|
|
poss.setPostcodeCode(deliveryInfo.getS_postcodecode());
|
|
|
poss.setStreetName(deliveryInfo.getS_streetname());
|
|
|
poss.setCityName(deliveryInfo.getS_cityname());
|
|
|
poss.setCountryID(deliveryInfo.getS_countryid());
|
|
|
poss.setCountryName(deliveryInfo.getS_countryname());
|
|
|
poss.setCountrySubDivisionName(deliveryInfo.getS_countrysubdivisionname());
|
|
|
poss.setPostOfficeBox(deliveryInfo.getS_postofficebox());
|
|
|
poss.setCityID(deliveryInfo.getS_partycityid());
|
|
|
poss.setCountrySubDivisionID(deliveryInfo.getS_countrysubdivisionid());
|
|
|
del.setPostalstructuredaddress(poss);
|
|
|
|
|
|
// 电话
|
|
|
DefinedTradeContactXml deff = new DefinedTradeContactXml();
|
|
|
deff.setPersonname(deliveryInfo.getS_personname());
|
|
|
deff.setDepartmentname(deliveryInfo.getC_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml diee = new DirectTelephoneCommunicationXml();
|
|
|
diee.setCompleteNumber(deliveryInfo.getS_number());
|
|
|
deff.setDirecttelephonecommunication(diee);
|
|
|
|
|
|
FaxCommunicationxML faxx = new FaxCommunicationxML();
|
|
|
faxx.setCompletenumber(deliveryInfo.getS_completenumber());
|
|
|
deff.setFaxcommunication(faxx);
|
|
|
|
|
|
URIEmailCommunicationXML urii = new URIEmailCommunicationXML();
|
|
|
urii.setUriid(deliveryInfo.getS_uriid());
|
|
|
deff.setUriemailcommunication(urii);
|
|
|
|
|
|
TelexCommunicationXml tell = new TelexCommunicationXml();
|
|
|
tell.setCompleteNumber(deliveryInfo.getS_completenumbers());
|
|
|
deff.setTelexcommunication(tell);
|
|
|
|
|
|
del.setDefinedtradecontact(deff);
|
|
|
mas.setConsigneeparty(del);
|
|
|
|
|
|
// 填开代理人
|
|
|
DeliveryInfoFreightForwarderPartyXml defr = new DeliveryInfoFreightForwarderPartyXml();
|
|
|
defr.setName(deliveryInfo.getF_name());
|
|
|
defr.setLegalid(deliveryInfo.getF_legalid());
|
|
|
defr.setAccountid(deliveryInfo.getF_accountid());
|
|
|
// 地址
|
|
|
PostalStructuredAddressXml stru = new PostalStructuredAddressXml();
|
|
|
stru.setPostcodeCode(deliveryInfo.getF_postcodecode());
|
|
|
stru.setStreetName(deliveryInfo.getF_streetname());
|
|
|
stru.setCityName(deliveryInfo.getF_cityname());
|
|
|
stru.setCountryID(deliveryInfo.getF_countryid());
|
|
|
stru.setCountryName(deliveryInfo.getF_countryname());
|
|
|
stru.setCountrySubDivisionName(deliveryInfo.getF_countrysubdivisionname());
|
|
|
stru.setPostOfficeBox(deliveryInfo.getF_postofficebox());
|
|
|
stru.setCityID(deliveryInfo.getF_cityid());
|
|
|
stru.setCountrySubDivisionID(deliveryInfo.getF_countrysubdivisionid());
|
|
|
defr.setPostalstructuredaddress(stru);
|
|
|
|
|
|
// 电话
|
|
|
DefinedTradeContactXml detf = new DefinedTradeContactXml();
|
|
|
detf.setPersonname(deliveryInfo.getF_personname());
|
|
|
detf.setDepartmentname(deliveryInfo.getF_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml dieef = new DirectTelephoneCommunicationXml();
|
|
|
dieef.setCompleteNumber(deliveryInfo.getF_number());
|
|
|
detf.setDirecttelephonecommunication(dieef);
|
|
|
|
|
|
FaxCommunicationxML faxxf = new FaxCommunicationxML();
|
|
|
faxxf.setCompletenumber(deliveryInfo.getF_completenumber());
|
|
|
detf.setFaxcommunication(faxxf);
|
|
|
|
|
|
URIEmailCommunicationXML uriif = new URIEmailCommunicationXML();
|
|
|
uriif.setUriid(deliveryInfo.getF_uriid());
|
|
|
detf.setUriemailcommunication(uriif);
|
|
|
|
|
|
TelexCommunicationXml tellf = new TelexCommunicationXml();
|
|
|
tellf.setCompleteNumber(deliveryInfo.getF_completenumbers());
|
|
|
detf.setTelexcommunication(tellf);
|
|
|
|
|
|
defr.setDefinedtradecontact(detf);
|
|
|
mas.setFreightforwarderparty(defr);
|
|
|
|
|
|
// 其他代理人
|
|
|
DeliveryInfoAssociatedPartyXml deliin = new DeliveryInfoAssociatedPartyXml();
|
|
|
deliin.setName(deliveryInfo.getA_name());
|
|
|
deliin.setLegalid(deliveryInfo.getA_legalid());
|
|
|
deliin.setAccountid(deliveryInfo.getA_accountid());
|
|
|
// 地址
|
|
|
PostalStructuredAddressXml struip = new PostalStructuredAddressXml();
|
|
|
struip.setPostcodeCode(deliveryInfo.getP_postcodecode());
|
|
|
struip.setStreetName(deliveryInfo.getP_streetname());
|
|
|
struip.setCityName(deliveryInfo.getP_cityname());
|
|
|
struip.setCountryID(deliveryInfo.getP_countryid());
|
|
|
struip.setCountryName(deliveryInfo.getP_countryname());
|
|
|
struip.setCountrySubDivisionName(deliveryInfo.getP_countrysubdivisionname());
|
|
|
struip.setPostOfficeBox(deliveryInfo.getP_postofficebox());
|
|
|
struip.setCityID(deliveryInfo.getP_cityid());
|
|
|
struip.setCountrySubDivisionID(deliveryInfo.getP_countrysubdivisionid());
|
|
|
deliin.setPostalstructuredaddress(stru);
|
|
|
|
|
|
// 电话
|
|
|
DefinedTradeContactXml detfip = new DefinedTradeContactXml();
|
|
|
detfip.setPersonname(deliveryInfo.getP_personname());
|
|
|
detfip.setDepartmentname(deliveryInfo.getP_departmentname());
|
|
|
|
|
|
DirectTelephoneCommunicationXml dieefip = new DirectTelephoneCommunicationXml();
|
|
|
dieefip.setCompleteNumber(deliveryInfo.getP_number());
|
|
|
detfip.setDirecttelephonecommunication(dieefip);
|
|
|
|
|
|
FaxCommunicationxML faxxfip = new FaxCommunicationxML();
|
|
|
faxxfip.setCompletenumber(deliveryInfo.getP_completenumber());
|
|
|
detfip.setFaxcommunication(faxxfip);
|
|
|
|
|
|
URIEmailCommunicationXML uriifip = new URIEmailCommunicationXML();
|
|
|
uriifip.setUriid(deliveryInfo.getP_uriid());
|
|
|
detfip.setUriemailcommunication(uriifip);
|
|
|
|
|
|
TelexCommunicationXml tellfip = new TelexCommunicationXml();
|
|
|
tellfip.setCompleteNumber(deliveryInfo.getP_completenumbers());
|
|
|
detfip.setTelexcommunication(tellfip);
|
|
|
|
|
|
deliin.setDefinedtradecontact(detfip);
|
|
|
mas.setAssociatedparty(deliin);
|
|
|
|
|
|
// 实发站
|
|
|
OriginLocationXml ori = new OriginLocationXml();
|
|
|
ori.setId(deliveryInfo.getOriginlocationid());
|
|
|
ori.setName(deliveryInfo.getOriginlocationname());
|
|
|
mas.setOriginlocation(ori);
|
|
|
|
|
|
// 目的站
|
|
|
FinalDestinationLocationXml fina = new FinalDestinationLocationXml();
|
|
|
fina.setId(deliveryInfo.getFinaldestinationlocationid());
|
|
|
fina.setName(deliveryInfo.getFinaldestinationlocationname());
|
|
|
mas.setFinaldestinationlocation(fina);
|
|
|
|
|
|
// 订仓信息
|
|
|
SpecifiedLogisticsTransportMovementXml spec = new SpecifiedLogisticsTransportMovementXml();
|
|
|
spec.setStagecode(deliveryInfo.getStagecode());
|
|
|
spec.setModecode(deliveryInfo.getModecode());
|
|
|
spec.setMode(deliveryInfo.getM_mode());
|
|
|
spec.setId(deliveryInfo.getM_id());
|
|
|
|
|
|
UsedLogisticsTransportMeansXml used = new UsedLogisticsTransportMeansXml();
|
|
|
used.setName(deliveryInfo.getM_name());
|
|
|
spec.setUsedlogisticstransportmeans(used);
|
|
|
|
|
|
ArrivalEventXml arrivalevent = new ArrivalEventXml();
|
|
|
arrivalevent.setScheduledoccurrencedatetime(deliveryInfo.getSc_datetime().toString());
|
|
|
|
|
|
OccurrenceArrivalLocationXml occ = new OccurrenceArrivalLocationXml();
|
|
|
occ.setId(deliveryInfo.getSc_id());
|
|
|
occ.setName(deliveryInfo.getSc_name());
|
|
|
occ.setTypecode(deliveryInfo.getSc_typecode());
|
|
|
arrivalevent.setOccurrencearrivallocation(occ);
|
|
|
spec.setArrivalevent(arrivalevent);
|
|
|
|
|
|
DepartureEventXml departureevent = new DepartureEventXml();
|
|
|
departureevent.setScheduledoccurrencedatetime(deliveryInfo.getSo_datetime().toString());
|
|
|
|
|
|
OccurrenceDepartureLocationXml ocu = new OccurrenceDepartureLocationXml();
|
|
|
ocu.setId(deliveryInfo.getSc_id());
|
|
|
ocu.setName(deliveryInfo.getSc_name());
|
|
|
ocu.setTypecode(deliveryInfo.getSc_typecode());
|
|
|
|
|
|
departureevent.setOccurrencedeparturelocation(ocu);
|
|
|
spec.setDepartureevent(departureevent);
|
|
|
|
|
|
spec.setSequencenumeric("1");
|
|
|
mas.setSpecifiedlogisticstransportmovement(spec);
|
|
|
|
|
|
// 处理说明
|
|
|
HandlingInstructionsXml hand = new HandlingInstructionsXml();
|
|
|
hand.setDescription(deliveryInfo.getSeq2_description());
|
|
|
hand.setDescriptioncode(deliveryInfo.getSeq2_descriptioncode());
|
|
|
mas.setHandlinginstructions(hand);
|
|
|
|
|
|
// 相关文件
|
|
|
AssociatedReferenceDocumentXml ass = new AssociatedReferenceDocumentXml();
|
|
|
ass.setId(deliveryInfo.getAss_id());
|
|
|
ass.setIssuedatetime(deliveryInfo.getAss_issuedatetime().toString());
|
|
|
ass.setTypecode(deliveryInfo.getAss_typecode());
|
|
|
ass.setName(deliveryInfo.getAss_name());
|
|
|
mas.setAssociatedreferencedocument(ass);
|
|
|
|
|
|
// 海关相关代码
|
|
|
IncludedCustomsNoteXml inc = new IncludedCustomsNoteXml();
|
|
|
inc.setContentcode(deliveryInfo.getAss_contentcode());
|
|
|
inc.setContent(deliveryInfo.getAss_content());
|
|
|
inc.setSubjectcode(deliveryInfo.getAss_subjectcode());
|
|
|
inc.setCountryid(deliveryInfo.getAss_countryid());
|
|
|
mas.setIncludedcustomsnote(inc);
|
|
|
|
|
|
// 货物信息
|
|
|
IncludedMasterConsignmentItemXml clide = new IncludedMasterConsignmentItemXml();
|
|
|
clide.setSequencenumeric(deliveryInfo.getInc_sequencenumeric());
|
|
|
clide.setTypecode(deliveryInfo.getAss_typecode());
|
|
|
clide.setGrossweightmeasure(deliveryInfo.getInc_grossweightmeasure());
|
|
|
clide.setGrossvolumemeasure(deliveryInfo.getInc_grossvolumemeasure());
|
|
|
clide.setTotalchargeamount(deliveryInfo.getInc_totalchargeamount());
|
|
|
clide.setPiecequantity(deliveryInfo.getInc_piecequantity());
|
|
|
clide.setTareweightmeasure(deliveryInfo.getInc_tareweightmeasure());
|
|
|
clide.setVolumetricfactor(deliveryInfo.getInc_volumetricfactor());
|
|
|
|
|
|
NatureIdentificationTransportCargoXml natu = new NatureIdentificationTransportCargoXml();
|
|
|
natu.setExtraidentification(deliveryInfo.getInc_extraidentification());
|
|
|
natu.setIdentification(deliveryInfo.getInc_identification());
|
|
|
clide.setNatureidentificationtransportcargo(natu);
|
|
|
|
|
|
TransportLogisticsPackageXml tr = new TransportLogisticsPackageXml();
|
|
|
tr.setItemQuantity(deliveryInfo.getInc_itemquantity());
|
|
|
|
|
|
LinearSpatialDimensionXml linde = new LinearSpatialDimensionXml();
|
|
|
linde.setDescription("true");
|
|
|
linde.setHeightmeasure(deliveryInfo.getInc_heightmeasure());
|
|
|
linde.setLengthmeasure(deliveryInfo.getInc_lengthmeasure());
|
|
|
linde.setWidthmeasure(deliveryInfo.getInc_widthmeasure());
|
|
|
tr.setLinearSpatialDimension(linde);
|
|
|
|
|
|
clide.setTransportlogisticspackage(tr);
|
|
|
|
|
|
ApplicableFreightRateServiceChargeXml app = new ApplicableFreightRateServiceChargeXml();
|
|
|
app.setAppliedamount(deliveryInfo.getInc_appliedamount());
|
|
|
app.setAppliedrate(deliveryInfo.getInc_appliedrate());
|
|
|
app.setCategorycode(deliveryInfo.getInc_chargeableweightmeasure());
|
|
|
app.setChargeableweightmeasure(deliveryInfo.getInc_chargeableweightmeasure());
|
|
|
app.setCommodityitemid(deliveryInfo.getInc_commodityitemid());
|
|
|
clide.setApplicablefreightrateservicecharge(app);
|
|
|
|
|
|
mas.setIncludedmasterconsignmentitem(clide);
|
|
|
|
|
|
// 状态
|
|
|
ReportedStatusXml reop = new ReportedStatusXml();
|
|
|
reop.setReasonCode(deliveryInfo.getInc_reasoncode());
|
|
|
reop.setOperationCode(deliveryInfo.getInc_operationcode());
|
|
|
|
|
|
EventTimeXml even = new EventTimeXml();
|
|
|
even.setOccurrencedatetime(deliveryInfo.getInc_occurrencedatetime().toString());
|
|
|
even.setDatetimetypecode(deliveryInfo.getInc_datetimetypecode());
|
|
|
reop.setEventTime(even);
|
|
|
|
|
|
SpecifiedLocationXml spe = new SpecifiedLocationXml();
|
|
|
spe.setId(deliveryInfo.getSpe_id());
|
|
|
spe.setName(deliveryInfo.getSpe_name());
|
|
|
spe.setTypecode(deliveryInfo.getSpe_typecode());
|
|
|
reop.setSpecifiedLocation(spe);
|
|
|
|
|
|
mas.setReportedstatus(reop);
|
|
|
|
|
|
String xml = XmlUtil.convertToXml2(mas, path);
|
|
|
|
|
|
// System.out.println(xml);
|
|
|
// IMFServletManifst mis = new IMFServletManifst();
|
|
|
// mis.init(xml.toString());
|
|
|
|
|
|
return xml;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* * 模糊查询匹配信息
|
|
|
*
|
|
|
* @param manifest
|
|
|
* @return
|
|
|
* @return
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/infor" )
|
|
|
@RequestMapping(value = "/infor")
|
|
|
@ResponseBody
|
|
|
public List<ManifestEntity> infor(String way) {
|
|
|
List<ManifestEntity> li = manifestService.findByMawbNo(way);
|
|
|
return li;
|
|
|
return li;
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
...
|
...
|
|