@@ -12,19 +12,19 @@ discard block |
||
| 12 | 12 | #[Attributes\Options\StringOption(90)] |
| 13 | 13 | public ?string $text = null; |
| 14 | 14 | #[Attributes\Options\FloatOption] |
| 15 | - public float|string|null $quantity = null; |
|
| 15 | + public float | string | null $quantity = null; |
|
| 16 | 16 | #[Attributes\Options\StringOption(10)] |
| 17 | 17 | public ?string $unit = null; |
| 18 | 18 | #[Attributes\Options\FloatOption] |
| 19 | - public float|string|null $coefficient = null; |
|
| 19 | + public float | string | null $coefficient = null; |
|
| 20 | 20 | #[Attributes\Options\BooleanOption] |
| 21 | - public bool|string|null $payVAT = null; |
|
| 21 | + public bool | string | null $payVAT = null; |
|
| 22 | 22 | #[Attributes\Options\EnumOption(Enums\RateVatEnum::class)] |
| 23 | - public Enums\EnhancedEnumInterface|string|null $rateVAT = null; |
|
| 23 | + public Enums\EnhancedEnumInterface | string | null $rateVAT = null; |
|
| 24 | 24 | #[Attributes\Options\FloatOption] |
| 25 | - public float|string|null $discountPercentage = null; |
|
| 26 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $homeCurrency = null; |
|
| 27 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $foreignCurrency = null; |
|
| 25 | + public float | string | null $discountPercentage = null; |
|
| 26 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $homeCurrency = null; |
|
| 27 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $foreignCurrency = null; |
|
| 28 | 28 | #[Attributes\RefElement] |
| 29 | 29 | public ?string $typeServiceMOSS = null; |
| 30 | 30 | #[Attributes\Options\StringOption(90)] |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | public ?string $symPar = null; |
| 34 | 34 | /** @var array<int|string, string|int|float>|string|null */ |
| 35 | 35 | #[Attributes\RefElement] |
| 36 | - public array|string|null $accounting = null; |
|
| 36 | + public array | string | null $accounting = null; |
|
| 37 | 37 | #[Attributes\RefElement] |
| 38 | 38 | public ?string $classificationVAT = null; |
| 39 | 39 | #[Attributes\RefElement] |
@@ -12,6 +12,6 @@ |
||
| 12 | 12 | public ?string $name = null; |
| 13 | 13 | public ?string $description = null; |
| 14 | 14 | #[Attributes\Options\EnumOption(Enums\ParamTypeEnum::class), Attributes\Options\RequiredOption] |
| 15 | - public Enums\ParamTypeEnum|string|null $parameterType = null; |
|
| 16 | - public Settings|SettingsDto|null $parameterSettings = null; |
|
| 15 | + public Enums\ParamTypeEnum | string | null $parameterType = null; |
|
| 16 | + public Settings | SettingsDto | null $parameterSettings = null; |
|
| 17 | 17 | } |
@@ -10,9 +10,9 @@ |
||
| 10 | 10 | class SummaryDto extends AbstractSummaryDto |
| 11 | 11 | { |
| 12 | 12 | #[Attributes\Options\EnumOption(Enums\RoundingDocumentEnum::class)] |
| 13 | - public Enums\RoundingDocumentEnum|string|null $roundingDocument = null; |
|
| 13 | + public Enums\RoundingDocumentEnum | string | null $roundingDocument = null; |
|
| 14 | 14 | #[Attributes\Options\EnumOption(Enums\RoundingVatEnum::class)] |
| 15 | - public Enums\RoundingVatEnum|string|null $roundingVAT = null; |
|
| 16 | - public Type\Dtos\CurrencyHomeDto|Type\CurrencyHome|null $homeCurrency = null; |
|
| 17 | - public Type\Dtos\CurrencyForeignDto|Type\CurrencyForeign|null $foreignCurrency = null; |
|
| 15 | + public Enums\RoundingVatEnum | string | null $roundingVAT = null; |
|
| 16 | + public Type\Dtos\CurrencyHomeDto | Type\CurrencyHome | null $homeCurrency = null; |
|
| 17 | + public Type\Dtos\CurrencyForeignDto | Type\CurrencyForeign | null $foreignCurrency = null; |
|
| 18 | 18 | } |
@@ -10,22 +10,22 @@ |
||
| 10 | 10 | class ItemDto extends AbstractItemDto |
| 11 | 11 | { |
| 12 | 12 | #[Attributes\Options\FloatOption] |
| 13 | - public float|string|null $quantity = null; |
|
| 13 | + public float | string | null $quantity = null; |
|
| 14 | 14 | #[Attributes\Options\StringOption(10)] |
| 15 | 15 | public ?string $unit = null; |
| 16 | 16 | #[Attributes\Options\FloatOption] |
| 17 | - public float|string|null $coefficient = null; |
|
| 17 | + public float | string | null $coefficient = null; |
|
| 18 | 18 | #[Attributes\Options\BooleanOption] |
| 19 | - public bool|string|null $payVAT = null; |
|
| 19 | + public bool | string | null $payVAT = null; |
|
| 20 | 20 | #[Attributes\Options\EnumOption(Enums\RateVatEnum::class)] |
| 21 | - public Enums\EnhancedEnumInterface|string|null $rateVAT = null; |
|
| 21 | + public Enums\EnhancedEnumInterface | string | null $rateVAT = null; |
|
| 22 | 22 | #[Attributes\Options\FloatOption] |
| 23 | - public float|string|null $discountPercentage = null; |
|
| 24 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $homeCurrency = null; |
|
| 25 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $foreignCurrency = null; |
|
| 23 | + public float | string | null $discountPercentage = null; |
|
| 24 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $homeCurrency = null; |
|
| 25 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $foreignCurrency = null; |
|
| 26 | 26 | #[Attributes\Options\StringOption(64)] |
| 27 | 27 | public ?string $code = null; |
| 28 | - public Type\Dtos\StockItemDto|Type\StockItem|null $stockItem = null; |
|
| 28 | + public Type\Dtos\StockItemDto | Type\StockItem | null $stockItem = null; |
|
| 29 | 29 | #[Attributes\Options\StringOption(90)] |
| 30 | 30 | public ?string $note = null; |
| 31 | 31 | #[Attributes\RefElement] |
@@ -11,17 +11,17 @@ |
||
| 11 | 11 | { |
| 12 | 12 | /** @var array<string, string>|string|null */ |
| 13 | 13 | #[Attributes\RefElement] |
| 14 | - public array|string|null $sourceDocument = null; |
|
| 14 | + public array | string | null $sourceDocument = null; |
|
| 15 | 15 | #[Attributes\Options\FloatOption] |
| 16 | - public float|string|null $quantity = null; |
|
| 16 | + public float | string | null $quantity = null; |
|
| 17 | 17 | #[Attributes\Options\BooleanOption] |
| 18 | - public bool|string|null $payVAT = null; |
|
| 18 | + public bool | string | null $payVAT = null; |
|
| 19 | 19 | #[Attributes\Options\EnumOption(Enums\RateVatEnum::class)] |
| 20 | - public Enums\EnhancedEnumInterface|string|null $rateVAT = null; |
|
| 20 | + public Enums\EnhancedEnumInterface | string | null $rateVAT = null; |
|
| 21 | 21 | #[Attributes\Options\FloatOption] |
| 22 | - public float|string|null $discountPercentage = null; |
|
| 23 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $homeCurrency = null; |
|
| 24 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $foreignCurrency = null; |
|
| 22 | + public float | string | null $discountPercentage = null; |
|
| 23 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $homeCurrency = null; |
|
| 24 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $foreignCurrency = null; |
|
| 25 | 25 | #[Attributes\Options\StringOption(90)] |
| 26 | 26 | public ?string $note = null; |
| 27 | 27 | #[Attributes\RefElement] |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | #[Attributes\RefElement] |
| 12 | 12 | public ?string $extId = null; |
| 13 | 13 | #[Attributes\Options\EnumOption(InvoiceTypeEnum::class), Attributes\Options\DefaultOption(InvoiceTypeEnum::IssuedInvoice)] |
| 14 | - public InvoiceTypeEnum|string|null $invoiceType = null; |
|
| 14 | + public InvoiceTypeEnum | string | null $invoiceType = null; |
|
| 15 | 15 | #[Attributes\RefElement] |
| 16 | 16 | public ?string $number = null; |
| 17 | 17 | #[Attributes\Options\StringOption(20)] |
@@ -22,19 +22,19 @@ discard block |
||
| 22 | 22 | #[Attributes\Options\StringOption(20)] |
| 23 | 23 | public ?string $symPar = null; |
| 24 | 24 | #[Attributes\Options\DateOption] |
| 25 | - public \DateTimeInterface|string|null $date = null; |
|
| 25 | + public \DateTimeInterface | string | null $date = null; |
|
| 26 | 26 | #[Attributes\Options\DateOption] |
| 27 | - public \DateTimeInterface|string|null $dateTax = null; |
|
| 27 | + public \DateTimeInterface | string | null $dateTax = null; |
|
| 28 | 28 | #[Attributes\Options\DateOption] |
| 29 | - public \DateTimeInterface|string|null $dateAccounting = null; |
|
| 29 | + public \DateTimeInterface | string | null $dateAccounting = null; |
|
| 30 | 30 | #[Attributes\Options\DateOption] |
| 31 | - public \DateTimeInterface|string|null $dateKHDPH = null; |
|
| 31 | + public \DateTimeInterface | string | null $dateKHDPH = null; |
|
| 32 | 32 | #[Attributes\Options\DateOption] |
| 33 | - public \DateTimeInterface|string|null $dateDue = null; |
|
| 33 | + public \DateTimeInterface | string | null $dateDue = null; |
|
| 34 | 34 | #[Attributes\Options\DateOption] |
| 35 | - public \DateTimeInterface|string|null $dateApplicationVAT = null; |
|
| 35 | + public \DateTimeInterface | string | null $dateApplicationVAT = null; |
|
| 36 | 36 | #[Attributes\Options\DateOption] |
| 37 | - public \DateTimeInterface|string|null $dateDelivery = null; |
|
| 37 | + public \DateTimeInterface | string | null $dateDelivery = null; |
|
| 38 | 38 | #[Attributes\RefElement] |
| 39 | 39 | public ?string $accounting = null; |
| 40 | 40 | #[Attributes\RefElement] |
@@ -45,14 +45,14 @@ discard block |
||
| 45 | 45 | public ?string $numberKHDPH = null; |
| 46 | 46 | #[Attributes\Options\StringOption(240)] |
| 47 | 47 | public ?string $text = null; |
| 48 | - public Type\Dtos\AddressDto|Type\Address|null $partnerIdentity = null; |
|
| 49 | - public Type\Dtos\MyAddressDto|Type\MyAddress|null $myIdentity = null; |
|
| 48 | + public Type\Dtos\AddressDto | Type\Address | null $partnerIdentity = null; |
|
| 49 | + public Type\Dtos\MyAddressDto | Type\MyAddress | null $myIdentity = null; |
|
| 50 | 50 | #[Attributes\RefElement] |
| 51 | 51 | public ?string $order = null; |
| 52 | 52 | #[Attributes\Options\StringOption(32)] |
| 53 | 53 | public ?string $numberOrder = null; |
| 54 | 54 | #[Attributes\Options\DateOption] |
| 55 | - public \DateTimeInterface|string|null $dateOrder = null; |
|
| 55 | + public \DateTimeInterface | string | null $dateOrder = null; |
|
| 56 | 56 | #[Attributes\RefElement] |
| 57 | 57 | public ?string $paymentType = null; |
| 58 | 58 | #[Attributes\RefElement] |
@@ -66,12 +66,12 @@ discard block |
||
| 66 | 66 | #[Attributes\RefElement] |
| 67 | 67 | public ?string $paymentAccount = null; |
| 68 | 68 | #[Attributes\Options\BooleanOption] |
| 69 | - public bool|string|null $paymentTerminal = null; |
|
| 69 | + public bool | string | null $paymentTerminal = null; |
|
| 70 | 70 | #[Attributes\RefElement] |
| 71 | 71 | public ?string $centre = null; |
| 72 | 72 | /** @var array<string, string|int|float|bool|array<string, string|int|float|bool>>|string|null */ |
| 73 | 73 | #[Attributes\RefElement] |
| 74 | - public array|string|null $activity = null; |
|
| 74 | + public array | string | null $activity = null; |
|
| 75 | 75 | #[Attributes\RefElement] |
| 76 | 76 | public ?string $contract = null; |
| 77 | 77 | #[Attributes\RefElement] |
@@ -82,15 +82,15 @@ discard block |
||
| 82 | 82 | public ?string $evidentiaryResourcesMOSS = null; |
| 83 | 83 | public ?string $accountingPeriodMOSS = null; |
| 84 | 84 | #[Attributes\Options\DateOption] |
| 85 | - public \DateTimeInterface|string|null $dateTaxOriginalDocumentMOSS = null; |
|
| 85 | + public \DateTimeInterface | string | null $dateTaxOriginalDocumentMOSS = null; |
|
| 86 | 86 | public ?string $note = null; |
| 87 | 87 | #[Attributes\RefElement] |
| 88 | 88 | public ?string $carrier = null; |
| 89 | 89 | public ?string $intNote = null; |
| 90 | 90 | #[Attributes\Options\BooleanOption] |
| 91 | - public bool|string|null $postponedIssue = null; |
|
| 91 | + public bool | string | null $postponedIssue = null; |
|
| 92 | 92 | #[Attributes\Options\BooleanOption] |
| 93 | - public bool|string|null $histRate = null; |
|
| 93 | + public bool | string | null $histRate = null; |
|
| 94 | 94 | /** @var array<Type\Parameter|Type\Dtos\ParameterDto> */ |
| 95 | 95 | public array $parameters = []; |
| 96 | 96 | } |
@@ -10,9 +10,9 @@ |
||
| 10 | 10 | class SummaryDto extends AbstractSummaryDto |
| 11 | 11 | { |
| 12 | 12 | #[Attributes\Options\EnumOption(Enums\RoundingDocumentEnum::class)] |
| 13 | - public Enums\RoundingDocumentEnum|string|null $roundingDocument = null; |
|
| 13 | + public Enums\RoundingDocumentEnum | string | null $roundingDocument = null; |
|
| 14 | 14 | #[Attributes\Options\EnumOption(Enums\RoundingVatEnum::class)] |
| 15 | - public Enums\RoundingVatEnum|string|null $roundingVAT = null; |
|
| 16 | - public Type\Dtos\CurrencyHomeDto|Type\CurrencyHome|null $homeCurrency = null; |
|
| 17 | - public Type\Dtos\CurrencyForeignDto|Type\CurrencyForeign|null $foreignCurrency = null; |
|
| 15 | + public Enums\RoundingVatEnum | string | null $roundingVAT = null; |
|
| 16 | + public Type\Dtos\CurrencyHomeDto | Type\CurrencyHome | null $homeCurrency = null; |
|
| 17 | + public Type\Dtos\CurrencyForeignDto | Type\CurrencyForeign | null $foreignCurrency = null; |
|
| 18 | 18 | } |
@@ -12,21 +12,21 @@ discard block |
||
| 12 | 12 | #[Attributes\Options\StringOption(90)] |
| 13 | 13 | public ?string $text = null; |
| 14 | 14 | #[Attributes\Options\FloatOption] |
| 15 | - public float|string|null $quantity = null; |
|
| 15 | + public float | string | null $quantity = null; |
|
| 16 | 16 | #[Attributes\Options\StringOption(10)] |
| 17 | 17 | public ?string $unit = null; |
| 18 | 18 | #[Attributes\Options\FloatOption] |
| 19 | - public float|string|null $coefficient = null; |
|
| 19 | + public float | string | null $coefficient = null; |
|
| 20 | 20 | #[Attributes\Options\BooleanOption] |
| 21 | - public bool|string|null $payVAT = null; |
|
| 21 | + public bool | string | null $payVAT = null; |
|
| 22 | 22 | #[Attributes\Options\EnumOption(Enums\RateVatHistoryEnum::class)] |
| 23 | - public Enums\EnhancedEnumInterface|string|null $rateVAT = null; |
|
| 23 | + public Enums\EnhancedEnumInterface | string | null $rateVAT = null; |
|
| 24 | 24 | #[Attributes\Options\FloatOption] |
| 25 | - public float|string|null $percentVAT = null; |
|
| 25 | + public float | string | null $percentVAT = null; |
|
| 26 | 26 | #[Attributes\Options\FloatOption] |
| 27 | - public float|string|null $discountPercentage = null; |
|
| 28 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $homeCurrency = null; |
|
| 29 | - public Type\Dtos\CurrencyItemDto|Type\CurrencyItem|null $foreignCurrency = null; |
|
| 27 | + public float | string | null $discountPercentage = null; |
|
| 28 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $homeCurrency = null; |
|
| 29 | + public Type\Dtos\CurrencyItemDto | Type\CurrencyItem | null $foreignCurrency = null; |
|
| 30 | 30 | #[Attributes\RefElement] |
| 31 | 31 | public ?string $typeServiceMOSS = null; |
| 32 | 32 | #[Attributes\Options\StringOption(90)] |
@@ -36,8 +36,8 @@ discard block |
||
| 36 | 36 | #[Attributes\Options\IntegerOption] |
| 37 | 37 | public ?int $guarantee = null; |
| 38 | 38 | #[Attributes\Options\EnumOption(Enums\GuaranteeTypeEnum::class)] |
| 39 | - public Enums\GuaranteeTypeEnum|string|null $guaranteeType = null; |
|
| 40 | - public Type\Dtos\StockItemDto|Type\StockItem|null $stockItem = null; |
|
| 39 | + public Enums\GuaranteeTypeEnum | string | null $guaranteeType = null; |
|
| 40 | + public Type\Dtos\StockItemDto | Type\StockItem | null $stockItem = null; |
|
| 41 | 41 | #[Attributes\RefElement] |
| 42 | 42 | public ?string $accounting = null; |
| 43 | 43 | #[Attributes\RefElement] |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | #[Attributes\RefElement] |
| 52 | 52 | public ?string $contract = null; |
| 53 | 53 | #[Attributes\Options\DateOption] |
| 54 | - public \DateTimeInterface|string|null $expirationDate = null; |
|
| 54 | + public \DateTimeInterface | string | null $expirationDate = null; |
|
| 55 | 55 | #[Attributes\Options\BooleanOption] |
| 56 | - public bool|string|null $PDP = null; |
|
| 57 | - public Type\Dtos\RecyclingContribDto|Type\RecyclingContrib|null $recyclingContrib = null; |
|
| 56 | + public bool | string | null $PDP = null; |
|
| 57 | + public Type\Dtos\RecyclingContribDto | Type\RecyclingContrib | null $recyclingContrib = null; |
|
| 58 | 58 | /** @var array<Type\Parameter|Type\Dtos\ParameterDto> */ |
| 59 | 59 | public array $parameters = []; |
| 60 | 60 | } |
@@ -11,24 +11,24 @@ discard block |
||
| 11 | 11 | { |
| 12 | 12 | // basic data |
| 13 | 13 | #[Attributes\Options\EnumOption(StockTypeEnum::class), Attributes\Options\DefaultOption(StockTypeEnum::Card)] |
| 14 | - public StockTypeEnum|string|null $stockType = null; |
|
| 14 | + public StockTypeEnum | string | null $stockType = null; |
|
| 15 | 15 | public ?string $code = null; |
| 16 | 16 | public ?string $EAN = null; |
| 17 | 17 | public ?string $PLU = null; |
| 18 | 18 | #[Attributes\Options\BooleanOption] |
| 19 | - public bool|string|null $isSales = null; |
|
| 19 | + public bool | string | null $isSales = null; |
|
| 20 | 20 | #[Attributes\Options\BooleanOption] |
| 21 | - public bool|string|null $isSerialNumber = null; |
|
| 21 | + public bool | string | null $isSerialNumber = null; |
|
| 22 | 22 | #[Attributes\Options\BooleanOption] |
| 23 | - public bool|string|null $isInternet = null; |
|
| 23 | + public bool | string | null $isInternet = null; |
|
| 24 | 24 | #[Attributes\Options\BooleanOption] |
| 25 | - public bool|string|null $isBatch = null; |
|
| 25 | + public bool | string | null $isBatch = null; |
|
| 26 | 26 | #[Attributes\Options\EnumOption(Enums\RateVatEnum::class)] |
| 27 | - public Enums\EnhancedEnumInterface|string|null $purchasingRateVAT = null; |
|
| 27 | + public Enums\EnhancedEnumInterface | string | null $purchasingRateVAT = null; |
|
| 28 | 28 | #[Attributes\AttributeExtend('purchasingRateVAT', 'value')] |
| 29 | 29 | public ?string $purchasingRatePayVAT = null; |
| 30 | 30 | #[Attributes\Options\EnumOption(Enums\RateVatEnum::class)] |
| 31 | - public Enums\EnhancedEnumInterface|string|null $sellingRateVAT = null; |
|
| 31 | + public Enums\EnhancedEnumInterface | string | null $sellingRateVAT = null; |
|
| 32 | 32 | #[Attributes\AttributeExtend('sellingRateVAT', 'value')] |
| 33 | 33 | public ?string $sellingRatePayVAT = null; |
| 34 | 34 | #[Attributes\Options\StringOption(90)] |
@@ -42,46 +42,46 @@ discard block |
||
| 42 | 42 | #[Attributes\Options\StringOption(10)] |
| 43 | 43 | public ?string $unit3 = null; |
| 44 | 44 | #[Attributes\Options\FloatOption] |
| 45 | - public float|string|null $coefficient2 = null; |
|
| 45 | + public float | string | null $coefficient2 = null; |
|
| 46 | 46 | #[Attributes\Options\FloatOption] |
| 47 | - public float|string|null $coefficient3 = null; |
|
| 47 | + public float | string | null $coefficient3 = null; |
|
| 48 | 48 | /** @var array<string, string|int|float|bool|array<string, string|int|float|bool>>|string|null */ |
| 49 | 49 | #[Attributes\RefElement] |
| 50 | - public array|string|null $storage = null; |
|
| 50 | + public array | string | null $storage = null; |
|
| 51 | 51 | /** @var array<string, string|int|float|bool|array<string, string|int|float|bool>>|string|null */ |
| 52 | 52 | #[Attributes\RefElement] |
| 53 | - public array|string|null $typePrice = null; |
|
| 53 | + public array | string | null $typePrice = null; |
|
| 54 | 54 | #[Attributes\Options\FloatOption] |
| 55 | - public float|string|null $purchasingPrice = null; |
|
| 55 | + public float | string | null $purchasingPrice = null; |
|
| 56 | 56 | #[Attributes\Options\BooleanOption, Attributes\AttributeExtend('purchasingPrice', 'payVAT')] |
| 57 | - public bool|string|null $purchasingPricePayVAT = null; |
|
| 57 | + public bool | string | null $purchasingPricePayVAT = null; |
|
| 58 | 58 | #[Attributes\Options\FloatOption] |
| 59 | - public float|string|null $sellingPrice = null; |
|
| 59 | + public float | string | null $sellingPrice = null; |
|
| 60 | 60 | #[Attributes\Options\BooleanOption, Attributes\AttributeExtend('sellingPrice', 'payVAT')] |
| 61 | - public bool|string|null $sellingPricePayVAT = null; |
|
| 61 | + public bool | string | null $sellingPricePayVAT = null; |
|
| 62 | 62 | #[Attributes\Options\FloatOption] |
| 63 | - public float|string|null $limitMin = null; |
|
| 63 | + public float | string | null $limitMin = null; |
|
| 64 | 64 | #[Attributes\Options\FloatOption] |
| 65 | - public float|string|null $limitMax = null; |
|
| 65 | + public float | string | null $limitMax = null; |
|
| 66 | 66 | #[Attributes\Options\FloatOption] |
| 67 | - public float|string|null $mass = null; |
|
| 67 | + public float | string | null $mass = null; |
|
| 68 | 68 | #[Attributes\Options\FloatOption] |
| 69 | - public float|string|null $volume = null; |
|
| 69 | + public float | string | null $volume = null; |
|
| 70 | 70 | /** @var array<string, string|int|float|bool|array<string, string|int|float|bool>>|string|null */ |
| 71 | 71 | #[Attributes\RefElement] |
| 72 | - public array|string|null $supplier = null; |
|
| 72 | + public array | string | null $supplier = null; |
|
| 73 | 73 | #[Attributes\Options\StringOption(90)] |
| 74 | 74 | public ?string $orderName = null; |
| 75 | 75 | #[Attributes\Options\FloatOption] |
| 76 | - public float|string|null $orderQuantity = null; |
|
| 76 | + public float | string | null $orderQuantity = null; |
|
| 77 | 77 | #[Attributes\Options\StringOption(24)] |
| 78 | 78 | public ?string $shortName = null; |
| 79 | 79 | #[Attributes\RefElement] |
| 80 | 80 | public ?string $typeRP = null; |
| 81 | 81 | #[Attributes\Options\EnumOption(Enums\GuaranteeTypeEnum::class)] |
| 82 | - public Enums\GuaranteeTypeEnum|string|null $guaranteeType = null; |
|
| 82 | + public Enums\GuaranteeTypeEnum | string | null $guaranteeType = null; |
|
| 83 | 83 | #[Attributes\Options\IntegerOption] |
| 84 | - public int|string|null $guarantee = null; |
|
| 84 | + public int | string | null $guarantee = null; |
|
| 85 | 85 | #[Attributes\Options\StringOption(90)] |
| 86 | 86 | public ?string $producer = null; |
| 87 | 87 | #[Attributes\RefElement] |
@@ -90,46 +90,46 @@ discard block |
||
| 90 | 90 | public ?string $description = null; |
| 91 | 91 | public ?string $description2 = null; |
| 92 | 92 | public ?string $note = null; |
| 93 | - public Intrastat|IntrastatDto|null $intrastat = null; |
|
| 94 | - public RecyclingContrib|RecyclingContribDto|null $recyclingContrib = null; |
|
| 93 | + public Intrastat | IntrastatDto | null $intrastat = null; |
|
| 94 | + public RecyclingContrib | RecyclingContribDto | null $recyclingContrib = null; |
|
| 95 | 95 | |
| 96 | 96 | // data for response |
| 97 | 97 | #[Attributes\ResponseDirection] |
| 98 | 98 | public ?string $id = null; |
| 99 | 99 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 100 | - public float|string|null $weightedPurchasePrice = null; |
|
| 100 | + public float | string | null $weightedPurchasePrice = null; |
|
| 101 | 101 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 102 | - public float|string|null $count = null; |
|
| 102 | + public float | string | null $count = null; |
|
| 103 | 103 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 104 | - public float|string|null $countIssue = null; |
|
| 104 | + public float | string | null $countIssue = null; |
|
| 105 | 105 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 106 | - public float|string|null $countReceivedOrders = null; |
|
| 106 | + public float | string | null $countReceivedOrders = null; |
|
| 107 | 107 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 108 | - public float|string|null $reservation = null; |
|
| 108 | + public float | string | null $reservation = null; |
|
| 109 | 109 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 110 | - public float|string|null $countIssuedOrders = null; |
|
| 110 | + public float | string | null $countIssuedOrders = null; |
|
| 111 | 111 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 112 | - public bool|string|null $clearanceSale = null; |
|
| 112 | + public bool | string | null $clearanceSale = null; |
|
| 113 | 113 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 114 | - public bool|string|null $controlLimitTaxLiability = null; |
|
| 114 | + public bool | string | null $controlLimitTaxLiability = null; |
|
| 115 | 115 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 116 | - public bool|string|null $discount = null; |
|
| 116 | + public bool | string | null $discount = null; |
|
| 117 | 117 | #[Attributes\ResponseDirection, Attributes\Options\StringOption(90)] |
| 118 | 118 | public ?string $fixation = null; |
| 119 | 119 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 120 | - public bool|string|null $markRecord = null; |
|
| 120 | + public bool | string | null $markRecord = null; |
|
| 121 | 121 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 122 | - public bool|string|null $news = null; |
|
| 122 | + public bool | string | null $news = null; |
|
| 123 | 123 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 124 | - public bool|string|null $prepare = null; |
|
| 124 | + public bool | string | null $prepare = null; |
|
| 125 | 125 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 126 | - public bool|string|null $recommended = null; |
|
| 126 | + public bool | string | null $recommended = null; |
|
| 127 | 127 | #[Attributes\ResponseDirection, Attributes\Options\BooleanOption] |
| 128 | - public bool|string|null $sale = null; |
|
| 128 | + public bool | string | null $sale = null; |
|
| 129 | 129 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 130 | - public float|string|null $reclamation = null; |
|
| 130 | + public float | string | null $reclamation = null; |
|
| 131 | 131 | #[Attributes\ResponseDirection, Attributes\Options\FloatOption] |
| 132 | - public float|string|null $service = null; |
|
| 132 | + public float | string | null $service = null; |
|
| 133 | 133 | |
| 134 | 134 | // contains extra elements |
| 135 | 135 | /** @var array<Category|CategoryDto> */ |