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

@@ -0,0 +1,17 @@
<?php
class WarehouseShippingNoteModel extends TTCrudBaseModel {
public int $id;
public int $billingAddressId;
public string $deliveryAddressName;
public string $deliveryAddressLine;
public string $deliveryAddressPLZ;
public string $deliveryAddressCity;
public string $status; // 'new'|'accepted'|'invoiced'
public string $positions;
public string $textElements;
public int $create;
public int $createBy;
}