Merge pull request 'Add QR Payment' (#8) from customer-order into main

Reviewed-on: https://git.altru.id/Furtuna/furtuna-backend/pulls/8
This commit is contained in:
2024-08-06 09:22:12 +00:00
10 changed files with 141 additions and 18 deletions
+4 -3
View File
@@ -98,9 +98,10 @@ func (e Execute) ToOrderExecuteRequest(createdBy int64) *entity.OrderExecuteRequ
}
type OrderParamCustomer struct {
ID int64 `form:"id" json:"id" example:"10"`
Limit int `form:"limit" json:"limit" example:"10"`
Offset int `form:"offset" json:"offset" example:"0"`
ID int64 `form:"id" json:"id" example:"10"`
ReferenceID string `form:"reference_id" json:"reference_id" example:"10"`
Limit int `form:"limit" json:"limit" example:"10"`
Offset int `form:"offset" json:"offset" example:"0"`
}
func (o *OrderParamCustomer) ToOrderEntity(ctx mycontext.Context) entity.OrderSearch {