25 lines
836 B
PHP
25 lines
836 B
PHP
<?php
|
|
|
|
/**
|
|
* Class WarehouseOfferTemplateModel
|
|
*
|
|
* Represents a warehouse offer template with key details.
|
|
*
|
|
* @property string $templateName Name of the template
|
|
* @property string $positions Details about 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
|
|
*/
|
|
class WarehouseOfferTemplateModel extends TTCrudBaseModel
|
|
{
|
|
public string $templateName;
|
|
public string $positions;
|
|
public float $totalDiscount;
|
|
public string $paymentTerms;
|
|
public string $deliveryTerms;
|
|
public string $closingText;
|
|
public string $notes;
|
|
} |