fix: rename ReceiptLines field to receipt_lines for consistency in InventoryReceiptResponse
Deploy Application / deploy (push) Successful in 19s Details

This commit is contained in:
Habib Fatkhul Rohman 2025-11-24 15:15:55 +07:00
parent 14eccfb336
commit b77eab5ef3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ type InventoryReceiptResponse struct {
QrCodeFile string `json:"qr_code_file"` QrCodeFile string `json:"qr_code_file"`
Status string `json:"status"` Status string `json:"status"`
Client pkgdto.IdNameResponse `json:"client"` Client pkgdto.IdNameResponse `json:"client"`
ReceiptLines []InventoryReceiptLineResponse `json:"inventory_lines"` ReceiptLines []InventoryReceiptLineResponse `json:"receipt_lines"`
LineCount int `json:"line_count"` LineCount int `json:"line_count"`
Assignment AssignmentResponse `json:"assignment,omitempty"` Assignment AssignmentResponse `json:"assignment,omitempty"`
} }