code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
protected function getSerializer() { return $this->serializer; }
Get the instance of the internal serializuer @return SerializerInterface
getSerializer
php
horstoeko/zugferd
src/ZugferdDocument.php
https://github.com/horstoeko/zugferd/blob/master/src/ZugferdDocument.php
MIT
public function getProfileDefinitionParameter(string $parameterName) { $profileDefinition = $this->getProfileDefinition(); if (isset($profileDefinition[$parameterName])) { return $profileDefinition[$parameterName]; } throw new ZugferdUnknownProfileParameterException($parameterName); }
Get a parameter from profile definition @param string $parameterName @return mixed @throws ZugferdUnknownProfileParameterException
getProfileDefinitionParameter
php
horstoeko/zugferd
src/ZugferdDocument.php
https://github.com/horstoeko/zugferd/blob/master/src/ZugferdDocument.php
MIT
public function deserialize($xmlContent) { $this->invoiceObject = $this->getSerializer()->deserialize($xmlContent, 'horstoeko\zugferd\entities\\' . $this->getProfileDefinitionParameter("name") . '\rsm\CrossIndustryInvoice', 'xml'); return $this->invoiceObject; }
Deserialize XML content to internal invoice object @param mixed $xmlContent @return \horstoeko\zugferd\entities\basic\rsm\CrossIndustryInvoice|\horstoeko\zugferd\entities\basicwl\rsm\CrossIndustryInvoice|\horstoeko\zugferd\entities\en16931\rsm\CrossIndustryInvoice|\horstoeko\zugferd\entities\extended\rsm\CrossIndustryInvoice|\horstoeko\zugferd\entities\minimum\rsm\CrossIndustryInvoice @throws ZugferdUnknownProfileParameterException @throws RuntimeException
deserialize
php
horstoeko/zugferd
src/ZugferdDocument.php
https://github.com/horstoeko/zugferd/blob/master/src/ZugferdDocument.php
MIT
private function getDocumentInvoiceObject() { $reflector = new \ReflectionClass($this->document); $method = $reflector->getMethod('getInvoiceObject'); $method->setAccessible(true); return $method->invoke($this->document); }
Returns the internal invoice object from the document @return object
getDocumentInvoiceObject
php
horstoeko/zugferd
src/ZugferdDocumentValidator.php
https://github.com/horstoeko/zugferd/blob/master/src/ZugferdDocumentValidator.php
MIT
public static function getSubscribingMethods() { return [ [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\minimum\udt\AmountType', 'method' => 'serializeAmountType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basic\udt\AmountType', 'method' => 'serializeAmountType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basicwl\udt\AmountType', 'method' => 'serializeAmountType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\en16931\udt\AmountType', 'method' => 'serializeAmountType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\extended\udt\AmountType', 'method' => 'serializeAmountType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basic\udt\QuantityType', 'method' => 'serializeQuantityType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basicwl\udt\QuantityType', 'method' => 'serializeQuantityType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\en16931\udt\QuantityType', 'method' => 'serializeQuantityType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\extended\udt\QuantityType', 'method' => 'serializeQuantityType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basic\udt\PercentType', 'method' => 'serializePercentType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basicwl\udt\PercentType', 'method' => 'serializePercentType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\en16931\udt\PercentType', 'method' => 'serializePercentType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\extended\udt\PercentType', 'method' => 'serializePercentType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basic\udt\IndicatorType', 'method' => 'serializeIndicatorType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basicwl\udt\IndicatorType', 'method' => 'serializeIndicatorType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\en16931\udt\IndicatorType', 'method' => 'serializeIndicatorType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\extended\udt\IndicatorType', 'method' => 'serializeIndicatorType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basic\udt\MeasureType', 'method' => 'serializeMeasureType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\basicwl\udt\MeasureType', 'method' => 'serializeMeasureType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\en16931\udt\MeasureType', 'method' => 'serializeMeasureType' ], [ 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, 'format' => 'xml', 'type' => 'horstoeko\zugferd\entities\extended\udt\MeasureType', 'method' => 'serializeMeasureType' ], ]; }
Return format: array( array( 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION, 'format' => 'json', 'type' => 'DateTime', 'method' => 'serializeDateTimeToJson', ), ) @return array
getSubscribingMethods
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function serializeAmountType(XmlSerializationVisitor $visitor, $data) { $node = $visitor->getDocument()->createTextNode( number_format( $data->value(), ZugferdSettings::getSpecialDecimalPlacesMap($visitor->getCurrentNode()->getNodePath(), ZugferdSettings::getAmountDecimals()), ZugferdSettings::getDecimalSeparator(), ZugferdSettings::getThousandsSeparator() ) ); if ($data->getCurrencyID() != null) { $attr = $visitor->getDocument()->createAttribute("currencyID"); $attr->value = $data->getCurrencyID(); $visitor->getCurrentNode()->appendChild($attr); } return $node; }
Serialize Anount type The amounts will be serialized (by default) with a precission of 2 digits @param XmlSerializationVisitor $visitor @param mixed $data
serializeAmountType
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function serializeQuantityType(XmlSerializationVisitor $visitor, $data) { $node = $visitor->getDocument()->createTextNode( number_format( $data->value(), ZugferdSettings::getSpecialDecimalPlacesMap($visitor->getCurrentNode()->getNodePath(), ZugferdSettings::getQuantityDecimals()), ZugferdSettings::getDecimalSeparator(), ZugferdSettings::getThousandsSeparator() ) ); if ($data->getUnitCode() != null) { $attr = $visitor->getDocument()->createAttribute("unitCode"); $attr->value = $data->getUnitCode(); $visitor->getCurrentNode()->appendChild($attr); } return $node; }
Serialize quantity type The quantity will be serialized (by default) with a precission of 2 digits @param XmlSerializationVisitor $visitor @param mixed $data
serializeQuantityType
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function serializePercentType(XmlSerializationVisitor $visitor, $data) { return $visitor->getDocument()->createTextNode( number_format( $data->value(), ZugferdSettings::getSpecialDecimalPlacesMap($visitor->getCurrentNode()->getNodePath(), ZugferdSettings::getPercentDecimals()), ZugferdSettings::getDecimalSeparator(), ZugferdSettings::getThousandsSeparator() ) ); }
Serialize a percantage value The valze will be serialized (by default) with a precission of 2 digits @param XmlSerializationVisitor $visitor @param mixed $data
serializePercentType
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function serializeMeasureType(XmlSerializationVisitor $visitor, $data) { $node = $visitor->getDocument()->createTextNode( number_format( $data->value(), ZugferdSettings::getSpecialDecimalPlacesMap($visitor->getCurrentNode()->getNodePath(), ZugferdSettings::getMeasureDecimals()), ZugferdSettings::getDecimalSeparator(), ZugferdSettings::getThousandsSeparator() ) ); if ($data->getUnitCode() != null) { $attr = $visitor->getDocument()->createAttribute("unitCode"); $attr->value = $data->getUnitCode(); $visitor->getCurrentNode()->appendChild($attr); } return $node; }
Serialize a meassure value The valze will be serialized (by default) with a precission of 2 digits @param XmlSerializationVisitor $visitor @param mixed $data
serializeMeasureType
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function serializeIndicatorType(XmlSerializationVisitor $visitor, $data) { return $visitor->getDocument()->createElement('udt:Indicator', $data->getIndicator() == false ? 'false' : 'true'); }
Serialize a inditcator False and true values will be serialized correctly (false won't be serialized in the default implementation) @param XmlSerializationVisitor $visitor @param mixed $data
serializeIndicatorType
php
horstoeko/zugferd
src/jms/ZugferdTypesHandler.php
https://github.com/horstoeko/zugferd/blob/master/src/jms/ZugferdTypesHandler.php
MIT
public function addToIncludedSupplyChainTradeLineItem(\horstoeko\zugferd\entities\en16931\ram\SupplyChainTradeLineItemType $includedSupplyChainTradeLineItem) { $this->includedSupplyChainTradeLineItem[] = $includedSupplyChainTradeLineItem; return $this; }
Adds as includedSupplyChainTradeLineItem @return self @param \horstoeko\zugferd\entities\en16931\ram\SupplyChainTradeLineItemType $includedSupplyChainTradeLineItem
addToIncludedSupplyChainTradeLineItem
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function issetIncludedSupplyChainTradeLineItem($index) { return isset($this->includedSupplyChainTradeLineItem[$index]); }
isset includedSupplyChainTradeLineItem @param int|string $index @return bool
issetIncludedSupplyChainTradeLineItem
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function unsetIncludedSupplyChainTradeLineItem($index) { unset($this->includedSupplyChainTradeLineItem[$index]); }
unset includedSupplyChainTradeLineItem @param int|string $index @return void
unsetIncludedSupplyChainTradeLineItem
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function getIncludedSupplyChainTradeLineItem() { return $this->includedSupplyChainTradeLineItem; }
Gets as includedSupplyChainTradeLineItem @return \horstoeko\zugferd\entities\en16931\ram\SupplyChainTradeLineItemType[]
getIncludedSupplyChainTradeLineItem
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function setIncludedSupplyChainTradeLineItem(array $includedSupplyChainTradeLineItem) { $this->includedSupplyChainTradeLineItem = $includedSupplyChainTradeLineItem; return $this; }
Sets a new includedSupplyChainTradeLineItem @param \horstoeko\zugferd\entities\en16931\ram\SupplyChainTradeLineItemType[] $includedSupplyChainTradeLineItem @return self
setIncludedSupplyChainTradeLineItem
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function getApplicableHeaderTradeAgreement() { return $this->applicableHeaderTradeAgreement; }
Gets as applicableHeaderTradeAgreement @return \horstoeko\zugferd\entities\en16931\ram\HeaderTradeAgreementType
getApplicableHeaderTradeAgreement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function setApplicableHeaderTradeAgreement(\horstoeko\zugferd\entities\en16931\ram\HeaderTradeAgreementType $applicableHeaderTradeAgreement) { $this->applicableHeaderTradeAgreement = $applicableHeaderTradeAgreement; return $this; }
Sets a new applicableHeaderTradeAgreement @param \horstoeko\zugferd\entities\en16931\ram\HeaderTradeAgreementType $applicableHeaderTradeAgreement @return self
setApplicableHeaderTradeAgreement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function getApplicableHeaderTradeDelivery() { return $this->applicableHeaderTradeDelivery; }
Gets as applicableHeaderTradeDelivery @return \horstoeko\zugferd\entities\en16931\ram\HeaderTradeDeliveryType
getApplicableHeaderTradeDelivery
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function setApplicableHeaderTradeDelivery(\horstoeko\zugferd\entities\en16931\ram\HeaderTradeDeliveryType $applicableHeaderTradeDelivery) { $this->applicableHeaderTradeDelivery = $applicableHeaderTradeDelivery; return $this; }
Sets a new applicableHeaderTradeDelivery @param \horstoeko\zugferd\entities\en16931\ram\HeaderTradeDeliveryType $applicableHeaderTradeDelivery @return self
setApplicableHeaderTradeDelivery
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function getApplicableHeaderTradeSettlement() { return $this->applicableHeaderTradeSettlement; }
Gets as applicableHeaderTradeSettlement @return \horstoeko\zugferd\entities\en16931\ram\HeaderTradeSettlementType
getApplicableHeaderTradeSettlement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function setApplicableHeaderTradeSettlement(\horstoeko\zugferd\entities\en16931\ram\HeaderTradeSettlementType $applicableHeaderTradeSettlement) { $this->applicableHeaderTradeSettlement = $applicableHeaderTradeSettlement; return $this; }
Sets a new applicableHeaderTradeSettlement @param \horstoeko\zugferd\entities\en16931\ram\HeaderTradeSettlementType $applicableHeaderTradeSettlement @return self
setApplicableHeaderTradeSettlement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeTransactionType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeTransactionType.php
MIT
public function getAssociatedDocumentLineDocument() { return $this->associatedDocumentLineDocument; }
Gets as associatedDocumentLineDocument @return \horstoeko\zugferd\entities\en16931\ram\DocumentLineDocumentType
getAssociatedDocumentLineDocument
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setAssociatedDocumentLineDocument(\horstoeko\zugferd\entities\en16931\ram\DocumentLineDocumentType $associatedDocumentLineDocument) { $this->associatedDocumentLineDocument = $associatedDocumentLineDocument; return $this; }
Sets a new associatedDocumentLineDocument @param \horstoeko\zugferd\entities\en16931\ram\DocumentLineDocumentType $associatedDocumentLineDocument @return self
setAssociatedDocumentLineDocument
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setSpecifiedTradeProduct(\horstoeko\zugferd\entities\en16931\ram\TradeProductType $specifiedTradeProduct) { $this->specifiedTradeProduct = $specifiedTradeProduct; return $this; }
Sets a new specifiedTradeProduct @param \horstoeko\zugferd\entities\en16931\ram\TradeProductType $specifiedTradeProduct @return self
setSpecifiedTradeProduct
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function getSpecifiedLineTradeAgreement() { return $this->specifiedLineTradeAgreement; }
Gets as specifiedLineTradeAgreement @return \horstoeko\zugferd\entities\en16931\ram\LineTradeAgreementType
getSpecifiedLineTradeAgreement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setSpecifiedLineTradeAgreement(\horstoeko\zugferd\entities\en16931\ram\LineTradeAgreementType $specifiedLineTradeAgreement) { $this->specifiedLineTradeAgreement = $specifiedLineTradeAgreement; return $this; }
Sets a new specifiedLineTradeAgreement @param \horstoeko\zugferd\entities\en16931\ram\LineTradeAgreementType $specifiedLineTradeAgreement @return self
setSpecifiedLineTradeAgreement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function getSpecifiedLineTradeDelivery() { return $this->specifiedLineTradeDelivery; }
Gets as specifiedLineTradeDelivery @return \horstoeko\zugferd\entities\en16931\ram\LineTradeDeliveryType
getSpecifiedLineTradeDelivery
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setSpecifiedLineTradeDelivery(\horstoeko\zugferd\entities\en16931\ram\LineTradeDeliveryType $specifiedLineTradeDelivery) { $this->specifiedLineTradeDelivery = $specifiedLineTradeDelivery; return $this; }
Sets a new specifiedLineTradeDelivery @param \horstoeko\zugferd\entities\en16931\ram\LineTradeDeliveryType $specifiedLineTradeDelivery @return self
setSpecifiedLineTradeDelivery
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function getSpecifiedLineTradeSettlement() { return $this->specifiedLineTradeSettlement; }
Gets as specifiedLineTradeSettlement @return \horstoeko\zugferd\entities\en16931\ram\LineTradeSettlementType
getSpecifiedLineTradeSettlement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setSpecifiedLineTradeSettlement(\horstoeko\zugferd\entities\en16931\ram\LineTradeSettlementType $specifiedLineTradeSettlement) { $this->specifiedLineTradeSettlement = $specifiedLineTradeSettlement; return $this; }
Sets a new specifiedLineTradeSettlement @param \horstoeko\zugferd\entities\en16931\ram\LineTradeSettlementType $specifiedLineTradeSettlement @return self
setSpecifiedLineTradeSettlement
php
horstoeko/zugferd
src/entities/en16931/ram/SupplyChainTradeLineItemType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/SupplyChainTradeLineItemType.php
MIT
public function setAllowanceTotalAmount(?\horstoeko\zugferd\entities\en16931\udt\AmountType $allowanceTotalAmount = null) { $this->allowanceTotalAmount = $allowanceTotalAmount; return $this; }
Sets a new allowanceTotalAmount @param \horstoeko\zugferd\entities\en16931\udt\AmountType $allowanceTotalAmount @return self
setAllowanceTotalAmount
php
horstoeko/zugferd
src/entities/en16931/ram/TradeSettlementHeaderMonetarySummationType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeSettlementHeaderMonetarySummationType.php
MIT
public function setTaxBasisTotalAmount(\horstoeko\zugferd\entities\en16931\udt\AmountType $taxBasisTotalAmount) { $this->taxBasisTotalAmount = $taxBasisTotalAmount; return $this; }
Sets a new taxBasisTotalAmount @param \horstoeko\zugferd\entities\en16931\udt\AmountType $taxBasisTotalAmount @return self
setTaxBasisTotalAmount
php
horstoeko/zugferd
src/entities/en16931/ram/TradeSettlementHeaderMonetarySummationType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeSettlementHeaderMonetarySummationType.php
MIT
public function getActualDeliverySupplyChainEvent() { return $this->actualDeliverySupplyChainEvent; }
Gets as actualDeliverySupplyChainEvent @return \horstoeko\zugferd\entities\en16931\ram\SupplyChainEventType
getActualDeliverySupplyChainEvent
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function setActualDeliverySupplyChainEvent(?\horstoeko\zugferd\entities\en16931\ram\SupplyChainEventType $actualDeliverySupplyChainEvent = null) { $this->actualDeliverySupplyChainEvent = $actualDeliverySupplyChainEvent; return $this; }
Sets a new actualDeliverySupplyChainEvent @param \horstoeko\zugferd\entities\en16931\ram\SupplyChainEventType $actualDeliverySupplyChainEvent @return self
setActualDeliverySupplyChainEvent
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function getDespatchAdviceReferencedDocument() { return $this->despatchAdviceReferencedDocument; }
Gets as despatchAdviceReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType
getDespatchAdviceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function setDespatchAdviceReferencedDocument(?\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $despatchAdviceReferencedDocument = null) { $this->despatchAdviceReferencedDocument = $despatchAdviceReferencedDocument; return $this; }
Sets a new despatchAdviceReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $despatchAdviceReferencedDocument @return self
setDespatchAdviceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function getReceivingAdviceReferencedDocument() { return $this->receivingAdviceReferencedDocument; }
Gets as receivingAdviceReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType
getReceivingAdviceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function setReceivingAdviceReferencedDocument(?\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $receivingAdviceReferencedDocument = null) { $this->receivingAdviceReferencedDocument = $receivingAdviceReferencedDocument; return $this; }
Sets a new receivingAdviceReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $receivingAdviceReferencedDocument @return self
setReceivingAdviceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeDeliveryType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeDeliveryType.php
MIT
public function addToApplicableProductCharacteristic(\horstoeko\zugferd\entities\en16931\ram\ProductCharacteristicType $applicableProductCharacteristic) { $this->applicableProductCharacteristic[] = $applicableProductCharacteristic; return $this; }
Adds as applicableProductCharacteristic @return self @param \horstoeko\zugferd\entities\en16931\ram\ProductCharacteristicType $applicableProductCharacteristic
addToApplicableProductCharacteristic
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function issetApplicableProductCharacteristic($index) { return isset($this->applicableProductCharacteristic[$index]); }
isset applicableProductCharacteristic @param int|string $index @return bool
issetApplicableProductCharacteristic
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function unsetApplicableProductCharacteristic($index) { unset($this->applicableProductCharacteristic[$index]); }
unset applicableProductCharacteristic @param int|string $index @return void
unsetApplicableProductCharacteristic
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function getApplicableProductCharacteristic() { return $this->applicableProductCharacteristic; }
Gets as applicableProductCharacteristic @return \horstoeko\zugferd\entities\en16931\ram\ProductCharacteristicType[]
getApplicableProductCharacteristic
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function setApplicableProductCharacteristic(?array $applicableProductCharacteristic = null) { $this->applicableProductCharacteristic = $applicableProductCharacteristic; return $this; }
Sets a new applicableProductCharacteristic @param \horstoeko\zugferd\entities\en16931\ram\ProductCharacteristicType[] $applicableProductCharacteristic @return self
setApplicableProductCharacteristic
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function addToDesignatedProductClassification(\horstoeko\zugferd\entities\en16931\ram\ProductClassificationType $designatedProductClassification) { $this->designatedProductClassification[] = $designatedProductClassification; return $this; }
Adds as designatedProductClassification @return self @param \horstoeko\zugferd\entities\en16931\ram\ProductClassificationType $designatedProductClassification
addToDesignatedProductClassification
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function issetDesignatedProductClassification($index) { return isset($this->designatedProductClassification[$index]); }
isset designatedProductClassification @param int|string $index @return bool
issetDesignatedProductClassification
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function unsetDesignatedProductClassification($index) { unset($this->designatedProductClassification[$index]); }
unset designatedProductClassification @param int|string $index @return void
unsetDesignatedProductClassification
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function getDesignatedProductClassification() { return $this->designatedProductClassification; }
Gets as designatedProductClassification @return \horstoeko\zugferd\entities\en16931\ram\ProductClassificationType[]
getDesignatedProductClassification
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function setDesignatedProductClassification(?array $designatedProductClassification = null) { $this->designatedProductClassification = $designatedProductClassification; return $this; }
Sets a new designatedProductClassification @param \horstoeko\zugferd\entities\en16931\ram\ProductClassificationType[] $designatedProductClassification @return self
setDesignatedProductClassification
php
horstoeko/zugferd
src/entities/en16931/ram/TradeProductType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradeProductType.php
MIT
public function getBuyerOrderReferencedDocument() { return $this->buyerOrderReferencedDocument; }
Gets as buyerOrderReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType
getBuyerOrderReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function setBuyerOrderReferencedDocument(?\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $buyerOrderReferencedDocument = null) { $this->buyerOrderReferencedDocument = $buyerOrderReferencedDocument; return $this; }
Sets a new buyerOrderReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $buyerOrderReferencedDocument @return self
setBuyerOrderReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function getGrossPriceProductTradePrice() { return $this->grossPriceProductTradePrice; }
Gets as grossPriceProductTradePrice @return \horstoeko\zugferd\entities\en16931\ram\TradePriceType
getGrossPriceProductTradePrice
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function setGrossPriceProductTradePrice(?\horstoeko\zugferd\entities\en16931\ram\TradePriceType $grossPriceProductTradePrice = null) { $this->grossPriceProductTradePrice = $grossPriceProductTradePrice; return $this; }
Sets a new grossPriceProductTradePrice @param \horstoeko\zugferd\entities\en16931\ram\TradePriceType $grossPriceProductTradePrice @return self
setGrossPriceProductTradePrice
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function getNetPriceProductTradePrice() { return $this->netPriceProductTradePrice; }
Gets as netPriceProductTradePrice @return \horstoeko\zugferd\entities\en16931\ram\TradePriceType
getNetPriceProductTradePrice
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function setNetPriceProductTradePrice(\horstoeko\zugferd\entities\en16931\ram\TradePriceType $netPriceProductTradePrice) { $this->netPriceProductTradePrice = $netPriceProductTradePrice; return $this; }
Sets a new netPriceProductTradePrice @param \horstoeko\zugferd\entities\en16931\ram\TradePriceType $netPriceProductTradePrice @return self
setNetPriceProductTradePrice
php
horstoeko/zugferd
src/entities/en16931/ram/LineTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/LineTradeAgreementType.php
MIT
public function setCreditorReferenceID(?\horstoeko\zugferd\entities\en16931\udt\IDType $creditorReferenceID = null) { $this->creditorReferenceID = $creditorReferenceID; return $this; }
Sets a new creditorReferenceID @param \horstoeko\zugferd\entities\en16931\udt\IDType $creditorReferenceID @return self
setCreditorReferenceID
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setInvoiceCurrencyCode($invoiceCurrencyCode) { $this->invoiceCurrencyCode = $invoiceCurrencyCode; return $this; }
Sets a new invoiceCurrencyCode @param string $invoiceCurrencyCode @return self
setInvoiceCurrencyCode
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function addToSpecifiedTradeSettlementPaymentMeans(\horstoeko\zugferd\entities\en16931\ram\TradeSettlementPaymentMeansType $specifiedTradeSettlementPaymentMeans) { $this->specifiedTradeSettlementPaymentMeans[] = $specifiedTradeSettlementPaymentMeans; return $this; }
Adds as specifiedTradeSettlementPaymentMeans @return self @param \horstoeko\zugferd\entities\en16931\ram\TradeSettlementPaymentMeansType $specifiedTradeSettlementPaymentMeans
addToSpecifiedTradeSettlementPaymentMeans
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function issetSpecifiedTradeSettlementPaymentMeans($index) { return isset($this->specifiedTradeSettlementPaymentMeans[$index]); }
isset specifiedTradeSettlementPaymentMeans @param int|string $index @return bool
issetSpecifiedTradeSettlementPaymentMeans
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function unsetSpecifiedTradeSettlementPaymentMeans($index) { unset($this->specifiedTradeSettlementPaymentMeans[$index]); }
unset specifiedTradeSettlementPaymentMeans @param int|string $index @return void
unsetSpecifiedTradeSettlementPaymentMeans
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getSpecifiedTradeSettlementPaymentMeans() { return $this->specifiedTradeSettlementPaymentMeans; }
Gets as specifiedTradeSettlementPaymentMeans @return \horstoeko\zugferd\entities\en16931\ram\TradeSettlementPaymentMeansType[]
getSpecifiedTradeSettlementPaymentMeans
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setSpecifiedTradeSettlementPaymentMeans(?array $specifiedTradeSettlementPaymentMeans = null) { $this->specifiedTradeSettlementPaymentMeans = $specifiedTradeSettlementPaymentMeans; return $this; }
Sets a new specifiedTradeSettlementPaymentMeans @param \horstoeko\zugferd\entities\en16931\ram\TradeSettlementPaymentMeansType[] $specifiedTradeSettlementPaymentMeans @return self
setSpecifiedTradeSettlementPaymentMeans
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getBillingSpecifiedPeriod() { return $this->billingSpecifiedPeriod; }
Gets as billingSpecifiedPeriod @return \horstoeko\zugferd\entities\en16931\ram\SpecifiedPeriodType
getBillingSpecifiedPeriod
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setBillingSpecifiedPeriod(?\horstoeko\zugferd\entities\en16931\ram\SpecifiedPeriodType $billingSpecifiedPeriod = null) { $this->billingSpecifiedPeriod = $billingSpecifiedPeriod; return $this; }
Sets a new billingSpecifiedPeriod @param \horstoeko\zugferd\entities\en16931\ram\SpecifiedPeriodType $billingSpecifiedPeriod @return self
setBillingSpecifiedPeriod
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function addToSpecifiedTradeAllowanceCharge(\horstoeko\zugferd\entities\en16931\ram\TradeAllowanceChargeType $specifiedTradeAllowanceCharge) { $this->specifiedTradeAllowanceCharge[] = $specifiedTradeAllowanceCharge; return $this; }
Adds as specifiedTradeAllowanceCharge @return self @param \horstoeko\zugferd\entities\en16931\ram\TradeAllowanceChargeType $specifiedTradeAllowanceCharge
addToSpecifiedTradeAllowanceCharge
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function issetSpecifiedTradeAllowanceCharge($index) { return isset($this->specifiedTradeAllowanceCharge[$index]); }
isset specifiedTradeAllowanceCharge @param int|string $index @return bool
issetSpecifiedTradeAllowanceCharge
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function unsetSpecifiedTradeAllowanceCharge($index) { unset($this->specifiedTradeAllowanceCharge[$index]); }
unset specifiedTradeAllowanceCharge @param int|string $index @return void
unsetSpecifiedTradeAllowanceCharge
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getSpecifiedTradeAllowanceCharge() { return $this->specifiedTradeAllowanceCharge; }
Gets as specifiedTradeAllowanceCharge @return \horstoeko\zugferd\entities\en16931\ram\TradeAllowanceChargeType[]
getSpecifiedTradeAllowanceCharge
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setSpecifiedTradeAllowanceCharge(?array $specifiedTradeAllowanceCharge = null) { $this->specifiedTradeAllowanceCharge = $specifiedTradeAllowanceCharge; return $this; }
Sets a new specifiedTradeAllowanceCharge @param \horstoeko\zugferd\entities\en16931\ram\TradeAllowanceChargeType[] $specifiedTradeAllowanceCharge @return self
setSpecifiedTradeAllowanceCharge
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getSpecifiedTradePaymentTerms() { return $this->specifiedTradePaymentTerms; }
Gets as specifiedTradePaymentTerms @return \horstoeko\zugferd\entities\en16931\ram\TradePaymentTermsType
getSpecifiedTradePaymentTerms
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setSpecifiedTradePaymentTerms(?\horstoeko\zugferd\entities\en16931\ram\TradePaymentTermsType $specifiedTradePaymentTerms = null) { $this->specifiedTradePaymentTerms = $specifiedTradePaymentTerms; return $this; }
Sets a new specifiedTradePaymentTerms @param \horstoeko\zugferd\entities\en16931\ram\TradePaymentTermsType $specifiedTradePaymentTerms @return self
setSpecifiedTradePaymentTerms
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getSpecifiedTradeSettlementHeaderMonetarySummation() { return $this->specifiedTradeSettlementHeaderMonetarySummation; }
Gets as specifiedTradeSettlementHeaderMonetarySummation @return \horstoeko\zugferd\entities\en16931\ram\TradeSettlementHeaderMonetarySummationType
getSpecifiedTradeSettlementHeaderMonetarySummation
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setSpecifiedTradeSettlementHeaderMonetarySummation(\horstoeko\zugferd\entities\en16931\ram\TradeSettlementHeaderMonetarySummationType $specifiedTradeSettlementHeaderMonetarySummation) { $this->specifiedTradeSettlementHeaderMonetarySummation = $specifiedTradeSettlementHeaderMonetarySummation; return $this; }
Sets a new specifiedTradeSettlementHeaderMonetarySummation @param \horstoeko\zugferd\entities\en16931\ram\TradeSettlementHeaderMonetarySummationType $specifiedTradeSettlementHeaderMonetarySummation @return self
setSpecifiedTradeSettlementHeaderMonetarySummation
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function addToInvoiceReferencedDocument(\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $invoiceReferencedDocument) { $this->invoiceReferencedDocument[] = $invoiceReferencedDocument; return $this; }
Adds as invoiceReferencedDocument @return self @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $invoiceReferencedDocument
addToInvoiceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function issetInvoiceReferencedDocument($index) { return isset($this->invoiceReferencedDocument[$index]); }
isset invoiceReferencedDocument @param int|string $index @return bool
issetInvoiceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function unsetInvoiceReferencedDocument($index) { unset($this->invoiceReferencedDocument[$index]); }
unset invoiceReferencedDocument @param int|string $index @return void
unsetInvoiceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getInvoiceReferencedDocument() { return $this->invoiceReferencedDocument; }
Gets as invoiceReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType[]
getInvoiceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setInvoiceReferencedDocument(?array $invoiceReferencedDocument = null) { $this->invoiceReferencedDocument = $invoiceReferencedDocument; return $this; }
Sets a new invoiceReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType[] $invoiceReferencedDocument @return self
setInvoiceReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getReceivableSpecifiedTradeAccountingAccount() { return $this->receivableSpecifiedTradeAccountingAccount; }
Gets as receivableSpecifiedTradeAccountingAccount @return \horstoeko\zugferd\entities\en16931\ram\TradeAccountingAccountType
getReceivableSpecifiedTradeAccountingAccount
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function setReceivableSpecifiedTradeAccountingAccount(?\horstoeko\zugferd\entities\en16931\ram\TradeAccountingAccountType $receivableSpecifiedTradeAccountingAccount = null) { $this->receivableSpecifiedTradeAccountingAccount = $receivableSpecifiedTradeAccountingAccount; return $this; }
Sets a new receivableSpecifiedTradeAccountingAccount @param \horstoeko\zugferd\entities\en16931\ram\TradeAccountingAccountType $receivableSpecifiedTradeAccountingAccount @return self
setReceivableSpecifiedTradeAccountingAccount
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeSettlementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeSettlementType.php
MIT
public function getSellerTaxRepresentativeTradeParty() { return $this->sellerTaxRepresentativeTradeParty; }
Gets as sellerTaxRepresentativeTradeParty @return \horstoeko\zugferd\entities\en16931\ram\TradePartyType
getSellerTaxRepresentativeTradeParty
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function setSellerTaxRepresentativeTradeParty(?\horstoeko\zugferd\entities\en16931\ram\TradePartyType $sellerTaxRepresentativeTradeParty = null) { $this->sellerTaxRepresentativeTradeParty = $sellerTaxRepresentativeTradeParty; return $this; }
Sets a new sellerTaxRepresentativeTradeParty @param \horstoeko\zugferd\entities\en16931\ram\TradePartyType $sellerTaxRepresentativeTradeParty @return self
setSellerTaxRepresentativeTradeParty
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function getSellerOrderReferencedDocument() { return $this->sellerOrderReferencedDocument; }
Gets as sellerOrderReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType
getSellerOrderReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function setSellerOrderReferencedDocument(?\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $sellerOrderReferencedDocument = null) { $this->sellerOrderReferencedDocument = $sellerOrderReferencedDocument; return $this; }
Sets a new sellerOrderReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $sellerOrderReferencedDocument @return self
setSellerOrderReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function getContractReferencedDocument() { return $this->contractReferencedDocument; }
Gets as contractReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType
getContractReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function setContractReferencedDocument(?\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $contractReferencedDocument = null) { $this->contractReferencedDocument = $contractReferencedDocument; return $this; }
Sets a new contractReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $contractReferencedDocument @return self
setContractReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function addToAdditionalReferencedDocument(\horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $additionalReferencedDocument) { $this->additionalReferencedDocument[] = $additionalReferencedDocument; return $this; }
Adds as additionalReferencedDocument @return self @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType $additionalReferencedDocument
addToAdditionalReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function issetAdditionalReferencedDocument($index) { return isset($this->additionalReferencedDocument[$index]); }
isset additionalReferencedDocument @param int|string $index @return bool
issetAdditionalReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function unsetAdditionalReferencedDocument($index) { unset($this->additionalReferencedDocument[$index]); }
unset additionalReferencedDocument @param int|string $index @return void
unsetAdditionalReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function getAdditionalReferencedDocument() { return $this->additionalReferencedDocument; }
Gets as additionalReferencedDocument @return \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType[]
getAdditionalReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function setAdditionalReferencedDocument(?array $additionalReferencedDocument = null) { $this->additionalReferencedDocument = $additionalReferencedDocument; return $this; }
Sets a new additionalReferencedDocument @param \horstoeko\zugferd\entities\en16931\ram\ReferencedDocumentType[] $additionalReferencedDocument @return self
setAdditionalReferencedDocument
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function getSpecifiedProcuringProject() { return $this->specifiedProcuringProject; }
Gets as specifiedProcuringProject @return \horstoeko\zugferd\entities\en16931\ram\ProcuringProjectType
getSpecifiedProcuringProject
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function setSpecifiedProcuringProject(?\horstoeko\zugferd\entities\en16931\ram\ProcuringProjectType $specifiedProcuringProject = null) { $this->specifiedProcuringProject = $specifiedProcuringProject; return $this; }
Sets a new specifiedProcuringProject @param \horstoeko\zugferd\entities\en16931\ram\ProcuringProjectType $specifiedProcuringProject @return self
setSpecifiedProcuringProject
php
horstoeko/zugferd
src/entities/en16931/ram/HeaderTradeAgreementType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/HeaderTradeAgreementType.php
MIT
public function getSpecifiedLegalOrganization() { return $this->specifiedLegalOrganization; }
Gets as specifiedLegalOrganization @return \horstoeko\zugferd\entities\en16931\ram\LegalOrganizationType
getSpecifiedLegalOrganization
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function setSpecifiedLegalOrganization(?\horstoeko\zugferd\entities\en16931\ram\LegalOrganizationType $specifiedLegalOrganization = null) { $this->specifiedLegalOrganization = $specifiedLegalOrganization; return $this; }
Sets a new specifiedLegalOrganization @param \horstoeko\zugferd\entities\en16931\ram\LegalOrganizationType $specifiedLegalOrganization @return self
setSpecifiedLegalOrganization
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function setDefinedTradeContact(?\horstoeko\zugferd\entities\en16931\ram\TradeContactType $definedTradeContact = null) { $this->definedTradeContact = $definedTradeContact; return $this; }
Sets a new definedTradeContact @param \horstoeko\zugferd\entities\en16931\ram\TradeContactType $definedTradeContact @return self
setDefinedTradeContact
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function getURIUniversalCommunication() { return $this->uRIUniversalCommunication; }
Gets as uRIUniversalCommunication @return \horstoeko\zugferd\entities\en16931\ram\UniversalCommunicationType
getURIUniversalCommunication
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function setURIUniversalCommunication(?\horstoeko\zugferd\entities\en16931\ram\UniversalCommunicationType $uRIUniversalCommunication = null) { $this->uRIUniversalCommunication = $uRIUniversalCommunication; return $this; }
Sets a new uRIUniversalCommunication @param \horstoeko\zugferd\entities\en16931\ram\UniversalCommunicationType $uRIUniversalCommunication @return self
setURIUniversalCommunication
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function addToSpecifiedTaxRegistration(\horstoeko\zugferd\entities\en16931\ram\TaxRegistrationType $specifiedTaxRegistration) { $this->specifiedTaxRegistration[] = $specifiedTaxRegistration; return $this; }
Adds as specifiedTaxRegistration @return self @param \horstoeko\zugferd\entities\en16931\ram\TaxRegistrationType $specifiedTaxRegistration
addToSpecifiedTaxRegistration
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function issetSpecifiedTaxRegistration($index) { return isset($this->specifiedTaxRegistration[$index]); }
isset specifiedTaxRegistration @param int|string $index @return bool
issetSpecifiedTaxRegistration
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT
public function unsetSpecifiedTaxRegistration($index) { unset($this->specifiedTaxRegistration[$index]); }
unset specifiedTaxRegistration @param int|string $index @return void
unsetSpecifiedTaxRegistration
php
horstoeko/zugferd
src/entities/en16931/ram/TradePartyType.php
https://github.com/horstoeko/zugferd/blob/master/src/entities/en16931/ram/TradePartyType.php
MIT