mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
add response stock to informasi stock product
This commit is contained in:
@@ -62,6 +62,7 @@ type StockLogDetailDTO struct {
|
|||||||
Id uint `json:"id"`
|
Id uint `json:"id"`
|
||||||
Increase float64 `json:"increase"`
|
Increase float64 `json:"increase"`
|
||||||
Decrease float64 `json:"decrease"`
|
Decrease float64 `json:"decrease"`
|
||||||
|
Stock float64 `json:"stock"`
|
||||||
LoggableType string `json:"loggable_type"`
|
LoggableType string `json:"loggable_type"`
|
||||||
LoggableId uint `json:"loggable_id"`
|
LoggableId uint `json:"loggable_id"`
|
||||||
Notes *string `json:"notes"`
|
Notes *string `json:"notes"`
|
||||||
@@ -195,6 +196,7 @@ func mapStockLogs(src []entity.StockLog) []StockLogDetailDTO {
|
|||||||
Id: log.Id,
|
Id: log.Id,
|
||||||
Increase: log.Increase,
|
Increase: log.Increase,
|
||||||
Decrease: log.Decrease,
|
Decrease: log.Decrease,
|
||||||
|
Stock: log.Stock,
|
||||||
LoggableType: log.LoggableType,
|
LoggableType: log.LoggableType,
|
||||||
LoggableId: log.LoggableId,
|
LoggableId: log.LoggableId,
|
||||||
Notes: notes,
|
Notes: notes,
|
||||||
|
|||||||
Reference in New Issue
Block a user