Add Customer users
This commit is contained in:
@@ -37,7 +37,8 @@ type InventoryMovement struct {
|
||||
ID uuid.UUID
|
||||
OrganizationID uuid.UUID
|
||||
OutletID uuid.UUID
|
||||
ProductID uuid.UUID
|
||||
ItemID uuid.UUID
|
||||
ItemType string
|
||||
MovementType InventoryMovementType
|
||||
Quantity int
|
||||
PreviousQuantity int
|
||||
@@ -58,7 +59,8 @@ type InventoryMovement struct {
|
||||
type CreateInventoryMovementRequest struct {
|
||||
OrganizationID uuid.UUID
|
||||
OutletID uuid.UUID
|
||||
ProductID uuid.UUID
|
||||
ItemID uuid.UUID
|
||||
ItemType string
|
||||
MovementType InventoryMovementType
|
||||
Quantity int
|
||||
UnitCost float64
|
||||
@@ -76,7 +78,8 @@ type InventoryMovementResponse struct {
|
||||
ID uuid.UUID
|
||||
OrganizationID uuid.UUID
|
||||
OutletID uuid.UUID
|
||||
ProductID uuid.UUID
|
||||
ItemID uuid.UUID
|
||||
ItemType string
|
||||
MovementType InventoryMovementType
|
||||
Quantity int
|
||||
PreviousQuantity int
|
||||
@@ -98,7 +101,8 @@ type InventoryMovementResponse struct {
|
||||
type ListInventoryMovementsRequest struct {
|
||||
OrganizationID *uuid.UUID
|
||||
OutletID *uuid.UUID
|
||||
ProductID *uuid.UUID
|
||||
ItemID *uuid.UUID
|
||||
ItemType *string
|
||||
MovementType *InventoryMovementType
|
||||
ReferenceType *InventoryMovementReferenceType
|
||||
ReferenceID *uuid.UUID
|
||||
|
||||
Reference in New Issue
Block a user