phpOMS/Utils/EDI/AnsiX12/Purchase/PurchaseOrder/EDI850Heading.php

55 lines
1.1 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
declare(strict_types = 1);
namespace phpOMS\Utils\EDI\AnsiX12\Purchase;
use phpOMS\Utils\EDI\AnsiX12\Component;
/**
* EDI 850 - Purchase order.
*
* @category Framework
* @package phpOMS\Utils\Converter
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
class EDI850Heading
{
private $headingTransactionSetHeader = null;
private $headingBeginningSegmentPO = null;
private $headingCurrency = '';
private $headingReferenceID = '';
private $headingAdministrativeCommunicationsContact = '';
private $headingDateTimeReference = null;
private $headignCarrierDetails = '';
private $headingMarksNumbers = 0;
private $headingLoopId = [];
public function __construct()
{
$this->headingTransactionSetHeader = new ST(850);
$this->headingBeginningSegmentPO = new BEG();
}
}