ManifestController.java 69.9 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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
package com.agent.controller.agent;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

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.apache.shiro.SecurityUtils;
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.BasicAgentEntity;
import com.agent.entity.agent.ManifestBillEntity;
import com.agent.entity.agent.ManifestEntity;
import com.agent.entity.agent.PackageTypeEntity;
import com.agent.entity.agent.PreparesecondaryEntity;
import com.agent.entity.agent.PubDgEntity;
import com.agent.entity.agent.TBasCarrierEntity;
import com.agent.entity.agent.WaybillReceiptEntity;
import com.agent.entity.agent.WaybillReceiptType;
import com.agent.entity.system.UserEntity;
import com.agent.service.agent.BasicAgentService;
import com.agent.service.agent.ConsigneeService;
import com.agent.service.agent.ConsignorService;
import com.agent.service.agent.ManifestBillService;
import com.agent.service.agent.ManifestCommodityService;
import com.agent.service.agent.ManifestContainerService;
import com.agent.service.agent.ManifestService;
import com.agent.service.agent.PackageTypeService;
import com.agent.service.agent.PreparesecondaryService;
import com.agent.service.agent.PubDgService;
import com.agent.service.agent.TBasCarrierService;
import com.agent.service.agent.WaybillReceiptService;
import com.agent.service.system.RoleService;
import com.agent.util.HttpJsonMsg;
import com.agent.vo.ResponseModel;
import com.agent.vo.agent.CommodityVo;
import com.agent.xml.XmlBuildTask;
import com.agent.xml.common.XmlHead;
import com.agent.xml.common.XmlUtil;
import com.agent.xml.fhlsli.FSXmlKit;
import com.agent.xml.manifestdeclare.DeclarePreparemasterXmlBody;
import com.agent.xml.manifestdeclare.ManifestBorderTransportMeansXml;
import com.agent.xml.manifestdeclare.ManifestCarrierXml;
import com.agent.xml.manifestdeclare.ManifestConsignmentItemXml;
import com.agent.xml.manifestdeclare.ManifestConsignmentPackagingXml;
import com.agent.xml.manifestdeclare.ManifestConsignmentXml;
import com.agent.xml.manifestdeclare.ManifestConsignorXml;
import com.agent.xml.manifestdeclare.ManifestDeclarationXml;
import com.agent.xml.manifestdeclare.ManifestDeclareMetaXml;
import com.agent.xml.manifestdeclare.ManifestDeclareMsgXml;
import com.agent.xml.manifestdeclare.ManifestDesXml;
import com.agent.xml.manifestdeclare.ManifestFreightPaymentXml;
import com.agent.xml.manifestdeclare.ManifestLoadingLocationXml;
import com.agent.xml.manifestdeclare.ManifestOrgXml;
import com.agent.xml.manifestdeclare.ManifestTransportContractDocumentXml;
import com.agent.xml.manifestdeclare.ManifestUnloadingLocationXml;
import com.agent.xml.manifestdeclare.ManifestsAddressXml;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.framework.core.Servlets;
import com.framework.shiro.SessionUtil;
import com.framework.util.MessageKit;
import com.framework.util.MessageType;
import com.plugin.easyui.DataGrid;
import com.plugin.easyui.EasyPage;

import tools.DBConnection;
import tools.NumKit;
import tools.Tools;
import tools.oclass.FemyList;

/**
 * Created by cohesion on 2017/4/19.
 */
@Controller
@RequestMapping(value = "/manifest")
public class ManifestController extends BasicController {
	private static final Logger logger = LoggerFactory.getLogger(ManifestController.class);

	public static boolean isSuccess = false;

	@Resource
	private ManifestService manifestService;

	@Resource
	private PreparesecondaryService preparesecondaryServer;

	@Resource
	private ManifestBillService billService;

	@Resource
	private PackageTypeService packageTypeService;

	@Resource
	private ManifestCommodityService commodityService;

	@Resource
	private ManifestContainerService containerService;

	@Resource
	private RoleService roleService;

	@Resource
	private BasicAgentService agentService;

	@Resource
	private PubDgService dgService;

	@Resource
	private TBasCarrierService tbasService;

	@Resource
	private ConsignorService consignorService;

	@Resource
	private ConsigneeService consigneeService;

	@Resource
	private WaybillReceiptService receiptService;

	private BasicAgentEntity getAgent() {
		UserEntity user = Tools.getUserEntity();
		long agent_id = user.getAgent();
		System.err.println("agent_id-->" + agent_id);

		BasicAgentEntity agent = agentService.findOne(agent_id);
		if (agent == null) {
			agent = new BasicAgentEntity();
		}
		if (StringUtils.isBlank(agent.getThreeCode())) {
			agent.setThreeCode("");
		}

		if (StringUtils.isBlank(agent.getNameCn())) {
			agent.setNameCn("");
		}

		return agent;
	}

	/**
	 * 测试用,查看当前账号对应的代理人信息
	 * 
	 * @param reuqest
	 * @param response
	 * @return
	 */
	@RequestMapping(value = "/getAgent", method = { RequestMethod.GET })
	@ResponseBody
	public ResponseModel getAgentInfo(HttpServletRequest reuqest, HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		response.setHeader("Access-Control-Allow-Origin", "*");

		BasicAgentEntity agent = getAgent();
		model.setData(agent);

		return model;
	}

	@RequestMapping(value = "/checkRepeat", method = { RequestMethod.GET })
	@ResponseBody
	public ResponseModel checkRepeat(HttpServletRequest reuqest, HttpServletResponse response, int manifestId,
			String manifest_no) {
		ResponseModel model = new ResponseModel();
		response.setHeader("Access-Control-Allow-Origin", "*");

		List<ManifestEntity> list = manifestService.findByManifestNo(manifest_no);
		if (list == null || list.size() == 0) {
			model.setStatus(200);
		} else {
			ManifestEntity firt = list.get(0);
			if (firt.getId() != manifestId) {
				model.setStatus(500);
				model.setMsg("主单号不能重复");
			} else {
				model.setStatus(200);
			}
		}
		return model;
	}

	/**
	 * 列表页面
	 * 
	 * @return
	 */
	@RequestMapping(value = "/list")
	public String getList(HttpServletRequest request, Model model) {
		request.setAttribute("version", System.currentTimeMillis());
		return "manifest/list";
	}

	// app端接口
	// 获取主单列表
	@RequestMapping(value = "/cross/grid.json")
	@ResponseBody
	public DataGrid<ManifestEntity> cross_grid_json(HttpServletRequest request, HttpServletResponse response,
			EasyPage<ManifestEntity> pageForm) {
		// response.setCharacterEncoding("UTF-8");
		// response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");
		// response.setHeader("Pragma", "no-cache");
		response.setHeader("Access-Control-Allow-Origin", "*");
		// response.setDateHeader("Expires", 0);

		Map<String, Object> searchParams = Servlets.getParametersStartingWith(request, "search_");
		if (Tools.getUserId() != null && Tools.getUserId() != 1) {
			// 不是管理员,添加用户id的条件
			searchParams.put("EQ_USER_ID", Tools.getUserId());
		}
		pageForm.setSearchParams(searchParams);

		pageForm.parseData(manifestService.getPage(pageForm));
		return pageForm.getData();
	}

	@RequestMapping(value = "/cross/edit")
	@ResponseBody
	public Map cross_edit(Long id, HttpServletResponse response) {
		System.out.println("id:" + id);
		response.setHeader("Access-Control-Allow-Origin", "*");
		Map model = new HashMap();
		ManifestEntity manifest = null;
		// 判断是否是便捷
		if (id != null) {
			manifest = manifestService.findOne(id);
		}

		UserEntity user = SessionUtil.getUser();
		if (user != null && user.getAgent() != null) {
			BasicAgentEntity agent = agentService.findOne(user.getAgent());
			model.put("agent", agent);
			if (id == null) // 是新增表单
			{
				manifest = new ManifestEntity();
				manifest.setAgentcompany(agent.getNameCn());
				manifest.setAgentman(null); // 设置代理人名称为null
			}
		}
		model.put("manifest", manifest);
		// 海关关区
		List<String> Customs = getCustomsCode();
		model.put("CusToms", Customs);
		// 付款方式
		List<String> payTypes = getPayTypes();
		model.put("payTypes", payTypes);
		// 海关状态
		List<String> customsStatus = getcustomsStatus();
		model.put("customsStatus", customsStatus);

		// 危险品代码
		List<PubDgEntity> dgList = dgService.findAll();
		model.put("dgList", dgList);

		// 包装种类
		List<PackageTypeEntity> typeList = packageTypeService.findAll();
		model.put("typeList", typeList);

		// model.addAttribute("customsStatus",flag);
		return model;
	}

	// 保存或新增
	@RequestMapping(value = "/cross/save", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel cross_save(ManifestEntity manifest, HttpServletRequest reuqest, HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		response.setHeader("Access-Control-Allow-Origin", "*");
		try {
			manifest.setUSER_ID(Tools.getUserId());
			if (manifestService.isExistsByWaybill(manifest)) {
				model.setMsg("该订单已存在!");
				model.setStatus(500);
			} else {
				String stowagedate = reuqest.getParameter("stowagedate");
				manifest.setStowagedate(manifest.getStowagedate(stowagedate));
				// 处理预配时间
				manifest.setUSER_ID(SessionUtil.getUser().getId()); // 设置用户id
				manifest = manifestService.save(manifest);
				model.setData(manifest);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	// 保存并发送主单信息
	@RequestMapping(value = "/cross/savesend", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel cross_savesend(ManifestEntity manifest, HttpServletRequest request,
			HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		response.setHeader("Access-Control-Allow-Origin", "*");
		try {
			manifest.setUSER_ID(Tools.getUserId());
			if (manifestService.isExistsByWaybill(manifest)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				String stowagedate = request.getParameter("stowagedate");
				manifest.setStowagedate(manifest.getStowagedate(stowagedate));
				// 保存
				manifest.setIsdelete(1);
				manifest.setResponse_text("主单已发送");
				manifestService.save(manifest);
				System.out.println("收货人名称:" + manifest.getSh_name());
				System.out.println("发货人名称:" + manifest.getCo_name());
				System.out.println("-----------------id:" + manifest.getId());
				// 生成报文并且发送
				String rootPath = request.getSession().getServletContext().getRealPath("/");
				String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";

				// String ndlrxml = XmlUtil.convertToXml2(manifestService.sendNDLRXml(manifest),
				// path);
				// String dlcfxml = XmlUtil.convertToXml2(manifestService.sendDLCFXml(manifest),
				// path);
				//
				// new XmlSendTask(ndlrxml).send();
				// new XmlSendTask(dlcfxml).send();

				new XmlBuildTask(manifestService.sendNDLRXml(manifest), path).perform();
				new XmlBuildTask(manifestService.sendDLCFXml(manifest), path).perform();

				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	// 分单列表获取接口
	@RequestMapping(value = "/cross/sub/grid.json")
	@ResponseBody
	public DataGrid<PreparesecondaryEntity> cross_gridSub(Long mawbId, HttpServletRequest request,
			HttpServletResponse response) {
		response.setHeader("Access-Control-Allow-Origin", "*");
		DataGrid<PreparesecondaryEntity> dg = new DataGrid<>();
		dg.setRows(preparesecondaryServer.findByMawbId(mawbId));
		return dg;
	}

	// 获取一条分单详情的接口
	@RequestMapping(value = "/cross/subedit", method = { RequestMethod.POST })
	@ResponseBody
	private Map subedit(Long id, Long mawbId, HttpServletResponse response) {
		Map model = new HashMap();
		ManifestEntity manifest = null;
		List<PreparesecondaryEntity> preparesecondaryList = null;
		PreparesecondaryEntity pre = null;
		String str = "";
		response.setHeader("Access-Control-Allow-Origin", "*");
		if (mawbId != null) {
			manifest = manifestService.findOne(mawbId);
			pre = preparesecondaryServer.findOne(mawbId);
			preparesecondaryList = preparesecondaryServer.findAll(manifest.getId());
			if (preparesecondaryList.isEmpty()) {
				str = calculate(manifest);
			} else {
				str = calculates(manifest, preparesecondaryList);
			}
		}
		if (id != null) {
			pre = preparesecondaryServer.findOne(id);
			manifest = manifestService.findOne(pre.getPreparemasterid());
			preparesecondaryList = preparesecondaryServer.findAll(manifest.getId());
			if (preparesecondaryList.isEmpty()) {
				str = calculate(manifest);
			} else {
				str = calculates(manifest, preparesecondaryList);
			}
		}

		UserEntity user = SessionUtil.getUser();
		if (user != null && user.getAgent() != null) {
			BasicAgentEntity agent = agentService.findOne(user.getAgent());
			model.put("agent", agent);
		}
		// 海关关区
		List<String> Customs = getCustomsCode();
		model.put("CusToms", Customs);
		// 付款方式
		List<String> payTypes = getPayTypes();
		model.put("payTypes", payTypes);
		// 海关状态
		List<String> customsStatus = getcustomsStatus();
		model.put("customsStatus", customsStatus);

		// 危险品代码
		List<PubDgEntity> dgList = dgService.findAll();
		model.put("dgList", dgList);

		// 包装种类
		List<PackageTypeEntity> typeList = packageTypeService.findAll();
		model.put("typeList", typeList);

		model.put("is_strs", str);
		model.put("id", mawbId);
		model.put("manifest", manifest);
		model.put("pre", pre);

		return model;
	}

	// 保存分单
	@RequestMapping(value = "/cross/sub_save", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel cross_sub_save(PreparesecondaryEntity Preparesecondary, HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		try {
			response.setHeader("Access-Control-Allow-Origin", "*");
			// 已存在,提示给用户
			if (preparesecondaryServer.isExists(Preparesecondary)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				Preparesecondary.setCreateDate(new Date());
				Preparesecondary = preparesecondaryServer.save(Preparesecondary);
				model.setData(Preparesecondary);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	@RequestMapping(value = "/cross/presavesend", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel cross_presavesend(PreparesecondaryEntity Preparesecondary, HttpServletRequest request,
			HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		try {
			response.setHeader("Access-Control-Allow-Origin", "*");
			if (preparesecondaryServer.isExists(Preparesecondary)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				String stowagedate = request.getParameter("stowagedate");
				Preparesecondary.setStowagedate(Preparesecondary.getStowagedate(stowagedate));

				// 生成报文并且发送
				String rootPath = request.getSession().getServletContext().getRealPath("/");
				String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";

				// String ndlrxml =
				// XmlUtil.convertToXml2(manifestService.presenddlcfNdlrXml(Preparesecondary),
				// path);
				// String dlcfxml =
				// XmlUtil.convertToXml2(manifestService.presenddlcfNdlrXml(Preparesecondary),
				// path);
				// new XmlSendTask(ndlrxml).send();
				// new XmlSendTask(dlcfxml).send();

				new XmlBuildTask(manifestService.presenddlcfNdlrXml(Preparesecondary), path).perform();
				new XmlBuildTask(manifestService.presenddlcfNdlrXml(Preparesecondary), path).perform();

				model.setData(Preparesecondary);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);

				Preparesecondary.setIsdelete(1);
				Preparesecondary.setResponse_text("分单已发送");
				preparesecondaryServer.save(Preparesecondary);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 查询分页数据
	 * 
	 * @return
	 */
	@RequestMapping(value = "/grid.json")
	@ResponseBody
	public DataGrid<ManifestEntity> grid(HttpServletRequest request, EasyPage<ManifestEntity> pageForm) {
		Map<String, Object> searchParams = Servlets.getParametersStartingWith(request, "search_");
		// searchParams.put("EQ_isdelete", 0);
		pageForm.setSearchParams(searchParams);
		// UserEntity ue =
		// (UserEntity)SecurityUtils.getSubject().getSession().getAttribute("user");
		UserEntity ue = (UserEntity) SecurityUtils.getSubject().getSession().getAttribute("user");
		if (ue != null) {
			Long u = ue.getId();
			Set<String> sk = pageForm.getSearchParams().keySet();

			if (Tools.getUserId() != null && Tools.getUserId() != 1) {
				// 不是管理员,添加用户id的条件
				pageForm.getSearchParams().put("EQ_USER_ID", u);
			}
		}

		pageForm.parseData(manifestService.getPage(pageForm));
		return pageForm.getData();
	}

	/**
	 * * 模糊查询匹配信息
	 *
	 * @param manifest
	 * @return
	 * @return
	 */
	@RequestMapping(value = "/infor")
	@ResponseBody
	public List<ManifestEntity> infor(String id, Model model) {
		List<ManifestEntity> li = null;
		if (Tools.getUserId() != null && Tools.getUserId().longValue() == 1) {
			li = manifestService.queryAll();
		} else {
			li = manifestService.queryByUserId(Tools.getUserId());
		}

		List<ManifestEntity> result = new FemyList();
		for (ManifestEntity me : li) {
			if (result.contains(me)) {
			} else {
				result.add(me);
			}
		}
		return result;
	}

	/**
	 * * 模糊查询匹配信息
	 *
	 * @param manifest
	 * @return
	 * @return
	 */
	@RequestMapping(value = "/inforPre")
	@ResponseBody
	public List<PreparesecondaryEntity> inforPre(String id, Model model) {
		List<PreparesecondaryEntity> li = preparesecondaryServer.queryByUserId(Tools.getUserId());
		List<PreparesecondaryEntity> result = new FemyList();
		for (PreparesecondaryEntity pe : li) {
			if (result.contains(pe)) {

			} else {
				result.add(pe);
			}
		}
		return result;
	}

	/**
	 * 编辑
	 *
	 * @param id
	 * @return
	 */
	@RequestMapping(value = "/edit")
	public String edit(HttpServletRequest request, Long id, Model model) {
		request.setAttribute("version", System.currentTimeMillis());
		ManifestEntity manifest = null;
		// 判断是否是便捷
		if (id != null) {
			manifest = manifestService.findOne(id);
		}

		UserEntity user = SessionUtil.getUser();
		if (user != null && user.getAgent() != null) {
			BasicAgentEntity agent = agentService.findOne(user.getAgent());
			model.addAttribute("agent", agent);
			if (id == null) // 是新增表单
			{
				manifest = new ManifestEntity();
				manifest.setAgentcompany(agent.getNameCn());
				manifest.setAgentman(""); // 设置代理人名称为null
			}
		}
		model.addAttribute("manifest", manifest);
		// 海关关区
		List<String> Customs = getCustomsCode();
		model.addAttribute("CusToms", Customs);
		// 付款方式
		List<String> payTypes = getPayTypes();
		model.addAttribute("payTypes", payTypes);
		// 海关状态
		List<String> customsStatus = getcustomsStatus();
		model.addAttribute("customsStatus", customsStatus);

		// 危险品代码
		List<PubDgEntity> dgList = dgService.findAll();
		model.addAttribute("dgList", dgList);

		// 包装种类
		List<PackageTypeEntity> typeList = packageTypeService.findAll();
		model.addAttribute("typeList", typeList);
		request.setAttribute("version", System.currentTimeMillis());
		// model.addAttribute("customsStatus",flag);

		String waybill_no = manifest != null ? manifest.getWaybillnomaster() : "";
		WaybillReceiptEntity receipt = receiptService.findMain(waybill_no);
		request.setAttribute("receipt", receipt);

		return "manifest/edit";
	}

	/**
	 * 查询主单号是否存在
	 *
	 * @param mawbNo
	 * @return
	 */
	@RequestMapping(value = "/queryMawbNo", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel queryMawbId(Long id, String mawbNo) {
		ResponseModel model = new ResponseModel();
		List<ManifestEntity> list = null;
		if (StringUtils.isNotEmpty(mawbNo)) {
			list = manifestService.findByMawbNo(mawbNo);
		}
		boolean exist = false;
		if (CollectionUtils.isNotEmpty(list)) {
			if (list.size() > 0) {
				exist = true;
			}
		}
		if (exist) {
			model.setStatus(500);
		} else {
			model.setStatus(200);
		}
		return model;
	}

	/**
	 * 查询分制单分页数据
	 * 
	 * @return
	 */
	@RequestMapping(value = "/sub/grid.json")
	@ResponseBody
	public DataGrid<PreparesecondaryEntity> gridSub(Long mawbId, HttpServletRequest request) {
		DataGrid<PreparesecondaryEntity> dg = new DataGrid<>();
		dg.setRows(preparesecondaryServer.findByMawbId(mawbId));
		return dg;
	}

	/**
	 * 编辑
	 *
	 * @param id
	 * @return
	 */
	@RequestMapping(value = "/subedit", method = { RequestMethod.GET })
	private String subedit(HttpServletRequest request, Long id, Long mawbId, String type, Model model) {
		request.setAttribute("version", System.currentTimeMillis());
		ManifestEntity manifest = null;
		List<PreparesecondaryEntity> preparesecondaryList = null;
		PreparesecondaryEntity pre = null;
		String str = "";
		if (mawbId != null) {
			manifest = manifestService.findOne(mawbId);
			pre = preparesecondaryServer.findOne(mawbId);

			preparesecondaryList = preparesecondaryServer.findAll(manifest.getId());
			if (preparesecondaryList.isEmpty()) {
				str = calculate(manifest);
			} else {
				str = calculates(manifest, preparesecondaryList);
			}
		}
		if (id != null) {
			pre = preparesecondaryServer.findOne(id);

			manifest = manifestService.findOne(pre.getPreparemasterid());
			preparesecondaryList = preparesecondaryServer.findAll(manifest.getId());
			if (preparesecondaryList.isEmpty()) {
				str = calculate(manifest);
			} else {
				str = calculates(manifest, preparesecondaryList);
			}
		}

		UserEntity user = SessionUtil.getUser();
		if (user != null && user.getAgent() != null) {
			BasicAgentEntity agent = agentService.findOne(user.getAgent());
			model.addAttribute("agent", agent);
		}
		// 海关关区
		List<String> Customs = getCustomsCode();
		model.addAttribute("CusToms", Customs);
		// 付款方式
		List<String> payTypes = getPayTypes();
		model.addAttribute("payTypes", payTypes);
		// 海关状态
		List<String> customsStatus = getcustomsStatus();
		model.addAttribute("customsStatus", customsStatus);

		// 危险品代码
		List<PubDgEntity> dgList = dgService.findAll();
		model.addAttribute("dgList", dgList);

		// 包装种类
		List<PackageTypeEntity> typeList = packageTypeService.findAll();
		model.addAttribute("typeList", typeList);

		model.addAttribute("is_strs", str);
		model.addAttribute("id", mawbId);
		model.addAttribute("manifest", manifest);

		if (pre == null) {
			pre = new PreparesecondaryEntity();
			pre.setCarrier(manifest.getCarrier());//承运人
			pre.setFlightno(manifest.getFlightno());//航班号
			pre.setFlightdate(manifest.getFlightdate());//航班日期
			pre.setOriginatingstation(manifest.getOriginatingstation());//起始站
			pre .setCustomscode(manifest.getCustomscode());//海关关区
			pre.setDelivery_station(manifest.getDelivery_station());//交运货站
			pre.setDe_type(manifest.getDe_type());//交运类型
		}
		model.addAttribute("pre", pre);
		request.setAttribute("version", System.currentTimeMillis());

		String waybill_no = manifest != null ? manifest.getWaybillnomaster() : "";
		String sub_waybill_no = "";
		if (pre != null && pre.getWaybillnosecondary() != null) {
			sub_waybill_no = pre.getWaybillnosecondary();
		}
		WaybillReceiptEntity receipt = receiptService.findSub(waybill_no, sub_waybill_no);
		request.setAttribute("receipt", receipt);

		return "manifest/sub_edit";
	}

	// 计算 运单件数 运单重量 预配件数 预配重量
	private String calculates(ManifestEntity manifest, List<PreparesecondaryEntity> preparesecondaryList) {
		if (manifest == null || preparesecondaryList == null || preparesecondaryList.isEmpty()) {
			System.err.println("calculate() manifest or preparesecondaryList is null");
			return "";
		}

		int pp = 0;
		float tw = 0;
		int tp = 0;
		float pw = 0;

		for (PreparesecondaryEntity pre : preparesecondaryList) {
			pp += NumKit.parseInt(pre.getPreparepiece());
			tw += NumKit.parseFloat(pre.getTotalweight());
			tp += NumKit.parseInt(pre.getTotalpiece());
			pw += NumKit.parseFloat(pre.getPrepareweight());
		}

		int zpp = NumKit.parseInt(manifest.getPreparetotalpiece()) - pp;
		float ztw = NumKit.parseFloat(manifest.getTotalweight()) - tw;
		ztw = ztw < 0 ? 0 : ztw;
		int ztp = NumKit.parseInt(manifest.getTotalpiece()) - tp;
		float zpw = NumKit.parseFloat(manifest.getPreparetotalweight()) - pw;
		zpw = zpw < 0 ? 0 : zpw;

		String str = "{";
		str += "\"id\":\"" + manifest.getId() + "\",";
		str += "\"waybillnomaster\":\"" + manifest.getWaybillnomaster() + "\",";
		str += "\"totalpiece\":\"" + ztp + "\",";
		str += "\"totalweight\":\"" + NumKit.formatNumber(String.valueOf(ztw), 2) + "\",";
		str += "\"preparetotalpiece\":\"" + zpp + "\",";
		str += "\"preparetotalweight\":\"" + NumKit.formatNumber(String.valueOf(zpw), 2) + "\"";
		str += "}";
		return str;
	}

	// 计算 运单件数 运单重量 预配件数 预配重量
	private String calculate(ManifestEntity manifest) {
		if (manifest == null) {
			System.err.println("calculate() manifest is null");
			return "";
		}

		String str = "{";
		str += "\"id\":\"" + manifest.getId() + "\",";
		str += "\"waybillnomaster\":\"" + manifest.getWaybillnomaster() + "\",";
		str += "\"totalpiece\":\"" + manifest.getTotalpiece() + "\",";
		str += "\"totalweight\":\"" + manifest.getTotalweight() + "\",";
		str += "\"preparetotalpiece\":\"" + manifest.getPreparetotalpiece() + "\",";
		str += "\"preparetotalweight\":\"" + manifest.getPreparetotalweight() + "\"";
		str += "}";
		return str;
	}

	// 海关状态
	private List<String> getcustomsStatus() {
		List<String> list = new ArrayList<>();
		// 国际转运
		list.add("001");// 进、出口货物
		list.add("002");// 国际转运货物
		list.add("003");// 国境货物
		list.add("004");// 暂存进出竟集装箱
		return list;
	}

	// 海关关区
	private List<String> getCustomsCode() {
		List<String> list = new ArrayList<>();
		list.add("4604");
		list.add("4620");
		return list;
	}

	// 支付方式
	private List<String> getPayTypes() {
		List<String> list = new ArrayList<>();
		// 预付
		list.add("001");// 预付
		list.add("002");// 到付
		return list;
	}

	/**
	 * 编辑
	 *
	 * @param id
	 * @return
	 */
	// @RequestMapping(value = "/bill/edit")
	// public String editBill(Long id,Long manifestId,Model model){
	// ManifestBillEntity bill = null;
	// if(id==null){
	// bill = new ManifestBillEntity();
	// bill.setManifestId(manifestId);
	// }else {
	// bill = billService.findOne(id);
	// }
	// //包装种类
	// List<PackageTypeEntity> typeList = packageTypeService.findAll();
	// model.addAttribute("typeList",typeList);
	// model.addAttribute("bill",bill);
	// return "manifest/edit_bill";
	// }

	// 查询主单号是否已经存在
	@RequestMapping(value = "existsManifestNo")
	@ResponseBody
	public ResponseModel editBill(String waybill) {
		ResponseModel model = new ResponseModel(200, null, null);
		List<ManifestEntity> manifestList = manifestService.findByMawbNo(waybill);
		if (manifestList.size() > 0) {
			model.setData("该注单号已经存在了!");
			model.setStatus(0);
		}
		return model;
	}

	/**
	 * 保存
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/save", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel save(ManifestEntity manifest, HttpServletRequest reuqest) {
		String flightno = manifest.getFlightno();
		String carrier = "";
		if (StringUtils.isNotBlank(flightno) && flightno.length() > 2) {
			carrier = flightno.substring(0, 2);
			flightno = flightno.replace(carrier, "");
		}
		manifest.setCarrier(carrier);
		manifest.setFlightno(flightno);

		// consigneeService.saveFromManifest(manifest, Tools.getUserId());
		// consignorService.saveFromManifest(manifest, Tools.getUserId());

		ResponseModel model = new ResponseModel();
		try {
			manifest.setUSER_ID(Tools.getUserId());
			if (manifestService.isExistsByWaybill(manifest)) {
				model.setMsg("该订单已存在!");
				model.setStatus(500);

				System.err.println("before manifest--> 该订单已存在!");
			} else {
				String stowagedate = reuqest.getParameter("stowagedate");
				manifest.setStowagedate(manifest.getStowagedate(stowagedate));
				manifest.setSave_time(new Long(System.currentTimeMillis()));
				// 处理预配时间
				manifest = manifestService.save(manifest);
				//同步分单信息
				List<PreparesecondaryEntity> subList = preparesecondaryServer.findByMain(manifest.getWaybillnomaster());
				if(!subList.isEmpty()&&subList.size()>0){
					for (PreparesecondaryEntity preparesecondaryEntity : subList) {
						preparesecondaryEntity.setCarrier(manifest.getCarrier());//承运人
						preparesecondaryEntity.setFlightno(manifest.getFlightno());//航班号
						preparesecondaryEntity.setFlightdate(manifest.getFlightdate());//航班日期
						preparesecondaryEntity.setOriginatingstation(manifest.getOriginatingstation());//起始站
						preparesecondaryEntity .setCustomscode(manifest.getCustomscode());//海关关区
						preparesecondaryEntity.setDelivery_station(manifest.getDelivery_station());//交运货站
						preparesecondaryEntity.setDe_type(manifest.getDe_type());//交运类型
						preparesecondaryServer.save(preparesecondaryEntity);
					}
				}

				model.setData(manifest);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);

				receiptService.saveFromManifest(manifest, WaybillReceiptType.TEMP_SAVE);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	// 撤销主单
	@RequestMapping(value = "/backout")
	@ResponseBody
	public ResponseModel backout(HttpServletRequest request, Long id) {
		ResponseModel model = new ResponseModel(200, null, "");
		ManifestEntity manifest = null;
		try {
			if (id != null) {

				manifest = manifestService.findOne((id));

				// String deletePath = MessageKit.getMessagePath(MessageType.DELETE);
				// String deletexml =
				// XmlUtil.convertToXml2(manifestService.sendBackoutXml(manifest), deletePath);
				// // 转换报文
				// System.out.println("===================deletexml===================");
				// System.out.println(deletexml);

				// new XmlSendTask().saveMessage(ndlxml);
				// model.setStatus(200);

				WaybillReceiptType type = WaybillReceiptType.DELETE;
				manifest.setResponse_text(type.getName());
				manifest.setResponse_code(String.valueOf(type.getValue()));
				manifestService.save(manifest);
				receiptService.saveFromManifest(manifest, type);
			}
		} catch (Exception e) {
			model.setStatus(10060);
			model.setMsg("连接超时!");
		}
		return model;
	}

	/*
	 * 撤销分单
	 */
	@RequestMapping(value = "housebillbackout")
	@ResponseBody
	public ResponseModel housebillbackout(HttpServletRequest request, Long id) {
		ResponseModel model = new ResponseModel(1, null, "");
		return model;
	}

	@RequestMapping(value = "app/send", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel app_send(ManifestEntity manifest, HttpServletRequest request, HttpServletResponse response) {
		ResponseModel model = new ResponseModel(200, null, "主单发送成功!");

		return model;
	}

	/**
	 * 主单提交表单保存并且发送报文
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/savesend", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel savesend(ManifestEntity manifest, HttpServletRequest request, HttpServletResponse response) {
		String flightno = manifest.getFlightno();
		String carrier = "";
		if (StringUtils.isNotBlank(flightno) && flightno.length() > 2) {
			carrier = flightno.substring(0, 2);
			flightno = flightno.replace(carrier, "");
		}
		manifest.setCarrier(carrier);
		manifest.setFlightno(flightno);

		// consigneeService.saveFromManifest(manifest, Tools.getUserId());
		// consignorService.saveFromManifest(manifest, Tools.getUserId());

		ResponseModel model = new ResponseModel();
		try {
			manifest.setUSER_ID(Tools.getUserId());
			if (manifestService.isExistsByWaybill(manifest)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				// String responseCode = manifest.getResponse_code();
				// int resCode = NumKit.parseInt(responseCode);
				// WaybillReceiptType oldType = WaybillReceiptType.valueOf(resCode);
				// WaybillReceiptType type = oldType != null ? WaybillReceiptType.UPDATE :
				// WaybillReceiptType.APPLY;
				WaybillReceiptType type = WaybillReceiptType.APPLY;

				String stowagedate = request.getParameter("stowagedate");
				manifest.setStowagedate(ManifestEntity.getStowagedate(stowagedate));
				// 保存
				manifest.setIsdelete(1);
				manifest.setResponse_code(String.valueOf(type.getValue()));
				manifest.setResponse_text(type.getName());
				manifest.setSave_time(System.currentTimeMillis());
				manifestService.save(manifest);
				receiptService.saveFromManifest(manifest, type);

				// 生成报文并且发送
				String ndlrPath = MessageKit.getMessagePath(MessageType.NDLR);
				String dlcPath = MessageKit.getMessagePath(MessageType.DLCF);
				String sliPath = MessageKit.getMessagePath(MessageType.SLI);

				manifest.setAgentcompany(getAgent().getNameCn());
				manifest.setAgentman(getAgent().getThreeCode());
				manifest.setAgentcompanycode(getAgent().getThreeCode());

				new XmlBuildTask(manifestService.sendNDLRXml(manifest), ndlrPath).perform();
				new XmlBuildTask(manifestService.sendDLCFXml(manifest), dlcPath).perform();
				new XmlBuildTask(FSXmlKit.sliXml(manifest, getAgent()), sliPath).perform();

				// String ndlrxml = XmlUtil.convertToXml2(manifestService.sendNDLRXml(manifest),
				// ndlrPath);
				// String dlcfxml = XmlUtil.convertToXml2(manifestService.sendDLCFXml(manifest),
				// dlcPath);
				// String slifxml = XmlUtil.convertToXml2(FSXmlKit.sliXml(manifest, getAgent()),
				// sliPath);

				// System.err.println("===================ndlrxml===================");
				// System.err.println(ndlrxml);
				// System.err.println();
				//
				// System.err.println("===================dlcfxml===================");
				// System.err.println(dlcfxml);
				// System.err.println();
				//
				// System.err.println("===================slifxml===================");
				// System.err.println(slifxml);
				// System.err.println();

				// new XmlSendTask(ndlrxml).send();
				// new XmlSendTask(dlcfxml).send();
				// new XmlSendTask(slifxml).send();

				model.setData(manifest);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 发送交运报并且保存
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/sendDelivery", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel sendDelivery(ManifestEntity manifest, HttpServletRequest request,
			HttpServletResponse response) {
		ResponseModel model = new ResponseModel();
		try {
			manifest.setUSER_ID(Tools.getUserId());
			if (manifestService.isExistsByWaybill(manifest)) {
				model.setStatus(500);
				model.setMsg("订单已存在!");
			} else {
				// 保存
				manifest.setDe_ids(1);
				String stowagedate = request.getParameter("stowagedate");
				manifest.setStowagedate(manifest.getStowagedate(stowagedate));
				manifest = manifestService.save(manifest);
				// 生成报文并且发送
				String rootPath = request.getSession().getServletContext().getRealPath("/");
				String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";
				new XmlBuildTask(manifestService.sendDeliveryXml(manifest), path).perform();

				// String dlcfxml =
				// XmlUtil.convertToXml2(manifestService.sendDeliveryXml(manifest), path);
				// new XmlSendTask(dlcfxml).send();

				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 删除报
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/saveis_delete", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel saveis_delete(ManifestEntity manifest) {
		ResponseModel model = new ResponseModel();
		try {
			manifest.setIsdelete(1);
			manifest = manifestService.save(manifest);
			model.setData(manifest);
			model.setStatus(200);
			model.setMsg(HttpJsonMsg.SUCCESS);
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 保存
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/sub_save", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel sub_save(PreparesecondaryEntity preparesecondary) {
		String flightno = preparesecondary.getFlightno();
		String carrier = "";
		if (StringUtils.isNotBlank(flightno) && flightno.length() > 2) {
			carrier = flightno.substring(0, 2);
			flightno = flightno.replace(carrier, "");
		}	
		preparesecondary.setCarrier(carrier);
		preparesecondary.setFlightno(flightno);

		// consigneeService.saveFromPreparesecondary(preparesecondary,
		// Tools.getUserId());
		// consignorService.saveFromPreparesecondary(preparesecondary,
		// Tools.getUserId());

		ResponseModel model = new ResponseModel();
		try {
			// 已存在,提示给用户
			if (preparesecondaryServer.isExists(preparesecondary)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				preparesecondary.setCreateDate(new Date());
				preparesecondary = preparesecondaryServer.save(preparesecondary);
				model.setData(preparesecondary);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);

				receiptService.saveFromPreparesecondary(preparesecondary, WaybillReceiptType.TEMP_SAVE);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	// 撤销分单
	@RequestMapping(value = "prebackout")
	@ResponseBody
	public ResponseModel prebackout(HttpServletRequest request, Long id) {
		ResponseModel model = new ResponseModel(200, null, "");
		if (id != null) {
			System.out.println("id:" + id);
			PreparesecondaryEntity preparesecondary = preparesecondaryServer.findOne(id);
			if (preparesecondary != null) {
				try {

					// String rootPath = request.getSession().getServletContext().getRealPath("/");
					// String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";
					// String ndlrxml =
					// XmlUtil.convertToXml2(manifestService.backoutpresenddlcfNdlrXml(preparesecondary),
					// path);
					// String dlcfxml =
					// XmlUtil.convertToXml2(manifestService.presenddlcfdlcfXml(preparesecondary),
					// path);

					// System.out.println(ndlrxml);
					// new XmlSendTask().saveMessage(ndlrxml);

					WaybillReceiptType type = WaybillReceiptType.DELETE;
					preparesecondary.setResponse_text(type.getName());
					preparesecondary.setResponse_code(String.valueOf(type.getValue()));
					preparesecondaryServer.save(preparesecondary);

					receiptService.saveFromPreparesecondary(preparesecondary, type);
				} catch (Exception e) {
					model.setStatus(500);
					model.setMsg(HttpJsonMsg.ERROR);
				}
			}
		}
		return model;
	}

	/**
	 * 子单提交表单保存并且发送报文
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/presavesend", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel presavesend(PreparesecondaryEntity preparesecondary, HttpServletRequest request) {
		String flightno = preparesecondary.getFlightno();
		String carrier = "";
		if (StringUtils.isNotBlank(flightno) && flightno.length() > 2) {
			carrier = flightno.substring(0, 2);
			flightno = flightno.replace(carrier, "");
		}
		preparesecondary.setCarrier(carrier);
		preparesecondary.setFlightno(flightno);

		// consigneeService.saveFromPreparesecondary(preparesecondary,
		// Tools.getUserId());
		// consignorService.saveFromPreparesecondary(preparesecondary,
		// Tools.getUserId());

		ResponseModel model = new ResponseModel();
		try {
			if (preparesecondaryServer.isExists(preparesecondary)) {
				model.setStatus(500);
				model.setMsg("该订单号已存在!");
			} else {
				String responseCode = preparesecondary.getResponse_code();
				int resCode = NumKit.parseInt(responseCode);
				// WaybillReceiptType oldType = WaybillReceiptType.valueOf(resCode);
				// WaybillReceiptType type = oldType != null ? WaybillReceiptType.UPDATE :
				// WaybillReceiptType.APPLY;

				WaybillReceiptType type = WaybillReceiptType.APPLY;

				String stowagedate = request.getParameter("stowagedate");
				preparesecondary.setStowagedate(preparesecondary.getStowagedate(stowagedate));
				preparesecondary.setIsdelete(1);
				preparesecondary.setResponse_code(String.valueOf(type.getValue()));
				preparesecondary.setResponse_text(type.getName());
				preparesecondaryServer.save(preparesecondary);
				receiptService.saveFromPreparesecondary(preparesecondary, type);

				// 生成报文并且发送
				String ndlrPath = MessageKit.getMessagePath(MessageType.NDLR);
				String dlcPath = MessageKit.getMessagePath(MessageType.DLCF);
				String fhlPath = MessageKit.getMessagePath(MessageType.FHL);

				preparesecondary.setAgentcompany(getAgent().getNameCn());
				preparesecondary.setAgentman(getAgent().getNameCn());
				preparesecondary.setAgentcompanycode(getAgent().getThreeCode());

				new XmlBuildTask(manifestService.presenddlcfNdlrXml(preparesecondary), ndlrPath).perform();
				new XmlBuildTask(manifestService.presenddlcfdlcfXml(preparesecondary), dlcPath).perform();
				new XmlBuildTask(FSXmlKit.fhlXml(preparesecondary, getAgent()), fhlPath).perform();

				// String ndlrxml =
				// XmlUtil.convertToXml2(manifestService.presenddlcfNdlrXml(preparesecondary),
				// ndlrPath);
				// String dlcfxml =
				// XmlUtil.convertToXml2(manifestService.presenddlcfdlcfXml(preparesecondary),
				// dlcPath);
				// String fhlfxml = XmlUtil.convertToXml2(FSXmlKit.fhlXml(preparesecondary,
				// getAgent()), fhlPath);

				// RemoteFileKit.putFile(ndlrPath);
				// RemoteFileKit.putFile(dlcPath);
				// RemoteFileKit.putFile(fhlPath);

				// 发送redis储存数据
				// new XmlSendTask(ndlrxml).send();
				// new XmlSendTask(dlcfxml).send();
				// new XmlSendTask(fhlfxml).send();

				// System.out.println("===================ndlrxml===================");
				// System.out.println(ndlrxml);
				// System.out.println();
				//
				// System.out.println("===================dlcfxml===================");
				// System.err.println(dlcfxml);
				// System.out.println();
				//
				// System.out.println("===================fhlfxml===================");
				// System.err.println(fhlfxml);
				// System.out.println();

				model.setData(preparesecondary);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);

			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 保存并且发送
	 *
	 * @param manifest
	 * @return
	 */
	@RequestMapping(value = "/presendDelivery", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel presendDelivery(PreparesecondaryEntity Preparesecondary, HttpServletRequest request) {
		ResponseModel model = new ResponseModel();

		try {
			if (preparesecondaryServer.isExists(Preparesecondary)) {
				model.setStatus(500);
				model.setMsg("改订单号已经存在了!");
			} else {
				Preparesecondary.setIsdelete(1);
				Preparesecondary = preparesecondaryServer.save(Preparesecondary);
				// 生成报文并且发送
				String rootPath = request.getSession().getServletContext().getRealPath("/");
				String path = rootPath + "/excel/manifest" + new Date().getTime() + ".xml";
				// String dlcfxml =
				// XmlUtil.convertToXml2(manifestService.sendPreXml(Preparesecondary), path);
				// new XmlSendTask(dlcfxml).send();

				new XmlBuildTask(manifestService.sendPreXml(Preparesecondary), path).perform();

				model.setData(Preparesecondary);
				model.setStatus(200);
				model.setMsg(HttpJsonMsg.SUCCESS);
			}
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 
	 * @param waybillnomaster
	 *            主单号
	 * @param waybillnoSub
	 *            分单号
	 * @return
	 */
	@RequestMapping(value = "/daryMawbNo", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel daryMawbNo(String waybillnomaster, String waybillnoSub) {
		ResponseModel model = new ResponseModel();
		List<PreparesecondaryEntity> list = null;
		if (StringUtils.isNotEmpty(waybillnomaster) && StringUtils.isNotEmpty(waybillnoSub)) {
			list = preparesecondaryServer.findByMainAndSub(waybillnomaster, waybillnoSub);
		}
		boolean exist = list != null && list.size() > 0;

		if (exist) {
			model.setStatus(500);
		} else {
			model.setStatus(200);
		}
		return model;
	}

	@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/manifest" + 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) throws Exception {
		ManifestEntity maen = manifestService.findOne(id);
		List<PreparesecondaryEntity> preparesecondaryList = preparesecondaryServer.findAll(maen.getId());

		DeclarePreparemasterXmlBody body = new DeclarePreparemasterXmlBody();
		// 设置xml开头
		XmlHead head = new XmlHead();
		head.setMessageID("CN_MT2201_1P0_460470678920X_" + Constant.dateTimeFormatnumber.format(new Date()));
		head.setFunctionCode("9");
		head.setMessageType("MT2201");
		head.setSenderID("460470678920X_DXPENT0000460002");
		head.setReceiverID("4604");
		head.setSendTime(Constant.dateTimeFormatnumber.format(new Date()));
		head.setVersion("1.0");
		body.setHead(head);
		// 预配舱单
		ManifestDeclarationXml dec = new ManifestDeclarationXml();
		// 预配舱单主表信息
		// 承运人
		ManifestCarrierXml carr = new ManifestCarrierXml();
		carr.setId(maen.getCarrier());
		dec.setCarrier(carr);

		// 起始站
		ManifestOrgXml mo = new ManifestOrgXml();
		mo.setId(maen.getOriginatingstation());
		dec.setOrg(mo);

		// 目的站
		ManifestDesXml md = new ManifestDesXml();
		md.setId(maen.getDestinationstation());
		dec.setDes(md);

		// 航班号-航班日期
		ManifestBorderTransportMeansXml mt = new ManifestBorderTransportMeansXml();
		mt.setJourneyid(maen.getFlightno() + "/" + Constant.dateFormat.format(maen.getFlightdate()));
		dec.setBordertransportmeans(mt);

		ManifestConsignmentXml mcs = new ManifestConsignmentXml();

		// 运单号
		ManifestTransportContractDocumentXml mac = new ManifestTransportContractDocumentXml();
		mac.setId(maen.getWaybillnomaster());
		mcs.setTransportcontractdocument(mac);

		// 装载日期
		ManifestLoadingLocationXml ml = new ManifestLoadingLocationXml();
		ml.setId("CGO/4604");
		ml.setLoadingdate(Constant.dateTimeFormatnumber.format(maen.getStowagedate()));
		mcs.setLoadinglocation(ml);

		ManifestUnloadingLocationXml mu = new ManifestUnloadingLocationXml();
		mu.setId("CGO/4604");
		mcs.setUnloadinglocation(mu);
		mcs.setTransportsplitindicator("0");

		ManifestConsignmentPackagingXml mcon = new ManifestConsignmentPackagingXml();
		mcon.setQuantityquantity(maen.getTotalpiece());
		mcs.setConsignmentpackaging(mcon);

		mcs.setTotalgrossmassmeasure(maen.getTotalweight());
		mcs.setPrequantityquantity(maen.getPreparetotalpiece());
		mcs.setPretotalgrossmassmeasure(maen.getPreparetotalweight());
		mcs.setCustomsstatus(maen.getCustomscode());

		ManifestFreightPaymentXml mfp = new ManifestFreightPaymentXml();
		mfp.setMethodcode(maen.getPaymode());
		mcs.setFreightpayment(mfp);

		mcs.setProductname(maen.getProductname());
		mcs.setPreparetime(maen.getStowagedate().toString());
		mcs.setCustomscode(maen.getCustomscode());
		mcs.setAgentname(maen.getAgentman());
		mcs.setAgentCompany(maen.getAgentcompany());

		// ManifestConsigneeXml mcons = new ManifestConsigneeXml();
		// mcons.setName(maen.getConsigneename());
		//
		// ManifestAddressXml madd = new ManifestAddressXml();
		// madd.setLine(maen.getConsigneeaddress());
		// madd.setCityname(maen.getConsigneecity());
		// madd.setCountrycode(maen.getCountrycode());
		// madd.setProvincecode(maen.getProvincecode());
		// madd.setProvincename(maen.getProvincename());
		// madd.setZipcode(maen.getZipcode());
		// mcons.setAddress(madd);
		// mcs.setConsignee(mcons);
		//
		ManifestConsignorXml maci = new ManifestConsignorXml();
		// maci.setName(maen.getShippername());
		ManifestsAddressXml msadd = new ManifestsAddressXml();
		// msadd.setLine(maen.getShipperaddress());
		// msadd.setCityname(maen.getShippercity());
		maci.setAddress(msadd);
		mcs.setConsignor(maci);

		// 预配舱单子表信息
		if (preparesecondaryList != null) {
			List<ManifestConsignmentItemXml> ls = new ArrayList<ManifestConsignmentItemXml>();
			for (PreparesecondaryEntity entity : preparesecondaryList) {
				ManifestConsignmentItemXml maconca = new ManifestConsignmentItemXml();
				ManifestCarrierXml macrri = new ManifestCarrierXml();
				macrri.setId(entity.getCarrier());
				maconca.setCarrier(macrri);

				ManifestOrgXml orgs = new ManifestOrgXml();
				orgs.setId(entity.getOriginatingstation());
				maconca.setOrg(orgs);

				ManifestDesXml dess = new ManifestDesXml();
				orgs.setId(entity.getDestinationstation());
				maconca.setDes(dess);

				ManifestBorderTransportMeansXml mtm = new ManifestBorderTransportMeansXml();
				mtm.setJourneyid(entity.getFlightno() + "/" + Constant.dateFormat.format(maen.getFlightdate()));
				;
				maconca.setBorderTransportMeans(mtm);

				ManifestTransportContractDocumentXml masc = new ManifestTransportContractDocumentXml();
				masc.setId(entity.getWaybillnosecondary());
				maconca.setTransportcontractdocument(masc);

				ManifestLoadingLocationXml mus = new ManifestLoadingLocationXml();
				mus.setId("CGO/4604");
				maconca.setLoadinglocation(mus);
				maconca.setTransportsplitindicator("0");

				ManifestConsignmentPackagingXml cons = new ManifestConsignmentPackagingXml();
				cons.setQuantityquantity(entity.getTotalpiece());
				maconca.setConsignmentpackaging(cons);

				maconca.setTotalgrossmassmeasure(entity.getTotalweight());
				maconca.setPrequantityquantity(entity.getPreparepiece());
				maconca.setPretotalgrossmassmeasure(entity.getPrepareweight());
				maconca.setCustomsStatus(entity.getCustomsstatus().toString());

				ManifestFreightPaymentXml mafr = new ManifestFreightPaymentXml();
				mafr.setMethodcode(entity.getPaymode());
				maconca.setFreightPayment(mafr);

				maconca.setProductname(entity.getProductname());
				maconca.setPreparetime(entity.getStowagedate().toString());
				maconca.setCustomscode(entity.getCustomscode());
				maconca.setAgentname(entity.getAgentman());
				maconca.setCustomscode(entity.getCustomscode());

				// ManifestAddressXml madds = new ManifestAddressXml();
				// madds.setLine(entity.getConsigneeaddress());
				// madds.setCityname(entity.getConsigneecity());
				// madds.setCountrycode(entity.getCountrycode());
				// madds.setProvincecode(maen.getProvincecode());
				// madds.setProvincename(entity.getProvincename());
				// madds.setZipcode(entity.getZipcode());
				// mcons.setAddress(madds);
				// maconca.setConsignee(mcons);
				//
				// ManifestConsignorXml macis = new ManifestConsignorXml();
				// macis.setName(entity.getShippername());
				// ManifestsAddressXml msadds = new ManifestsAddressXml();
				// msadds.setLine(entity.getShipperaddress());
				// msadds.setCityname(entity.getShippercity());
				// macis.setAddress(msadds);
				// maconca.setConsignor(macis);

				ls.add(maconca);
			}
			mcs.setConsignmentitems(ls);
		}
		dec.setConsignment(mcs);

		body.setDeclaration(dec);

		ManifestDeclareMsgXml dms = new ManifestDeclareMsgXml();
		ManifestDeclareMetaXml mdme = new ManifestDeclareMetaXml();
		mdme.setSndr("CDCF");
		mdme.setRcvr("");
		mdme.setSeqn(maen.getWaybillnomaster() + Constant.dateTimeFormatnumber.format(new Date()));
		mdme.setDdtm(Constant.dateTimeFormatnumber.format(new Date()));
		mdme.setType("HYXX");
		mdme.setStyp("CDCF");// CDCF NDLR
		dms.setMeta(mdme);
		dms.setDeclarepreparemasterxmlbody(body);

		String xml = XmlUtil.convertToXml2(dms, path);

		// System.out.println(xml);
		// IMFServletManifst mis = new IMFServletManifst();
		// mis.init(xml.toString());

		return xml;
	}

	// private String beanToXml(String path,Long id){
	// ManifestEntity manifestEntity = manifestService.findOne(id);
	//
	// if(manifestEntity==null){
	// manifestEntity = new ManifestEntity();
	// }
	// List<ManifestBillEntity> billList = null;
	// ManifestBillEntity billEntity = new ManifestBillEntity();
	// ManifestCommodityEntity commodityEntity = new ManifestCommodityEntity();
	// ManifestContainerEntity containerEntity = new ManifestContainerEntity();
	// if(manifestEntity.getId()!=null){
	// billList = billService.findByManifestId(manifestEntity.getId());
	// }
	// if(CollectionUtils.isNotEmpty(billList)){
	// billEntity = billList.get(0);
	// }
	// List<ManifestCommodityEntity> commodities = null;
	// if(billEntity.getId()!=null){
	// commodities = commodityService.findByBillId(billEntity.getId());
	// }
	// if(CollectionUtils.isNotEmpty(commodities)){
	// commodityEntity = commodities.get(0);
	// }
	//
	// DeclareXmlBody body = new DeclareXmlBody();
	//
	// XmlHead head = new XmlHead();
	// head.setMessageID(id==null?"":id.toString());
	// head.setMessageType("Manifest");
	// head.setSenderID(SessionUtil.getUser().getId().toString());
	// head.setSendTime(Constant.dateFormat.format(new Date()));
	// head.setFunctionCode("");
	// head.setReceiverID(SessionUtil.getUser().getId().toString());
	// head.setVersion("1.0");
	// body.setHead(head);
	//
	// DeclareManifestXml manifestXml = new DeclareManifestXml();
	//
	// NameXml nameXml = new NameXml();
	// nameXml.setName(manifestEntity.getTransferName());
	// manifestXml.setRepresentativePerson(nameXml);
	//
	// IDXml idXml = new IDXml();
	// idXml.setId(manifestEntity.getLeaveCode());
	// manifestXml.setExitCustomsOffice(idXml);
	//
	// IDXml idXml1 = new IDXml();
	// idXml1.setId(manifestEntity.getAgentCompanyCode());
	// manifestXml.setAgent(idXml1);
	//
	// IDXml idXml2 = new IDXml();
	// idXml2.setId(manifestEntity.getCarrierCode());
	// manifestXml.setCarrier(idXml2);
	//
	// DeclareBorderTransportMeansXml transportMeansXml = new
	// DeclareBorderTransportMeansXml();
	// transportMeansXml.setJourneyID(manifestEntity.getVoyageNo());
	// transportMeansXml.setTypeCode(manifestEntity.getModeCode());
	// transportMeansXml.setId(manifestEntity.getToolCode());
	// transportMeansXml.setName(manifestEntity.getToolName());
	// transportMeansXml.setFirstArrivalLocationID(manifestEntity.getFirstPortCode());
	// transportMeansXml.setArrivalDateTime(manifestEntity.getFirstPortDate()!=null?Constant.dateFormat.format(manifestEntity.getFirstPortDate()):"");
	// transportMeansXml.setDepartureDateTime(manifestEntity.getDepartureDate()!=null?Constant.dateFormat.format(manifestEntity.getDepartureDate()):"");
	//
	// DeclareConsignmentXml consignmentXml = new DeclareConsignmentXml();
	//
	// DeclareTransportContractDocumentXml contractDocumentXml = new
	// DeclareTransportContractDocumentXml();
	//
	// contractDocumentXml.setId(billEntity.getLadingNo());
	// contractDocumentXml.setChangeReasonCode(billEntity.getModifyReasonCode());
	// contractDocumentXml.setConditionCode(billEntity.getTransportCode());
	// consignmentXml.setTransportContractDocument(contractDocumentXml);
	//
	// IDXml idXml3 = new IDXml();
	// idXml3.setId(billEntity.getSubLadingNo());
	// consignmentXml.setAssociatedTransportDocument(idXml3);
	//
	// consignmentXml.setGrossVolumeMeasure(billEntity.getVolume()!=null?billEntity.getVolume().toString():"");
	// consignmentXml.setValueAmount(billEntity.getCashType());
	//
	// DeclareLoadingLocationXml loadingLocationXml = new
	// DeclareLoadingLocationXml();
	// loadingLocationXml.setId(billEntity.getEncasementCode());
	// loadingLocationXml.setLoadingDate(billEntity.getCarryVehicleTime());
	// consignmentXml.setLoadingLocation(loadingLocationXml);
	//
	// DeclareUnloadingLocationXml unloadingLocationXml = new
	// DeclareUnloadingLocationXml();
	// unloadingLocationXml.setId(billEntity.getUnlodingCode());
	// unloadingLocationXml.setArrivalDate(billEntity.getArrivalDate()!=null?Constant.dateFormat.format(billEntity.getArrivalDate()):"");
	// consignmentXml.setUnloadingLocation(unloadingLocationXml);
	//
	// DeclareGoodsReceiptPlaceXml receiptPlaceXml = new
	// DeclareGoodsReceiptPlaceXml();
	//
	// receiptPlaceXml.setId(billEntity.getReceiveCode());
	// receiptPlaceXml.setName(billEntity.getReceiveName());
	// consignmentXml.setGoodsReceiptPlace(receiptPlaceXml);
	//
	// IDXml idXml4 = new IDXml();
	// idXml4.setId(billEntity.getTransitCode());
	// consignmentXml.setTranshipmentLocation(idXml4);
	//
	// IDXml idXml5 = new IDXml();
	// idXml5.setId(billEntity.getTransitDestinationCode());
	// consignmentXml.setTransitDestination(idXml5);
	//
	// consignmentXml.setRoutingCountryCode(billEntity.getTransitCountryCode());
	//
	// IDXml idXml6 = new IDXml();
	// idXml6.setId(billEntity.getConsignLocation());
	// consignmentXml.setGoodsConsignedPlace(idXml6);
	//
	// consignmentXml.setCustomsStatusCode(billEntity.getCustomsStatusCode());
	// consignmentXml.setTransportSplitIndicator(billEntity.getSendSign());
	//
	// DeclareMethodCodeXml methodCodeXml = new DeclareMethodCodeXml();
	// methodCodeXml.setMethodCode(billEntity.getPaymentMethod());
	// consignmentXml.setFreightPayment(methodCodeXml);
	//
	// DeclareConsignmentPackagingXml packagingXml = new
	// DeclareConsignmentPackagingXml();
	// packagingXml.setTypeCode(billEntity.getPackageType());
	// packagingXml.setQuantityQuantity(billEntity.getPieces()!=null?billEntity.getPieces().toString():"");
	// consignmentXml.setConsignmentPackaging(packagingXml);
	//
	// consignmentXml.setTotalGrossMassMeasure(billEntity.getTotalGrossWeight()!=null?billEntity.getTotalGrossWeight().toString():"");
	//
	// DeclarePreviousCustomsDocumentXml documentXml = new
	// DeclarePreviousCustomsDocumentXml();
	// documentXml.setId(billEntity.getPreviousCustomsNo());
	// documentXml.setTypeCode(billEntity.getPreviousCustomsType());
	// consignmentXml.setPreviousCustomsDocument(documentXml);
	//
	// DeclareDeliveryDestinationXml deliveryDestinationXml = new
	// DeclareDeliveryDestinationXml();
	// deliveryDestinationXml.setLine(billEntity.getDeliverDestination());
	// deliveryDestinationXml.setCityName(billEntity.getDeliverCity());
	// deliveryDestinationXml.setCountrySubEntityName(billEntity.getDeliverProvinceCode());
	// deliveryDestinationXml.setPostcodeID(billEntity.getDeliverPostCode());
	// deliveryDestinationXml.setCountryCode(billEntity.getDeliverCountryCode());
	// consignmentXml.setDeliveryDestination(deliveryDestinationXml);
	//
	// DeclareIntermediateCarrierXml intermediateCarrierXml = new
	// DeclareIntermediateCarrierXml();
	// intermediateCarrierXml.setId(billEntity.getCarrierSign());
	// DeclareCommunicationXml communicationXml = new DeclareCommunicationXml();
	// communicationXml.setId(billEntity.getCarrierContactNo());
	// communicationXml.setTypeID(billEntity.getCarrierContactType());
	// intermediateCarrierXml.setCommunication(communicationXml);
	// consignmentXml.setIntermediateCarrier(intermediateCarrierXml);
	//
	// //收货人
	// DeclareConsigneeXml consigneeXml = new DeclareConsigneeXml();
	// consigneeXml.setId(billEntity.getReceiverCode());
	// consigneeXml.setName(billEntity.getReceiverName());
	//
	// DeclareAddressXml addressXml = new DeclareAddressXml();
	// addressXml.setLine(billEntity.getReceiverAddress());
	// addressXml.setCityName(billEntity.getReceiverCity());
	// addressXml.setCountrySubEntityID(billEntity.getReceiverProvinceCode());
	// addressXml.setCountrySubEntityName(billEntity.getReceiverProvince());
	// addressXml.setCountryCode(billEntity.getReceiverCountryCode());
	// addressXml.setPostcodeID(billEntity.getReceiverPostCode());
	// consigneeXml.setAddress(addressXml);
	// DeclareCommunicationXml communicationXml1 = new DeclareCommunicationXml();
	// communicationXml1.setId(billEntity.getReceiverContactNo());
	// communicationXml1.setTypeID(billEntity.getReceiverContactType());
	// consigneeXml.setCommunication(communicationXml1);
	//
	// DeclareContactXml contactXml = new DeclareContactXml();
	// contactXml.setName(billEntity.getReceiverName());
	// DeclareCommunicationXml communicationXml2 = new DeclareCommunicationXml();
	// communicationXml2.setId(billEntity.getReceiverContactNo());
	// communicationXml2.setTypeID(billEntity.getReceiverContactType());
	// contactXml.setCommunication(communicationXml2);
	// consigneeXml.setContact(contactXml);
	//
	// consignmentXml.setConsignee(consigneeXml);
	//
	// //发货人
	// DeclareConsigneeXml consigneeXml1 = new DeclareConsigneeXml();
	// consigneeXml1.setId(billEntity.getSenderCode());
	// consigneeXml1.setName(billEntity.getSenderName());
	// DeclareAddressXml addressXml1 = new DeclareAddressXml();
	// addressXml1.setLine(billEntity.getSenderAddress());
	// addressXml1.setCityName(billEntity.getSenderCity());
	// addressXml1.setCountrySubEntityID(billEntity.getSenderProvinceCode());
	// addressXml1.setCountrySubEntityName(billEntity.getSenderProvince());
	// addressXml1.setPostcodeID(billEntity.getSenderPostCode());
	// addressXml1.setCountryCode(billEntity.getSenderCountryCode());
	// consigneeXml1.setAddress(addressXml1);
	// DeclareCommunicationXml communicationXml3 = new DeclareCommunicationXml();
	// communicationXml3.setId(billEntity.getSenderContactNo());
	// communicationXml3.setTypeID(billEntity.getSenderContactType());
	// consigneeXml1.setCommunication(communicationXml3);
	// consignmentXml.setConsignor(consigneeXml1);
	//
	// //通知人
	// DeclareConsigneeXml consigneeXml2 = new DeclareConsigneeXml();
	// consigneeXml2.setId(billEntity.getNotifierCode());
	// consigneeXml2.setName(billEntity.getNotifier());
	// addressXml.setLine(billEntity.getNotifierAddress());
	// addressXml.setCityName(billEntity.getNotifierCity());
	// addressXml.setCountrySubEntityID(billEntity.getNotifierProvinceCode());
	// addressXml.setCountrySubEntityName(billEntity.getNotifierProvince());
	// addressXml.setPostcodeID(billEntity.getNotifierPostCode());
	// addressXml.setCountryCode(billEntity.getNotifierCountryCode());
	// consigneeXml2.setAddress(addressXml);
	// DeclareCommunicationXml communicationXml4 = new DeclareCommunicationXml();
	// communicationXml4.setId(billEntity.getNotifierContact());
	// communicationXml4.setTypeID(billEntity.getNotifierContactCode());
	// consigneeXml2.setCommunication(communicationXml4);
	// consignmentXml.setNotifyParty(consigneeXml2);
	//
	// //危险品联系人
	// DeclareUNDGContactXml dgXml = new DeclareUNDGContactXml();
	// dgXml.setName(billEntity.getDangerContact());
	// DeclareCommunicationXml communicationXml5 = new DeclareCommunicationXml();
	// communicationXml5.setId(billEntity.getDangerContactNo());
	// communicationXml5.setTypeID(billEntity.getDangerContactType());
	// dgXml.setCommunication(communicationXml5);
	// consignmentXml.setuNDGContact(dgXml);
	//
	// //商品信息
	// DeclareConsignmentItemXml itemXml = new DeclareConsignmentItemXml();
	// itemXml.setSequenceNumeric(commodityEntity.getSerialNo());
	// DeclareConsignmentItemPackagingXml itemPackagingXml = new
	// DeclareConsignmentItemPackagingXml();
	// itemPackagingXml.setQuantityQuantity(commodityEntity.getPieces()!=null?commodityEntity.getPieces().toString():"");
	// itemPackagingXml.setTypeCode(commodityEntity.getPackageType());
	// itemPackagingXml.setMarksNumbers(commodityEntity.getMark());
	// itemXml.setConsignmentItemPackaging(itemPackagingXml);
	//
	// DeclareCommodityXml commodityXml = new DeclareCommodityXml();
	// commodityXml.setCargoDescription(commodityEntity.getSummary());
	// commodityXml.setuNDGCode(commodityEntity.getDangerNo());
	// commodityXml.setTariffClassificationCode(commodityEntity.getTariffNo());
	//
	// ContentXml contentXml = new ContentXml();
	// contentXml.setContent(commodityEntity.getRemark());
	// itemXml.setAdditionalInformation(contentXml);
	//
	// DeclareGoodsMeasureXml goodsMeasureXml = new DeclareGoodsMeasureXml();
	// goodsMeasureXml.setGrossMassMeasure(commodityEntity.getGrossWeight()!=null?commodityEntity.getGrossWeight().toString():"");
	// itemXml.setGoodsMeasure(goodsMeasureXml);
	//
	// DeclareCustomsProcedureXml procedureXml = new DeclareCustomsProcedureXml();
	// procedureXml.setCurrentCode(commodityEntity.getProcedureCode());
	// itemXml.setCustomsProcedure(procedureXml);
	//
	// idXml.setId(commodityEntity.getConsign());
	// itemXml.setuCR(idXml);
	//
	// DeclareOriginXml originXml = new DeclareOriginXml();
	// originXml.setOriginCountryCode(commodityEntity.getOriginCode());
	// itemXml.setOrigin(originXml);
	// consignmentXml.setConsignmentItem(itemXml);
	//
	// manifestXml.setConsignment(consignmentXml);
	//
	// contentXml.setContent(manifestEntity.getRemark());
	// manifestXml.setAdditionalInformation(contentXml);
	//
	// body.setDeclaration(manifestXml);
	// String xml = XmlUtil.convertToXml2(body, path);
	// return xml;
	// }

	/**
	 * 保存
	 *
	 * @param billJson
	 * @return
	 */
	@ResponseBody
	@RequestMapping(value = "/bill/save", method = RequestMethod.POST)
	public ResponseModel saveBill(String billJson, String voJson) {
		ResponseModel model = new ResponseModel();
		try {
			ManifestBillEntity bill = JSONObject.parseObject(billJson, ManifestBillEntity.class);
			List<CommodityVo> voList = JSONArray.parseArray(voJson, CommodityVo.class);
			bill = billService.save(bill, voList);
			model.setData(bill.getManifestId());
			model.setStatus(200);
			model.setMsg(HttpJsonMsg.SUCCESS);
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}

		return model;
	}

	/*
	 * 获取3字码对应的信息,然后自动填写上
	 */
	@RequestMapping("/gettreecode")
	@ResponseBody
	public ResponseModel gettreecode(HttpServletRequest request, String STOCKPRE) {
		ResponseModel model = new ResponseModel(1, null, "");

		// 这种方法获取到了对象的数量,但是获取不到对象本省,有问题,暂时不用这种方法
		// List<TBasCarrierEntity> tbc = tbasService.findAll();
		// for(int i = 0; i < tbc.size(); i ++)
		// {
		// }
		// model.setData(tbc);
		if (STOCKPRE != null) {
			Connection c = DBConnection.dbConn("CGOASM", "vmvnv1v2");
			// List<TBasCarrierEntity> list = new ArrayList<TBasCarrierEntity>();
			Statement sql;
			try {
				sql = c.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
				String sqlStr = "SELECT * FROM T_BAS_CARRIER WHERE STOCKPRE='" + STOCKPRE + "'";
				ResultSet rs = sql.executeQuery(sqlStr);

				while (rs.next()) {
					TBasCarrierEntity tbs = new TBasCarrierEntity();
					tbs.setcARRIERID(rs.getString(1));
					tbs.setsTOCKPRE(rs.getString(2));
					tbs.setcARRIERDESCCHN(rs.getString(3));
					tbs.setcARRIERDESCENG(rs.getString(4));
					tbs.setcARRIERSHORTNAMECHN(rs.getString(5));
					tbs.setcARRYWAY(rs.getString(6));
					tbs.setoPERATIONTIME(rs.getString(7));
					tbs.setiSFOREIGN(rs.getString(8));
					// tbs.setfREQORDERING(rs.getInt(9));
					// tbs.setId(rs.getInt(9)));
					model.setData(tbs);
				}
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}

		}

		return model;
	}

	/**
	 * 获取商品信息
	 * 
	 * @param billId
	 * @return
	 */
	@ResponseBody
	@RequestMapping(value = "/commodity/get", method = RequestMethod.POST)
	public String getCommodity(Long billId) {
		return JSON.toJSONString(commodityService.getCommodityVos(billId), filter);
	}

	/**
	 * 编辑商品信息
	 * 
	 * @param id
	 * @return
	 */
	@RequestMapping(value = "/commodity/edit")
	public String getContainer(Long id, Model model) {
		CommodityVo vo = new CommodityVo();
		model.addAttribute("vo", vo);
		return "manifest/edit_commodity";
	}

	/**
	 * 删除
	 * 
	 * @param ids
	 * @return
	 */
	@RequestMapping(value = "/delete", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel delete(String ids) {
		ResponseModel model = new ResponseModel();
		try {
			manifestService.deleteAll(ids);
			model.setStatus(200);
			model.setMsg(HttpJsonMsg.SUCCESS);
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 删除
	 * 
	 * @param ids
	 * @return
	 */
	@RequestMapping(value = "/subdelete", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel subdelete(Long id) {
		ResponseModel model = new ResponseModel();
		try {
			preparesecondaryServer.delete(id);
			model.setStatus(200);
			model.setMsg(HttpJsonMsg.SUCCESS);
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

	/**
	 * 删除
	 * 
	 * @param id
	 * @return
	 */
	@RequestMapping(value = "/bill/delete", method = { RequestMethod.POST })
	@ResponseBody
	public ResponseModel deleteBill(Long id) {
		ResponseModel model = new ResponseModel();
		try {
			billService.delete(id);
			model.setStatus(200);
			model.setMsg(HttpJsonMsg.SUCCESS);
		} catch (Exception e) {
			model.setStatus(500);
			model.setMsg(HttpJsonMsg.ERROR);
			logger.error("系统异常 >>", e);
		}
		return model;
	}

}