update for warehouse

This commit is contained in:
2024-10-10 08:49:50 +02:00
parent 8a2b8c0b20
commit c57eef6e8d
56 changed files with 2250 additions and 451 deletions

View File

@@ -4,12 +4,13 @@
* @property int $orderId
* @property int $articleId
* @property int $quantity
* @property int $price
*/
class WarehouseEShopOrderItemModel extends TTCrudBaseModel {
public int $id;
public int $orderId;
public ?int $articleId;
public ?int $articlePacketId;
public int $quantity;
public ?int $articlePacketId;
}