53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class WarehouseOfferModel
|
|
*
|
|
* Represents a warehouse offer with customer details and related metadata.
|
|
*
|
|
* @property int $id Unique identifier for the warehouse offer
|
|
* @property string $offerNumber Unique offer number
|
|
* @property string $customerNumber Customer number
|
|
* @property string $customerName Name of the customer
|
|
* @property string $customerStreet Street address of the customer
|
|
* @property string $customerCity City of the customer
|
|
* @property string $customerZip Postal code of the customer
|
|
* @property string $customerVAT VAT number of the customer
|
|
* @property int $editor ID of the editor who last modified the offer
|
|
* @property string $purpose Purpose of the offer
|
|
* @property string $positions Details about positions in the offer
|
|
* @property string $alternativePositions Details about alternative positions in the offer
|
|
* @property float $totalDiscount Total discount applied to the offer
|
|
* @property string $paymentTerms Payment terms for the offer
|
|
* @property string $deliveryTerms Delivery terms for the offer
|
|
* @property string $closingText Closing text for the offer
|
|
* @property string $notes Additional notes for the offer
|
|
* @property string $status Current status of the offer
|
|
* @property float $totalAmount Total amount of the offer
|
|
* @property int $create Timestamp of the offer creation
|
|
* @property int $createBy ID of the user who created the offer
|
|
*/
|
|
class WarehouseOfferModel extends TTCrudBaseModel {
|
|
public int $id;
|
|
public string $offerNumber;
|
|
public string $customerNumber;
|
|
public string $customerName;
|
|
public string $customerStreet;
|
|
public string $customerCity;
|
|
public string $customerZip;
|
|
public string $customerVAT;
|
|
public int $editor;
|
|
public string $purpose;
|
|
public string $positions;
|
|
public string $alternativePositions;
|
|
public float $totalDiscount;
|
|
public string $paymentTerms;
|
|
public string $deliveryTerms;
|
|
public string $closingText;
|
|
public string $notes;
|
|
public string $status;
|
|
public float $totalAmount;
|
|
public int $create;
|
|
public int $createBy;
|
|
}
|