diff --git a/Utils/EDI/AnsiX12/Component/ACK.php b/Utils/EDI/AnsiX12/Component/ACK.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/AMT.php b/Utils/EDI/AnsiX12/Component/AMT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/BAK.php b/Utils/EDI/AnsiX12/Component/BAK.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/BEG.php b/Utils/EDI/AnsiX12/Component/BEG.php deleted file mode 100644 index 98c723551..000000000 --- a/Utils/EDI/AnsiX12/Component/BEG.php +++ /dev/null @@ -1,30 +0,0 @@ -invoiceDate = $invoiceDate; - } - - public function getInvoiceDate() : string - { - return $this->invoiceDate->format('Ymd'); - } - - public function setInvoiceNumber(string $invoice) /* : void */ - { - if (strlen($invoice) < 1 || strlen($invoice) > 22) { - throw new \Exception(); - } - - $this->invoice = $invoice; - } - - public function getInvoiceNumber() : string - { - return $this->invoice; - } - - public function setPurchaseDate(\DateTime $purchaseDate) /* : void */ - { - $this->purchaseDate = $purchaseDate; - } - - public function getPurchaseDate() : string - { - return $this->purchaseDate->format('Ymd'); - } - - public function setPurchaseNumber(string $purchase) /* : void */ - { - if (strlen($purchase) < 1 || strlen($purchase) > 22) { - throw new \Exception(); - } - - $this->purchase = $purchase; - } - - public function getPurchaseNumber() : string - { - return $this->purchase; - } - - public function setTransactionTypeCode(int $code) /* : void */ - { - if ($code < 10 || $code > 99) { - throw new \Exception(); - } - - $this->transactionTypeCode = $code; - } - - public function getTransactionTypeCode() : string - { - return str_pad((string) $this->transactionTypeCode, 2, '0', STR_PAD_LEFT); - } -} \ No newline at end of file diff --git a/Utils/EDI/AnsiX12/Component/CAD.php b/Utils/EDI/AnsiX12/Component/CAD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/CTT.php b/Utils/EDI/AnsiX12/Component/CTT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/CUR.php b/Utils/EDI/AnsiX12/Component/CUR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/GE.php b/Utils/EDI/AnsiX12/Component/GE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/GS.php b/Utils/EDI/AnsiX12/Component/GS.php deleted file mode 100644 index 29055f235..000000000 --- a/Utils/EDI/AnsiX12/Component/GS.php +++ /dev/null @@ -1,176 +0,0 @@ -date = new \DateTime(); - } - - public function getFunctionalGroupHeader() : string - { - return $this->functionalGroupHeader; - } - - public function getFunctionalIdentifierCode() : string - { - return $this->functionalIdentifierCode; - } - - public function setFunctionalIdentifierCode(string $code) /* : void */ - { - if (!FunctionalIdentifierCode::isValidValue($code)) { - throw \Exception(); - } - - $this->functionalIdentifierCode = $code; - } - - public function getApplicationSenderCode() : string - { - return str_pad((string) $this->applicationSenderCode, 2, '0', STR_PAD_LEFT); - } - - public function setApplicationSenderCode(string $code) /* : void */ - { - if (strlen($code) < 2 || strlen($code) > 15) { - throw new \Exception(); - } - - $this->applicationSenderCode = $code; - } - - public function getApplicationReceiverCode() : string - { - return str_pad((string) $this->applicationReceiverCode, 2, '0', STR_PAD_LEFT); - } - - public function setApplicationReceiverCode(string $code) /* : void */ - { - if (strlen($code) < 2 || strlen($code) > 15) { - throw new \Exception(); - } - - $this->applicationReceiverCode = $code; - } - - public function setDate(\DateTime $date) /* : void */ - { - $this->date = $date; - } - - public function getDate() : string - { - return $this->date->format('d:m:y'); - } - - public function getTime() : string - { - return $this->date->format('d:m:y'); - } - - public function getGroupControlNumber() : int - { - return $this->groupControlNumber; - } - - public function setGroupControlNumber(int $number) /* : void */ - { - if ($number < 0) { - throw new \Exception(); - } - - $this->groupControlNumber = $number; - } - - public function getResponsibleAgencyCode() : int - { - return $this->responsibleAgencyCode; - } - - public function setResponsibleAgencyCode(int $code) /* : void */ - { - if ($code < 0 || $code > 99) { - throw new \Exception(); - } - - $this->responsibleAgencyCode = $code; - } - - public function getVersion() : string - { - return $this->version; - } - - public function setVersion(string $version) /* : void */ - { - $this->version = $version; - } - - public function serialize() - { - return $this->functionalGroupHeader . '*' - . $this->getFunctionalIdentifierCode() . '*' - . $this->getApplicationSenderCode() . '*' - . $this->getApplicationReceiverCode() . '*' - . $this->getDate() . '*' - . $this->getTime() . '*' - . $this->getGroupControlNumber() . '*' - . $this->getResponsibleAgencyCode() . '*' - . $this->getVersion() . '*' . self::COMPONENT_ELEMENT_SEPARATOR; - } - - public function unserialize($raw) - { - $split = explode($raw, '*'); - - $this->setFunctionalGroupHeader(trim($split[0])); - $this->setFunctionalIdentifierCode(trim($split[1])); - $this->setApplicationSenderCode(trim($split[2])); - $this->setApplicationReceiverCode(trim($split[3])); - $this->setDate(new \DateTime(trim($split[4]) . '-' . trim($split[5]))); - $this->setGroupControlNumber(trim($split[6])); - $this->setResponsibleAgencyCode((int) trim($split[7])); - $this->setVersion(trim($split[8])); - } -} diff --git a/Utils/EDI/AnsiX12/Component/IEA.php b/Utils/EDI/AnsiX12/Component/IEA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/ISA.php b/Utils/EDI/AnsiX12/Component/ISA.php deleted file mode 100644 index 5bc8cd873..000000000 --- a/Utils/EDI/AnsiX12/Component/ISA.php +++ /dev/null @@ -1,427 +0,0 @@ -'; - - private $interchangeControlHeader = 'ISA'; - - /** - * Code to identify the type of information in the Authorization Information. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Authorization Information available - * - * @var int - * @since 1.0.0 - */ - private $authorizationInformationQualifier = 0; - - - /** - * Information used for additional identification or authorization of the interchange - * sender or the data in the interchange; the type of information is set by the Authorization - * Information Qualifier. - * - * Req: M - * Type: AN - * Min/Max: 10/10 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $authorizationInformation = ''; - - /** - * Code to identify the type of information in the Security Information. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Security Information available - * - * @var int - * @since 1.0.0 - */ - private $securityInformationQualifer = 0; - - /** - * This is used for identifying the security information about the interchange - * sender or the data in the interchange; the type of information is set by the Security - * Information Qualifier. - * - * Req: M - * Type: AN - * Min/Max: 10/10 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $securityInformation = ''; - - /** - * Qualifier to designate the system/method of code structure used to designate - * the sender or receiver ID element being qualifiedn. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Security Information available - * - * @var int - * @since 1.0.0 - */ - private $interchangeIdQualifier = 0; - - /** - * Interchange Sender - * - * Req: M - * Type: AN - * Min/Max: 15/15 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $interchangeSender = ''; - - /** - * DateTime of the interchange - * - * Req: M - * Type: DTM - * Usage: Must - * - * @var \DateTime - * @since 1.0.0 - */ - private $interchangeDateTime = null; - - /** - * Code to identify the agency responsible for the control standard used by the - * message that is enclosed by the interchange header and trailer. - * - * Req: M - * Type: ID - * Min/Max: 1/1 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $interchangeControlStandardId = ''; - - /** - * Code specifying the version number of the interchange control segments. - * - * Req: M - * Type: ID - * Min/Max: 5/5 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $interchangeControlVersionNumber = 401; - - /** - * A control number assigned by the interchange sender. - * - * Req: M - * Type: int - * Min/Max: 9/9 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $interchangeControlNumber = 0; - - /** - * Code sent by the sender to request an interchange acknowledgment. - * - * Req: M - * Type: bool - * Min/Max: 1/1 - * Usage: Must - * - * @var bool - * @since 1.0.0 - */ - private $acknowledgementRequested = false; - - /** - * Code to indicate whether data enclosed by this interchange envelope is test, - * production or information. - * - * Req: M - * Type: ID - * Min/Max: 1/1 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $usageIndicator = 'T'; - - public function setInterchangeControlHeader(string $header) /* : void */ - { - $this->interchangeControlHeader = $header; - } - - public function setAuthorizationInformationQualifier(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->authorizationInformationQualifier = $qualifier; - } - - public function getAuthorizationInformationQualifier() : string - { - return str_pad((string) $this->authorizationInformationQualifier, 2, '0', STR_PAD_LEFT); - } - - public function setAuthorizationInformation(string $information) /* : void */ - { - if (strlen($information) > 10) { - throw new \Exception(); - } - - $this->authorizationInformation = $information; - } - - public function getAuthorizationInformation() : string - { - return str_pad((string) $this->authorizationInformation, 10, ' ', STR_PAD_RIGHT); - } - - public function setSecurityInformationQualifer(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->securityInformationQualifer = $qualifier; - } - - public function getSecurityInformationQualifer() : string - { - return str_pad((string) $this->securityInformationQualifer, 2, '0', STR_PAD_LEFT); - } - - public function setSecurityInformation(string $information) /* : void */ - { - if (strlen($information) > 10) { - throw new \Exception(); - } - - $this->securityInformation = $information; - } - - public function getSecurityInformation() : string - { - return str_pad((string) $this->securityInformation, 10, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeIdQualifier(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->interchangeIdQualifier = $qualifier; - } - - public function getInterchangeIdQualifier() : string - { - return str_pad((string) $this->interchangeIdQualifier, 2, '0', STR_PAD_LEFT); - } - - - public function setInterchangeSender(string $information) /* : void */ - { - if (strlen($information) > 15) { - throw new \Exception(); - } - - $this->interchangeSender = $information; - } - - public function getInterchangeSender() : string - { - return str_pad((string) $this->interchangeSender, 15, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeReceiver(string $information) /* : void */ - { - if (strlen($information) > 15) { - throw new \Exception(); - } - - $this->interchangeReceiver = $information; - } - - public function getInterchangeReceiver() : string - { - return str_pad((string) $this->interchangeReceiver, 15, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeDatetime(\DateTime $interchange) /* : void */ - { - $this->interchangeDateTime = $interchange; - } - - public function getInterchangeDate() : string - { - return $this->interchangeDateTime->format('d:m:y'); - } - - public function getInterchangeTime() : string - { - return $this->interchangeDateTime->format('H:i'); - } - - public function setInterchangeControlStandardId(string $id) /* : void */ - { - if (strlen($id) !== 1) { - throw new \Exception(); - } - - $this->interchangeControlStandardId = $id; - } - - public function getInterchangeControlStandardId() : string - { - return $this->interchangeControlStandardId; - } - - public function setInterchangeControlVersionNumber(int $version) /* : void */ - { - if ($version > 99999) { - throw new \Exception(); - } - - $this->interchangeControlVersionNumber = $version; - } - - public function getInterchangeControlVersionNumber() : string - { - return str_pad((string) $this->interchangeControlVersionNumber, 5, '0', STR_PAD_LEFT); - } - - public function setInterchangeControlNumber(int $number) /* : void */ - { - if ($number > 999999999) { - throw new \Exception(); - } - - $this->interchangeControlNumber = $number; - } - - public function getInterchangeControlNumber() : string - { - return str_pad((string) $this->interchangeControlNumber, 9, '0', STR_PAD_LEFT); - } - - public function setAcknowledgmentRequested(bool $ack) /* : void */ - { - $this->acknowledgmentRequested = $ack; - } - - public function getAcknowledgmentRequested() : string - { - return (string) $this->acknowledgmentRequested; - } - - public function setUsageUndicator(string $id) /* : void */ - { - if (strlen($id) !== 1) { - throw new \Exception(); - } - - $this->usageIndicator = $id; - } - - public function getUsageUndicator() : string - { - return $this->usageIndicator; - } - - public function serialize() - { - return $this->interchangeControlHeader . '*' - . $this->getAuthorizationInformationQualifier() . '*' - . $this->getAuthorizationInformation() . '*' - . $this->getSecurityInformationQualifer() . '*' - . $this->getSecurityInformation() . '*' - . $this->getInterchangeIdQualifier() . '*' - . $this->getInterchangeSender() . '*' - . $this->getInterchangeIdQualifier() . '*' - . $this->getInterchangeReceiver() . '*' - . $this->getInterchangeDate() . '*' - . $this->getInterchangeTime() . '*' - . $this->getInterchangeControlStandardId() . '*' - . $this->getInterchangeControlVersionNumber() . '*' - . $this->getInterchangeControlNumber() . '*' - . $this->getAcknowledgmentRequested() . '*' - . $this->getUsageUndicator() . '*' . self::COMPONENT_ELEMENT_SEPARATOR; - } - - public function unserialize($raw) - { - $split = explode('*', $raw); - - $this->setInterchangeControlHeader(trim($split[0])); - $this->setAuthorizationInformationQualifier((int) trim($split[1])); - $this->setAuthorizationInformation(trim($split[2])); - $this->setSecurityInformationQualifer((int) trim($split[3])); - $this->setSecurityInformation(trim($split[4])); - $this->setInterchangeIdQualifier((int) trim($split[5])); - $this->setInterchangeSender(trim($split[6])); - $this->setInterchangeReceiver(trim($split[8])); - $this->setInterchangeDatetime(new \DateTime(trim($split[9]) . '-' . trim($split[10]))); - $this->setInterchangeControlStandardId(trim($split[11])); - $this->setInterchangeControlVersionNumber((int) trim($split[12])); - $this->setInterchangeControlNumber((int) trim($split[13])); - $this->setAcknowledgmentRequested((bool) $split[14]); - $this->setUsageUndicator($split[15]); - } -} diff --git a/Utils/EDI/AnsiX12/Component/IT1.php b/Utils/EDI/AnsiX12/Component/IT1.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/ITD.php b/Utils/EDI/AnsiX12/Component/ITD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/MAN.php b/Utils/EDI/AnsiX12/Component/MAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/N1.php b/Utils/EDI/AnsiX12/Component/N1.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/N2.php b/Utils/EDI/AnsiX12/Component/N2.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/N3.php b/Utils/EDI/AnsiX12/Component/N3.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/N4.php b/Utils/EDI/AnsiX12/Component/N4.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/PER.php b/Utils/EDI/AnsiX12/Component/PER.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/PID.php b/Utils/EDI/AnsiX12/Component/PID.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/PO1.php b/Utils/EDI/AnsiX12/Component/PO1.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/REF.php b/Utils/EDI/AnsiX12/Component/REF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/SAC.php b/Utils/EDI/AnsiX12/Component/SAC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/SCH.php b/Utils/EDI/AnsiX12/Component/SCH.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/SE.php b/Utils/EDI/AnsiX12/Component/SE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/ST.php b/Utils/EDI/AnsiX12/Component/ST.php deleted file mode 100644 index 938affd25..000000000 --- a/Utils/EDI/AnsiX12/Component/ST.php +++ /dev/null @@ -1,82 +0,0 @@ -transactionSetIdentifierCode = $idCode; - } - - public function setTransactionSetIdentifierCode(int $idCode) - { - if ($idCode < 100 || $idCode > 999) { - throw new \Exception(); - } - - $this->transactionSetIdentifierCode = $idCode; - } - - public function getTransactionSetIdentifierCode() : int - { - return $this->transactionSetIdentifierCode; - } - - public function setTransactionSetControlNumber(string $controlNumber) - { - if (strlen($controlNumber) < 4 || strlen($controlNumber) > 9) { - throw new \Exception(); - } - - $this->transactionSetControlNumber = $controlNumber; - } - - public function getTransactionSetControlNumber() : string - { - return str_pad((string) $this->transactionSetControlNumber, 9, '0', STR_PAD_LEFT); - } - - public function serialize() - { - return self::IDENTIFIER . '*' - . $this->getTransactionSetIdentifierCode() . '*' - . $this->getTransactionSetControlNumber() . '*' . self::COMPONENT_ELEMENT_SEPARATOR; - } - - public function unserialize($raw) - { - $split = explode('*', $raw); - - $this->setTransactionSetIdentifierCode((int) $split[1]); - $this->setTransactionSetControlNumber(substr($split[2], -1)); - } -} \ No newline at end of file diff --git a/Utils/EDI/AnsiX12/Component/TD5.php b/Utils/EDI/AnsiX12/Component/TD5.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/Component/TDS.php b/Utils/EDI/AnsiX12/Component/TDS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/AnsiX12/EDIAbstract.php b/Utils/EDI/AnsiX12/EDIAbstract.php deleted file mode 100644 index 5f5093f16..000000000 --- a/Utils/EDI/AnsiX12/EDIAbstract.php +++ /dev/null @@ -1,41 +0,0 @@ -header = new Header(); - } -} \ No newline at end of file diff --git a/Utils/EDI/AnsiX12/FunctionalGroupHeader.php b/Utils/EDI/AnsiX12/FunctionalGroupHeader.php deleted file mode 100644 index fa6e4cd71..000000000 --- a/Utils/EDI/AnsiX12/FunctionalGroupHeader.php +++ /dev/null @@ -1,176 +0,0 @@ -date = new \DateTime(); - } - - public function getFunctionalGroupHeader() : string - { - return $this->functionalGroupHeader; - } - - public function getFunctionalIdentifierCode() : string - { - return $this->functionalIdentifierCode; - } - - public function setFunctionalIdentifierCode(string $code) /* : void */ - { - if (!FunctionalIdentifierCode::isValidValue($code)) { - throw \Exception(); - } - - $this->functionalIdentifierCode = $code; - } - - public function getApplicationSenderCode() : string - { - return str_pad((string) $this->applicationSenderCode, 2, '0', STR_PAD_LEFT); - } - - public function setApplicationSenderCode(string $code) /* : void */ - { - if (strlen($code) < 2 || strlen($code) > 15) { - throw new \Exception(); - } - - $this->applicationSenderCode = $code; - } - - public function getApplicationReceiverCode() : string - { - return str_pad((string) $this->applicationReceiverCode, 2, '0', STR_PAD_LEFT); - } - - public function setApplicationReceiverCode(string $code) /* : void */ - { - if (strlen($code) < 2 || strlen($code) > 15) { - throw new \Exception(); - } - - $this->applicationReceiverCode = $code; - } - - public function setDate(\DateTime $date) /* : void */ - { - $this->date = $date; - } - - public function getDate() : string - { - return $this->date->format('d:m:y'); - } - - public function getTime() : string - { - return $this->date->format('d:m:y'); - } - - public function getGroupControlNumber() : int - { - return $this->groupControlNumber; - } - - public function setGroupControlNumber(int $number) /* : void */ - { - if ($number < 0) { - throw new \Exception(); - } - - $this->groupControlNumber = $number; - } - - public function getResponsibleAgencyCode() : int - { - return $this->responsibleAgencyCode; - } - - public function setResponsibleAgencyCode(int $code) /* : void */ - { - if ($code < 0 || $code > 99) { - throw new \Exception(); - } - - $this->responsibleAgencyCode = $code; - } - - public function getVersion() : string - { - return $this->version; - } - - public function setVersion(string $version) /* : void */ - { - $this->version = $version; - } - - public function serialize() - { - return $this->functionalGroupHeader . '*' - . $this->getFunctionalIdentifierCode() . '*' - . $this->getApplicationSenderCode() . '*' - . $this->getApplicationReceiverCode() . '*' - . $this->getDate() . '*' - . $this->getTime() . '*' - . $this->getGroupControlNumber() . '*' - . $this->getResponsibleAgencyCode() . '*' - . $this->getVersion() . '*' . self::COMPONENT_ELEMENT_SEPARATOR; - } - - public function unserialize($raw) - { - $split = explode($raw); - - $this->setFunctionalGroupHeader(trim($split[0])); - $this->setFunctionalIdentifierCode(trim($split[1])); - $this->setApplicationSenderCode(trim($split[2])); - $this->setApplicationReceiverCode(trim($split[3])); - $this->setDate(new \DateTime(trim($split[4]) . '-' . trim($split[5]))); - $this->setGroupControlNumber(trim($split[6])); - $this->setResponsibleAgencyCode((int) trim($split[7])); - $this->setVersion(trim($split[8])); - } -} diff --git a/Utils/EDI/AnsiX12/Header.php b/Utils/EDI/AnsiX12/Header.php deleted file mode 100644 index dd447f9b7..000000000 --- a/Utils/EDI/AnsiX12/Header.php +++ /dev/null @@ -1,38 +0,0 @@ -interchangeControlHeader = new InterchangeControlHeader(); - $this->functionalGroupHeader = new FunctionalGroupHeader(); - } -} diff --git a/Utils/EDI/AnsiX12/InterchangeControlHeader.php b/Utils/EDI/AnsiX12/InterchangeControlHeader.php deleted file mode 100644 index d9107361f..000000000 --- a/Utils/EDI/AnsiX12/InterchangeControlHeader.php +++ /dev/null @@ -1,427 +0,0 @@ -'; - - private $interchangeControlHeader = InterchangeControlHeader::ISA; - - /** - * Code to identify the type of information in the Authorization Information. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Authorization Information available - * - * @var int - * @since 1.0.0 - */ - private $authorizationInformationQualifier = 0; - - - /** - * Information used for additional identification or authorization of the interchange - * sender or the data in the interchange; the type of information is set by the Authorization - * Information Qualifier. - * - * Req: M - * Type: AN - * Min/Max: 10/10 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $authorizationInformation = ''; - - /** - * Code to identify the type of information in the Security Information. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Security Information available - * - * @var int - * @since 1.0.0 - */ - private $securityInformationQualifer = 0; - - /** - * This is used for identifying the security information about the interchange - * sender or the data in the interchange; the type of information is set by the Security - * Information Qualifier. - * - * Req: M - * Type: AN - * Min/Max: 10/10 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $securityInformation = ''; - - /** - * Qualifier to designate the system/method of code structure used to designate - * the sender or receiver ID element being qualifiedn. - * - * Req: M - * Type: ID - * Min/Max: 2/2 - * Usage: Must - * - * 00 = No Security Information available - * - * @var int - * @since 1.0.0 - */ - private $interchangeIdQualifier = 0; - - /** - * Interchange Sender - * - * Req: M - * Type: AN - * Min/Max: 15/15 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $interchangeSender = ''; - - /** - * DateTime of the interchange - * - * Req: M - * Type: DTM - * Usage: Must - * - * @var \DateTime - * @since 1.0.0 - */ - private $interchangeDateTime = null; - - /** - * Code to identify the agency responsible for the control standard used by the - * message that is enclosed by the interchange header and trailer. - * - * Req: M - * Type: ID - * Min/Max: 1/1 - * Usage: Must - * - * @var string - * @since 1.0.0 - */ - private $interchangeControlStandardId = ''; - - /** - * Code specifying the version number of the interchange control segments. - * - * Req: M - * Type: ID - * Min/Max: 5/5 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $interchangeControlVersionNumber = 401; - - /** - * A control number assigned by the interchange sender. - * - * Req: M - * Type: int - * Min/Max: 9/9 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $interchangeControlNumber = 0; - - /** - * Code sent by the sender to request an interchange acknowledgment. - * - * Req: M - * Type: bool - * Min/Max: 1/1 - * Usage: Must - * - * @var bool - * @since 1.0.0 - */ - private $acknowledgementRequested = false; - - /** - * Code to indicate whether data enclosed by this interchange envelope is test, - * production or information. - * - * Req: M - * Type: ID - * Min/Max: 1/1 - * Usage: Must - * - * @var int - * @since 1.0.0 - */ - private $usageIndicator = 'T'; - - public function setInterchangeControlHeader(string $header) /* : void */ - { - $this->interchangeControlHeader = $header; - } - - public function setAuthorizationInformationQualifier(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->authorizationInformationQualifier = $qualifier; - } - - public function getAuthorizationInformationQualifier() : string - { - return str_pad((string) $this->authorizationInformationQualifier, 2, '0', STR_PAD_LEFT); - } - - public function setAuthorizationInformation(string $information) /* : void */ - { - if (strlen($information) > 10) { - throw new \Exception(); - } - - $this->authorizationInformation = $information; - } - - public function getAuthorizationInformation() : string - { - return str_pad((string) $this->authorizationInformation, 10, ' ', STR_PAD_RIGHT); - } - - public function setSecurityInformationQualifer(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->securityInformationQualifer = $qualifier; - } - - public function getSecurityInformationQualifer() : string - { - return str_pad((string) $this->securityInformationQualifer, 2, '0', STR_PAD_LEFT); - } - - public function setSecurityInformation(string $information) /* : void */ - { - if (strlen($information) > 10) { - throw new \Exception(); - } - - $this->securityInformation = $information; - } - - public function getSecurityInformation() : string - { - return str_pad((string) $this->securityInformation, 10, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeIdQualifier(int $qualifer) /* : void */ - { - if ($qualifer > 99) { - throw new \Exception(); - } - - $this->interchangeIdQualifier = $qualifier; - } - - public function getInterchangeIdQualifier() : string - { - return str_pad((string) $this->interchangeIdQualifier, 2, '0', STR_PAD_LEFT); - } - - - public function setInterchangeSender(string $information) /* : void */ - { - if (strlen($information) > 15) { - throw new \Exception(); - } - - $this->interchangeSender = $information; - } - - public function getInterchangeSender() : string - { - return str_pad((string) $this->interchangeSender, 15, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeReceiver(string $information) /* : void */ - { - if (strlen($information) > 15) { - throw new \Exception(); - } - - $this->interchangeReceiver = $information; - } - - public function getInterchangeReceiver() : string - { - return str_pad((string) $this->interchangeReceiver, 15, ' ', STR_PAD_RIGHT); - } - - public function setInterchangeDatetime(\DateTime $interchange) /* : void */ - { - $this->interchangeDateTime = $interchange; - } - - public function getInterchangeDate() : string - { - return $this->interchangeDateTime->format('d:m:y'); - } - - public function getInterchangeTime() : string - { - return $this->interchangeDateTime->format('H:i'); - } - - public function setInterchangeControlStandardId(string $id) /* : void */ - { - if (strlen($id) !== 1) { - throw new \Exception(); - } - - $this->interchangeControlStandardId = $id; - } - - public function getInterchangeControlStandardId() : string - { - return $this->interchangeControlStandardId; - } - - public function setInterchangeControlVersionNumber(int $version) /* : void */ - { - if ($version > 99999) { - throw new \Exception(); - } - - $this->interchangeControlVersionNumber = $version; - } - - public function getInterchangeControlVersionNumber() : string - { - return str_pad((string) $this->interchangeControlVersionNumber, 5, '0', STR_PAD_LEFT); - } - - public function setInterchangeControlNumber(int $number) /* : void */ - { - if ($number > 999999999) { - throw new \Exception(); - } - - $this->interchangeControlNumber = $number; - } - - public function getInterchangeControlNumber() : string - { - return str_pad((string) $this->interchangeControlNumber, 9, '0', STR_PAD_LEFT); - } - - public function setAcknowledgmentRequested(bool $ack) /* : void */ - { - $this->acknowledgmentRequested = $ack; - } - - public function getAcknowledgmentRequested() : string - { - return (string) $this->acknowledgmentRequested; - } - - public function setUsageUndicator(string $id) /* : void */ - { - if (strlen($id) !== 1) { - throw new \Exception(); - } - - $this->usageIndicator = $id; - } - - public function getUsageUndicator() : string - { - return $this->usageIndicator; - } - - public function serialize() - { - return $this->interchangeControlHeader . '*' - . $this->getAuthorizationInformationQualifier() . '*' - . $this->getAuthorizationInformation() . '*' - . $this->getSecurityInformationQualifer() . '*' - . $this->getSecurityInformation() . '*' - . $this->getInterchangeIdQualifier() . '*' - . $this->getInterchangeSender() . '*' - . $this->getInterchangeIdQualifier() . '*' - . $this->getInterchangeReceiver() . '*' - . $this->getInterchangeDate() . '*' - . $this->getInterchangeTime() . '*' - . $this->getInterchangeControlStandardId() . '*' - . $this->getInterchangeControlVersionNumber() . '*' - . $this->getInterchangeControlNumber() . '*' - . $this->getAcknowledgmentRequested() . '*' - . $this->getUsageUndicator() . '*' . self::COMPONENT_ELEMENT_SEPARATOR; - } - - public function unserialize($raw) - { - $split = explode($raw); - - $this->setInterchangeControlHeader(trim($split[0])); - $this->setAuthorizationInformationQualifier((int) trim($split[1])); - $this->setAuthorizationInformation(trim($split[2])); - $this->setSecurityInformationQualifer((int) trim($split[3])); - $this->setSecurityInformation(trim($split[4])); - $this->setInterchangeIdQualifier((int) trim($split[5])); - $this->setInterchangeSender(trim($split[6])); - $this->setInterchangeReceiver(trim($split[8])); - $this->setInterchangeDatetime(new \DateTime(trim($split[9]) . '-' . trim($split[10]))); - $this->setInterchangeControlStandardId(trim($split[11])); - $this->setInterchangeControlVersionNumber((int) trim($split[12])); - $this->setInterchangeControlNumber((int) trim($split[13])); - $this->setAcknowledgmentRequested((bool) $split[14]); - $this->setUsageUndicator($split[15]); - } -} diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php deleted file mode 100644 index b5172ec61..000000000 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850.php +++ /dev/null @@ -1,58 +0,0 @@ -interchangeControlHeader = new ISA(); - $this->functionalGroupHeader = new GS(); - - $this->heading = new EDI850Heading(); - $this->detail = new EDI850Detail(); - $this->summary = new EDI850Summary(); - - $this->functionalGroupTrailer = new GE(); - $this->interchangeControlTrailer = new IEA(); - } -} diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php deleted file mode 100644 index 0d9ee7309..000000000 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Detail.php +++ /dev/null @@ -1,44 +0,0 @@ -headingTransactionSetHeader = new ST(850); - $this->headingBeginningSegmentPO = new BEG(); - } -} diff --git a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php b/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php deleted file mode 100644 index 160acd83c..000000000 --- a/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Summary.php +++ /dev/null @@ -1,36 +0,0 @@ -transactionSetIdentifierCode; - } - - public function setTransactionIdentifierCode(int $code) /* : void */ - { - $this->transactionSetIdentifierCode = $code; - } - - public function getTransactionSetControlNumber() : string - { - return str_pad((string) $this->transactionSetControlNumber, 9, '0', STR_PAD_LEFT); - } - - public function setTransactionSetControlNumber(string $number) /* : void */ - { - if (strlen($number) < 4 || strlen($number) > 9) { - throw new \Exception(); - } - - $this->transactionSetControlNumber = $number; - } - - public function unserialize($raw) - { - $split = explode($raw); - - $this->setTransactionSetIdentifierCode((int) trim($split[1])); - $this->setTransactionSetControlNumber(trim($split[2])); - } - - public function serialize() - { - return self::IDENTIFIER . '*' - . $this->getTransactionSetIdentifierCode() . '*' - . $this->getTransactionSetControlNumber(); - } -} diff --git a/Utils/EDI/Edifact/APERAK.php b/Utils/EDI/Edifact/APERAK.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/AUTHOR.php b/Utils/EDI/Edifact/AUTHOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BALANC.php b/Utils/EDI/Edifact/BALANC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BANSTA.php b/Utils/EDI/Edifact/BANSTA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BAPLIE.php b/Utils/EDI/Edifact/BAPLIE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BAPLTE.php b/Utils/EDI/Edifact/BAPLTE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BERMAN.php b/Utils/EDI/Edifact/BERMAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BMISRM.php b/Utils/EDI/Edifact/BMISRM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BOPBNK.php b/Utils/EDI/Edifact/BOPBNK.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BOPCUS.php b/Utils/EDI/Edifact/BOPCUS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BOPDIR.php b/Utils/EDI/Edifact/BOPDIR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BOPINF.php b/Utils/EDI/Edifact/BOPINF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/BUSCRD.php b/Utils/EDI/Edifact/BUSCRD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CALINF.php b/Utils/EDI/Edifact/CALINF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CASINT.php b/Utils/EDI/Edifact/CASINT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CASRES.php b/Utils/EDI/Edifact/CASRES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CHACCO.php b/Utils/EDI/Edifact/CHACCO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CLASET.php b/Utils/EDI/Edifact/CLASET.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CNTCND.php b/Utils/EDI/Edifact/CNTCND.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COACSU.php b/Utils/EDI/Edifact/COACSU.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COARRI.php b/Utils/EDI/Edifact/COARRI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CODECO.php b/Utils/EDI/Edifact/CODECO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CODENO.php b/Utils/EDI/Edifact/CODENO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COEDOR.php b/Utils/EDI/Edifact/COEDOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COHAOR.php b/Utils/EDI/Edifact/COHAOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COLREQ.php b/Utils/EDI/Edifact/COLREQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COMDIS.php b/Utils/EDI/Edifact/COMDIS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONAPW.php b/Utils/EDI/Edifact/CONAPW.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONDPV.php b/Utils/EDI/Edifact/CONDPV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONDRA.php b/Utils/EDI/Edifact/CONDRA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONDRO.php b/Utils/EDI/Edifact/CONDRO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONEST.php b/Utils/EDI/Edifact/CONEST.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONITT.php b/Utils/EDI/Edifact/CONITT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONPVA.php b/Utils/EDI/Edifact/CONPVA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONQVA.php b/Utils/EDI/Edifact/CONQVA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONRPW.php b/Utils/EDI/Edifact/CONRPW.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONTEN.php b/Utils/EDI/Edifact/CONTEN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CONWQD.php b/Utils/EDI/Edifact/CONWQD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COPARN.php b/Utils/EDI/Edifact/COPARN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COPAYM.php b/Utils/EDI/Edifact/COPAYM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COPINO.php b/Utils/EDI/Edifact/COPINO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COPRAR.php b/Utils/EDI/Edifact/COPRAR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COREOR.php b/Utils/EDI/Edifact/COREOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COSTCO.php b/Utils/EDI/Edifact/COSTCO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/COSTOR.php b/Utils/EDI/Edifact/COSTOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CREADV.php b/Utils/EDI/Edifact/CREADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CREEXT.php b/Utils/EDI/Edifact/CREEXT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CREMUL.php b/Utils/EDI/Edifact/CREMUL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSCAR.php b/Utils/EDI/Edifact/CUSCAR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSDEC.php b/Utils/EDI/Edifact/CUSDEC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSEXP.php b/Utils/EDI/Edifact/CUSEXP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSPED.php b/Utils/EDI/Edifact/CUSPED.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSREP.php b/Utils/EDI/Edifact/CUSREP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/CUSRES.php b/Utils/EDI/Edifact/CUSRES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/AJT.php b/Utils/EDI/Edifact/Components/AJT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/ALC.php b/Utils/EDI/Edifact/Components/ALC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/ALI.php b/Utils/EDI/Edifact/Components/ALI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/APR.php b/Utils/EDI/Edifact/Components/APR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/BGM.php b/Utils/EDI/Edifact/Components/BGM.php deleted file mode 100644 index 8b73c3e85..000000000 --- a/Utils/EDI/Edifact/Components/BGM.php +++ /dev/null @@ -1,47 +0,0 @@ -type = $type; - $this->version = $version; - $this->subersion = $subersion; - $this->un = $un; - $this->bdewVersion = $bdewVersion; - } -} diff --git a/Utils/EDI/Edifact/Components/CAV.php b/Utils/EDI/Edifact/Components/CAV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/CCI.php b/Utils/EDI/Edifact/Components/CCI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/CNT.php b/Utils/EDI/Edifact/Components/CNT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/COM.php b/Utils/EDI/Edifact/Components/COM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/CTA.php b/Utils/EDI/Edifact/Components/CTA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/CUX.php b/Utils/EDI/Edifact/Components/CUX.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/DGS.php b/Utils/EDI/Edifact/Components/DGS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/DOC.php b/Utils/EDI/Edifact/Components/DOC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/EQD.php b/Utils/EDI/Edifact/Components/EQD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/FII.php b/Utils/EDI/Edifact/Components/FII.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/FTX.php b/Utils/EDI/Edifact/Components/FTX.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/GEI.php b/Utils/EDI/Edifact/Components/GEI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/GIN.php b/Utils/EDI/Edifact/Components/GIN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/GIR.php b/Utils/EDI/Edifact/Components/GIR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/GIS.php b/Utils/EDI/Edifact/Components/GIS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/HAN.php b/Utils/EDI/Edifact/Components/HAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/IMD.php b/Utils/EDI/Edifact/Components/IMD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/INP.php b/Utils/EDI/Edifact/Components/INP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/LIN.php b/Utils/EDI/Edifact/Components/LIN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/LOC.php b/Utils/EDI/Edifact/Components/LOC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/MEA.php b/Utils/EDI/Edifact/Components/MEA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/MOA.php b/Utils/EDI/Edifact/Components/MOA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/MTD.php b/Utils/EDI/Edifact/Components/MTD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/NAD.php b/Utils/EDI/Edifact/Components/NAD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PAC.php b/Utils/EDI/Edifact/Components/PAC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PAI.php b/Utils/EDI/Edifact/Components/PAI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PAT.php b/Utils/EDI/Edifact/Components/PAT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PCD.php b/Utils/EDI/Edifact/Components/PCD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PCI.php b/Utils/EDI/Edifact/Components/PCI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PGI.php b/Utils/EDI/Edifact/Components/PGI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PIA.php b/Utils/EDI/Edifact/Components/PIA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PRI.php b/Utils/EDI/Edifact/Components/PRI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/PYT.php b/Utils/EDI/Edifact/Components/PYT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/QTY.php b/Utils/EDI/Edifact/Components/QTY.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/QVR.php b/Utils/EDI/Edifact/Components/QVR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/RCS.php b/Utils/EDI/Edifact/Components/RCS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/REF.php b/Utils/EDI/Edifact/Components/REF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/RJL.php b/Utils/EDI/Edifact/Components/RJL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/RNG.php b/Utils/EDI/Edifact/Components/RNG.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/RTE.php b/Utils/EDI/Edifact/Components/RTE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/SEL.php b/Utils/EDI/Edifact/Components/SEL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/STG.php b/Utils/EDI/Edifact/Components/STG.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/TAX.php b/Utils/EDI/Edifact/Components/TAX.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/TDT.php b/Utils/EDI/Edifact/Components/TDT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/TOD.php b/Utils/EDI/Edifact/Components/TOD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/TSR.php b/Utils/EDI/Edifact/Components/TSR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/UNH.php b/Utils/EDI/Edifact/Components/UNH.php deleted file mode 100644 index dfae12a0e..000000000 --- a/Utils/EDI/Edifact/Components/UNH.php +++ /dev/null @@ -1,50 +0,0 @@ -ref = $ref; - $this->type = $type; - $this->version = $version; - $this->subersion = $subersion; - $this->un = $un; - $this->bdewVersion = $bdewVersion; - } -} diff --git a/Utils/EDI/Edifact/Components/UNS.php b/Utils/EDI/Edifact/Components/UNS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/Components/UNT.php b/Utils/EDI/Edifact/Components/UNT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DEBADV.php b/Utils/EDI/Edifact/DEBADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DEBMUL.php b/Utils/EDI/Edifact/DEBMUL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DEBREC.php b/Utils/EDI/Edifact/DEBREC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DELFOR.php b/Utils/EDI/Edifact/DELFOR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DELJIT.php b/Utils/EDI/Edifact/DELJIT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DESADV.php b/Utils/EDI/Edifact/DESADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DESTIM.php b/Utils/EDI/Edifact/DESTIM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DGRECA.php b/Utils/EDI/Edifact/DGRECA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DIRDEB.php b/Utils/EDI/Edifact/DIRDEB.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DIRDEF.php b/Utils/EDI/Edifact/DIRDEF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DMRDEF.php b/Utils/EDI/Edifact/DMRDEF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DMSTAT.php b/Utils/EDI/Edifact/DMSTAT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCADV.php b/Utils/EDI/Edifact/DOCADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCAMA.php b/Utils/EDI/Edifact/DOCAMA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCAMI.php b/Utils/EDI/Edifact/DOCAMI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCAMR.php b/Utils/EDI/Edifact/DOCAMR.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCAPP.php b/Utils/EDI/Edifact/DOCAPP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCARE.php b/Utils/EDI/Edifact/DOCARE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/DOCINF.php b/Utils/EDI/Edifact/DOCINF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ENTREC.php b/Utils/EDI/Edifact/ENTREC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/FINCAN.php b/Utils/EDI/Edifact/FINCAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/FINPAY.php b/Utils/EDI/Edifact/FINPAY.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/FINSTA.php b/Utils/EDI/Edifact/FINSTA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/GENRAL.php b/Utils/EDI/Edifact/GENRAL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/GESMES.php b/Utils/EDI/Edifact/GESMES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/HANMOV.php b/Utils/EDI/Edifact/HANMOV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ICASRP.php b/Utils/EDI/Edifact/ICASRP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ICSOLI.php b/Utils/EDI/Edifact/ICSOLI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFCSUM.php b/Utils/EDI/Edifact/IFCSUM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTCCA.php b/Utils/EDI/Edifact/IFTCCA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTDGN.php b/Utils/EDI/Edifact/IFTDGN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTFCC.php b/Utils/EDI/Edifact/IFTFCC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTIAG.php b/Utils/EDI/Edifact/IFTIAG.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTICL.php b/Utils/EDI/Edifact/IFTICL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMAN.php b/Utils/EDI/Edifact/IFTMAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMBC.php b/Utils/EDI/Edifact/IFTMBC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMBF.php b/Utils/EDI/Edifact/IFTMBF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMBP.php b/Utils/EDI/Edifact/IFTMBP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMCA.php b/Utils/EDI/Edifact/IFTMCA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMCS.php b/Utils/EDI/Edifact/IFTMCS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTMIN.php b/Utils/EDI/Edifact/IFTMIN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTRIN.php b/Utils/EDI/Edifact/IFTRIN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTSAI.php b/Utils/EDI/Edifact/IFTSAI.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTSTA.php b/Utils/EDI/Edifact/IFTSTA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IFTSTQ.php b/Utils/EDI/Edifact/IFTSTQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IMPDEF.php b/Utils/EDI/Edifact/IMPDEF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INFCON.php b/Utils/EDI/Edifact/INFCON.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INFENT.php b/Utils/EDI/Edifact/INFENT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INSDES.php b/Utils/EDI/Edifact/INSDES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INSPRE.php b/Utils/EDI/Edifact/INSPRE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INSREQ.php b/Utils/EDI/Edifact/INSREQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INSRPT.php b/Utils/EDI/Edifact/INSRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/INVOIC.php b/Utils/EDI/Edifact/INVOIC.php deleted file mode 100644 index 34bc4b54b..000000000 --- a/Utils/EDI/Edifact/INVOIC.php +++ /dev/null @@ -1,41 +0,0 @@ -unh = new UNH('INVOIC', 'D', '06A', 'UN', '2.6d'); - $this->bgm = new BGM(); - } -} diff --git a/Utils/EDI/Edifact/INVRPT.php b/Utils/EDI/Edifact/INVRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IPPOAD.php b/Utils/EDI/Edifact/IPPOAD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/IPPOMO.php b/Utils/EDI/Edifact/IPPOMO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ISENDS.php b/Utils/EDI/Edifact/ISENDS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ITRRPT.php b/Utils/EDI/Edifact/ITRRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JAPRES.php b/Utils/EDI/Edifact/JAPRES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JINFDE.php b/Utils/EDI/Edifact/JINFDE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JOBAPP.php b/Utils/EDI/Edifact/JOBAPP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JOBCON.php b/Utils/EDI/Edifact/JOBCON.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JOBMOD.php b/Utils/EDI/Edifact/JOBMOD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JOBOFF.php b/Utils/EDI/Edifact/JOBOFF.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/JUPREQ.php b/Utils/EDI/Edifact/JUPREQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/LEDGER.php b/Utils/EDI/Edifact/LEDGER.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/LREACT.php b/Utils/EDI/Edifact/LREACT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/LRECLM.php b/Utils/EDI/Edifact/LRECLM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEDPID.php b/Utils/EDI/Edifact/MEDPID.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEDPRE.php b/Utils/EDI/Edifact/MEDPRE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEDREQ.php b/Utils/EDI/Edifact/MEDREQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEDRPT.php b/Utils/EDI/Edifact/MEDRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEDRUC.php b/Utils/EDI/Edifact/MEDRUC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MEQPOS.php b/Utils/EDI/Edifact/MEQPOS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MOVINS.php b/Utils/EDI/Edifact/MOVINS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/MSCONS.php b/Utils/EDI/Edifact/MSCONS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ORDCHG.php b/Utils/EDI/Edifact/ORDCHG.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ORDERS.php b/Utils/EDI/Edifact/ORDERS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/ORDRSP.php b/Utils/EDI/Edifact/ORDRSP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/OSTENQ.php b/Utils/EDI/Edifact/OSTENQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/OSTRPT.php b/Utils/EDI/Edifact/OSTRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PARTIN.php b/Utils/EDI/Edifact/PARTIN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PAXLST.php b/Utils/EDI/Edifact/PAXLST.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PAYDUC.php b/Utils/EDI/Edifact/PAYDUC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PAYEXT.php b/Utils/EDI/Edifact/PAYEXT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PAYMUL.php b/Utils/EDI/Edifact/PAYMUL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PAYORD.php b/Utils/EDI/Edifact/PAYORD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PRICAT.php b/Utils/EDI/Edifact/PRICAT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PRIHIS.php b/Utils/EDI/Edifact/PRIHIS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PROCST.php b/Utils/EDI/Edifact/PROCST.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PRODAT.php b/Utils/EDI/Edifact/PRODAT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PRODEX.php b/Utils/EDI/Edifact/PRODEX.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PROINQ.php b/Utils/EDI/Edifact/PROINQ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PROSRV.php b/Utils/EDI/Edifact/PROSRV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PROTAP.php b/Utils/EDI/Edifact/PROTAP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/PRPAID.php b/Utils/EDI/Edifact/PRPAID.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/QALITY.php b/Utils/EDI/Edifact/QALITY.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/QUOTES.php b/Utils/EDI/Edifact/QUOTES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RDRMES.php b/Utils/EDI/Edifact/RDRMES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REBORD.php b/Utils/EDI/Edifact/REBORD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RECADV.php b/Utils/EDI/Edifact/RECADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RECALC.php b/Utils/EDI/Edifact/RECALC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RECECO.php b/Utils/EDI/Edifact/RECECO.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RECLAM.php b/Utils/EDI/Edifact/RECLAM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RECORD.php b/Utils/EDI/Edifact/RECORD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REGENT.php b/Utils/EDI/Edifact/REGENT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RELIST.php b/Utils/EDI/Edifact/RELIST.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REMADV.php b/Utils/EDI/Edifact/REMADV.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REPREM.php b/Utils/EDI/Edifact/REPREM.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REQDOC.php b/Utils/EDI/Edifact/REQDOC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/REQOTE.php b/Utils/EDI/Edifact/REQOTE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RESETT.php b/Utils/EDI/Edifact/RESETT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RESMSG.php b/Utils/EDI/Edifact/RESMSG.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RETACC.php b/Utils/EDI/Edifact/RETACC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RETANN.php b/Utils/EDI/Edifact/RETANN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RETINS.php b/Utils/EDI/Edifact/RETINS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/RPCALL.php b/Utils/EDI/Edifact/RPCALL.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SAFHAZ.php b/Utils/EDI/Edifact/SAFHAZ.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SANCRT.php b/Utils/EDI/Edifact/SANCRT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SLSFCT.php b/Utils/EDI/Edifact/SLSFCT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SLSRPT.php b/Utils/EDI/Edifact/SLSRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SOCADE.php b/Utils/EDI/Edifact/SOCADE.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SSIMOD.php b/Utils/EDI/Edifact/SSIMOD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SSRECH.php b/Utils/EDI/Edifact/SSRECH.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SSREGW.php b/Utils/EDI/Edifact/SSREGW.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/STATAC.php b/Utils/EDI/Edifact/STATAC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/STLRPT.php b/Utils/EDI/Edifact/STLRPT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SUPCOT.php b/Utils/EDI/Edifact/SUPCOT.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SUPMAN.php b/Utils/EDI/Edifact/SUPMAN.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/SUPRES.php b/Utils/EDI/Edifact/SUPRES.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/TANSTA.php b/Utils/EDI/Edifact/TANSTA.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/TAXCON.php b/Utils/EDI/Edifact/TAXCON.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/TPFREP.php b/Utils/EDI/Edifact/TPFREP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/UTILMD.php b/Utils/EDI/Edifact/UTILMD.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/UTILTS.php b/Utils/EDI/Edifact/UTILTS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/VATDEC.php b/Utils/EDI/Edifact/VATDEC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/VESDEP.php b/Utils/EDI/Edifact/VESDEP.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/WASDIS.php b/Utils/EDI/Edifact/WASDIS.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/WKGRDC.php b/Utils/EDI/Edifact/WKGRDC.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/Utils/EDI/Edifact/WKGRRE.php b/Utils/EDI/Edifact/WKGRRE.php deleted file mode 100644 index e69de29bb..000000000