...
|
...
|
@@ -10,12 +10,15 @@ import com.agent.entity.agent.PreparesecondaryEntity; |
|
|
import com.agent.xml.fhlsli.common.ApplicableFreightRateServiceCharge;
|
|
|
import com.agent.xml.fhlsli.common.AssociatedParty;
|
|
|
import com.agent.xml.fhlsli.common.AssociatedReferenceDocument;
|
|
|
import com.agent.xml.fhlsli.common.ChargeableWeightMeasure;
|
|
|
import com.agent.xml.fhlsli.common.ConsigneeParty;
|
|
|
import com.agent.xml.fhlsli.common.ConsignorParty;
|
|
|
import com.agent.xml.fhlsli.common.FinalDestinationLocation;
|
|
|
import com.agent.xml.fhlsli.common.FreightForwarderParty;
|
|
|
import com.agent.xml.fhlsli.common.GrossWeightMeasure;
|
|
|
import com.agent.xml.fhlsli.common.HandlingInstructions;
|
|
|
import com.agent.xml.fhlsli.common.IncludedCustomsNote;
|
|
|
import com.agent.xml.fhlsli.common.IncludedTareGrossWeightMeasure;
|
|
|
import com.agent.xml.fhlsli.common.OriginLocation;
|
|
|
import com.agent.xml.fhlsli.common.PostalStructuredAddress;
|
|
|
import com.agent.xml.fhlsli.common.SpecifiedLogisticsTransportMovement;
|
...
|
...
|
@@ -30,7 +33,9 @@ import com.agent.xml.fhlsli.fhl.IncludedHouseConsignment; |
|
|
import com.agent.xml.fhlsli.fhl.IncludedHouseConsignmentItem;
|
|
|
import com.agent.xml.fhlsli.fhl.OperatingParty;
|
|
|
import com.agent.xml.fhlsli.fhl.OriginCountry;
|
|
|
import com.agent.xml.fhlsli.fhl.TareWeightMeasure;
|
|
|
import com.agent.xml.fhlsli.fhl.TransportContractDocument;
|
|
|
import com.agent.xml.fhlsli.fhl.WeightTotalChargeAmount;
|
|
|
import com.agent.xml.fhlsli.sli.EventTime;
|
|
|
import com.agent.xml.fhlsli.sli.IncludedMasterConsignmentItem;
|
|
|
import com.agent.xml.fhlsli.sli.ReportedStatus;
|
...
|
...
|
@@ -58,27 +63,42 @@ public class FSXmlKit { |
|
|
*
|
|
|
* @param me
|
|
|
*/
|
|
|
public static SliMsg sliXml(ManifestEntity me) {
|
|
|
SliMsg msg = new SliMsg();
|
|
|
public static SliCcs sliXml(ManifestEntity me) {
|
|
|
SliCcs msg = new SliCcs();
|
|
|
|
|
|
Meta meta = new Meta();
|
|
|
meta.setSndr("NDLR");
|
|
|
meta.setSeqn(me.getWaybillnomaster());
|
|
|
meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
|
|
|
meta.setType("SLI");
|
|
|
meta.setStype("SLI");
|
|
|
meta.setStyp("SLI");
|
|
|
meta.setRcvr("");
|
|
|
meta.setAck("N");
|
|
|
meta.setVer("01");
|
|
|
|
|
|
Dests dests = new Dests();
|
|
|
Dest dest = new Dest();
|
|
|
dest.setSita("");
|
|
|
dest.setDest("");
|
|
|
dests.setDest(dest);
|
|
|
meta.setDests(dests);
|
|
|
|
|
|
msg.setMeta(meta);
|
|
|
|
|
|
SliDflt dflt = new SliDflt();
|
|
|
SliMain dflt = new SliMain();
|
|
|
SliMasterConsignment sliMasterConsignment = new SliMasterConsignment();
|
|
|
sliMasterConsignment.setID(me.getWaybillnomaster());
|
|
|
sliMasterConsignment.setNilCustomsValueIndicator("true");
|
|
|
sliMasterConsignment.setNilInsuranceValueIndicator("true");
|
|
|
sliMasterConsignment.setDeclaredValueForCarriageAmount("");
|
|
|
sliMasterConsignment.setInsuranceValueAmount("");
|
|
|
sliMasterConsignment.setTotalChargePrepaidIndicator("true");
|
|
|
sliMasterConsignment.setTotalDisbursementPrepaidIndicator("true");
|
|
|
sliMasterConsignment.setIncludedTareGrossWeightMeasure(me.getTotalweight());
|
|
|
|
|
|
IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure = new IncludedTareGrossWeightMeasure();
|
|
|
IncludedTareGrossWeightMeasure.setIncludedTareGrossWeightMeasure(me.getTotalweight());
|
|
|
IncludedTareGrossWeightMeasure.setUnitCode("KGM");
|
|
|
sliMasterConsignment.setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure);
|
|
|
sliMasterConsignment.setTotalPieceQuantity(me.getTotalpiece());
|
|
|
|
|
|
ConsignorParty consignorParty = new ConsignorParty();
|
...
|
...
|
@@ -119,7 +139,8 @@ public class FSXmlKit { |
|
|
sliMasterConsignment.setFinalDestinationLocation(destinationLocation);
|
|
|
|
|
|
SpecifiedLogisticsTransportMovement transport = new SpecifiedLogisticsTransportMovement();
|
|
|
transport.setStageCode(me.getCarrier() + me.getFlightno() + "/" + me.getFlightdate());
|
|
|
transport.setStageCode(
|
|
|
me.getCarrier() + me.getFlightno() + "/" + Constant.dateFormat.format(me.getFlightdate()));
|
|
|
sliMasterConsignment.setSpecifiedLogisticsTransportMovement(transport);
|
|
|
|
|
|
HandlingInstructions handlingInstructions = new HandlingInstructions();
|
...
|
...
|
@@ -144,7 +165,10 @@ public class FSXmlKit { |
|
|
applicableFreightRateServiceCharge.setAppliedAmount("");
|
|
|
applicableFreightRateServiceCharge.setAppliedRate("");
|
|
|
applicableFreightRateServiceCharge.setCategoryCode("");
|
|
|
applicableFreightRateServiceCharge.setChargeableWeightMeasure(me.getDe_chweight());
|
|
|
ChargeableWeightMeasure ChargeableWeightMeasure = new ChargeableWeightMeasure();
|
|
|
ChargeableWeightMeasure.setChargeableWeightMeasure(me.getDe_chweight());
|
|
|
ChargeableWeightMeasure.setUnitCode("KGM");
|
|
|
applicableFreightRateServiceCharge.setChargeableWeightMeasure(ChargeableWeightMeasure);
|
|
|
applicableFreightRateServiceCharge.setCommodityItemID("");
|
|
|
applicableFreightRateServiceCharge.setAppliedRate("");
|
|
|
applicableFreightRateServiceCharge.setAppliedAmount("");
|
...
|
...
|
@@ -163,7 +187,7 @@ public class FSXmlKit { |
|
|
sliMasterConsignment.setReportedStatus(reportedStatus);
|
|
|
|
|
|
dflt.setSliMasterConsignment(sliMasterConsignment);
|
|
|
msg.setDFLT(dflt);
|
|
|
msg.setMain(dflt);
|
|
|
|
|
|
// String xml = XmlUtil.convertToXml(msg);
|
|
|
// System.err.println();
|
...
|
...
|
@@ -177,22 +201,33 @@ public class FSXmlKit { |
|
|
*
|
|
|
* @param pe
|
|
|
*/
|
|
|
public static FhlMsg fhlXml(PreparesecondaryEntity pe) {
|
|
|
FhlMsg msg = new FhlMsg();
|
|
|
public static FhlCcs fhlXml(PreparesecondaryEntity pe) {
|
|
|
FhlCcs msg = new FhlCcs();
|
|
|
|
|
|
Meta meta = new Meta();
|
|
|
meta.setSndr("NDLR");
|
|
|
meta.setSeqn(pe.getWaybillnomaster());
|
|
|
meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
|
|
|
meta.setType("FHL");
|
|
|
meta.setStype("FHL");
|
|
|
meta.setStyp("FHL");
|
|
|
meta.setRcvr("");
|
|
|
meta.setAck("N");
|
|
|
meta.setVer("01");
|
|
|
|
|
|
Dests dests = new Dests();
|
|
|
Dest dest = new Dest();
|
|
|
dest.setSita("");
|
|
|
dest.setDest("");
|
|
|
dests.setDest(dest);
|
|
|
meta.setDests(dests);
|
|
|
|
|
|
msg.setMeta(meta);
|
|
|
|
|
|
FhlDflt dflt = new FhlDflt();
|
|
|
FhlMain dflt = new FhlMain();
|
|
|
HouseWaybill houseWaybill = new HouseWaybill();
|
|
|
FhlMasterConsignment fhlMasterConsignment = new FhlMasterConsignment();
|
|
|
fhlMasterConsignment.setIncludedTareGrossWeightMeasure(pe.getTotalweight());
|
|
|
fhlMasterConsignment.setTotalPieceQuantity(pe.getTotalpiece());
|
|
|
|
|
|
TransportContractDocument transportContractDocumentMaster = new TransportContractDocument();
|
|
|
transportContractDocumentMaster.setID(pe.getWaybillnomaster());
|
...
|
...
|
@@ -212,15 +247,25 @@ public class FSXmlKit { |
|
|
includedHouseConsignment.setTransportContractDocument(transportContractDocumentSub);
|
|
|
|
|
|
ConsolidationInformation consolidationInformation = new ConsolidationInformation();
|
|
|
consolidationInformation.setGrossWeightMeasure(pe.getPrepareweight());
|
|
|
GrossWeightMeasure GrossWeightMeasure = new GrossWeightMeasure();
|
|
|
GrossWeightMeasure.setGrossWeightMeasure(pe.getPrepareweight());
|
|
|
GrossWeightMeasure.setUnitCode("KGM");
|
|
|
consolidationInformation.setGrossWeightMeasure(GrossWeightMeasure);
|
|
|
consolidationInformation.setPieceQuantity(pe.getPreparepiece());
|
|
|
includedHouseConsignment.setConsolidationInformation(consolidationInformation);
|
|
|
includedHouseConsignment.setDeclaredValueForCarriageAmount("");
|
|
|
includedHouseConsignment.setInsuranceValueAmount("");
|
|
|
includedHouseConsignment.setTotalChargePrepaidIndicator("");
|
|
|
includedHouseConsignment.setWeightTotalChargeAmount(pe.getDe_chweight());
|
|
|
|
|
|
WeightTotalChargeAmount WeightTotalChargeAmount = new WeightTotalChargeAmount();
|
|
|
WeightTotalChargeAmount.setChargeableWeightMeasure(pe.getDe_chweight());
|
|
|
WeightTotalChargeAmount.setUnitCode("KGM");
|
|
|
includedHouseConsignment.setWeightTotalChargeAmount(WeightTotalChargeAmount);
|
|
|
includedHouseConsignment.setTotalDisbursementPrepaidIndicator("");
|
|
|
includedHouseConsignment.setIncludedTareGrossWeightMeasure("");
|
|
|
IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure = new IncludedTareGrossWeightMeasure();
|
|
|
IncludedTareGrossWeightMeasure.setIncludedTareGrossWeightMeasure("");
|
|
|
IncludedTareGrossWeightMeasure.setUnitCode("KGM");
|
|
|
includedHouseConsignment.setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure);
|
|
|
includedHouseConsignment.setTotalPieceQuantity(pe.getPreparepiece());
|
|
|
includedHouseConsignment.setSummaryDescription(pe.getProductname());
|
|
|
|
...
|
...
|
@@ -295,10 +340,17 @@ public class FSXmlKit { |
|
|
IncludedHouseConsignmentItem includedHouseConsignmentItem = new IncludedHouseConsignmentItem();
|
|
|
includedHouseConsignmentItem.setSequenceNumeric("");
|
|
|
includedHouseConsignmentItem.setTypeCode("");
|
|
|
includedHouseConsignmentItem.setGrossWeightMeasure(pe.getPrepareweight());
|
|
|
GrossWeightMeasure GrossWeightMeasure_ = new GrossWeightMeasure();
|
|
|
GrossWeightMeasure_.setGrossWeightMeasure(pe.getPrepareweight());
|
|
|
GrossWeightMeasure_.setUnitCode("KGM");
|
|
|
includedHouseConsignmentItem.setGrossWeightMeasure(GrossWeightMeasure_);
|
|
|
includedHouseConsignmentItem.setGrossVolumeMeasure(pe.getDe_volume());
|
|
|
includedHouseConsignmentItem.setPieceQuantity(pe.getPreparepiece());
|
|
|
includedHouseConsignmentItem.setTareWeightMeasure(pe.getTotalweight());
|
|
|
|
|
|
TareWeightMeasure TareWeightMeasure = new TareWeightMeasure();
|
|
|
TareWeightMeasure.setTareWeightMeasure(pe.getTotalweight());
|
|
|
TareWeightMeasure.setUnitCode("KGM");
|
|
|
includedHouseConsignmentItem.setTareWeightMeasure(TareWeightMeasure);
|
|
|
|
|
|
OriginCountry originCountry = new OriginCountry();
|
|
|
originCountry.setID(pe.getCo_country());
|
...
|
...
|
@@ -318,7 +370,10 @@ public class FSXmlKit { |
|
|
applicableFreightRateServiceCharge.setAppliedAmount("");
|
|
|
applicableFreightRateServiceCharge.setAppliedRate("");
|
|
|
applicableFreightRateServiceCharge.setCategoryCode("");
|
|
|
applicableFreightRateServiceCharge.setChargeableWeightMeasure(pe.getDe_chweight());
|
|
|
ChargeableWeightMeasure ChargeableWeightMeasure = new ChargeableWeightMeasure();
|
|
|
ChargeableWeightMeasure.setChargeableWeightMeasure(pe.getDe_chweight());
|
|
|
ChargeableWeightMeasure.setUnitCode("KGM");
|
|
|
applicableFreightRateServiceCharge.setChargeableWeightMeasure(ChargeableWeightMeasure);
|
|
|
applicableFreightRateServiceCharge.setCommodityItemID("");
|
|
|
applicableFreightRateServiceCharge.setAppliedRate("");
|
|
|
applicableFreightRateServiceCharge.setAppliedAmount("");
|
...
|
...
|
@@ -338,7 +393,7 @@ public class FSXmlKit { |
|
|
houseWaybill.setMasterConsignment(fhlMasterConsignment);
|
|
|
|
|
|
dflt.setHouseWaybill(houseWaybill);
|
|
|
msg.setDFLT(dflt);
|
|
|
msg.setMain(dflt);
|
|
|
|
|
|
// String xml = XmlUtil.convertToXml(msg);
|
|
|
// System.err.println();
|
...
|
...
|
|