feat: Clear review mode and revert to edit mode when navigating to next item feat: Implement close button functionality fix: Handle edge case with zero delivery notes feat: Add new type field with free text option fix: Enable cancellation reversal in WarehouseAdmin improve: Enhance article search autocomplete functionality
26 lines
757 B
PHP
26 lines
757 B
PHP
<?php
|
|
|
|
class WarehouseShippingNoteModel extends TTCrudBaseModel {
|
|
public int $id;
|
|
public ?int $billingAddressId;
|
|
public string $type;
|
|
public string $deliveryAddressName;
|
|
public string $deliveryAddressLine;
|
|
public string $deliveryAddressPLZ;
|
|
public string $deliveryAddressCity;
|
|
public string $deliveryAddressEMail;
|
|
public string $note;
|
|
public string $status; // 'new'|'in_progress'|'accepted'|'invoiced' TODO: add to enum / migration
|
|
public string $positions;
|
|
public string $textElements;
|
|
public string $hoursEntries;
|
|
public ?string $signature;
|
|
public ?string $signatureName;
|
|
public ?string $signatureDate;
|
|
public ?int $eShopOrderId;
|
|
public ?int $create;
|
|
public ?int $createBy;
|
|
}
|
|
|
|
|