| | |
| | | } |
| | | |
| | | type Quotation struct { |
| | | ClientId int `json:"client_id"` |
| | | Number string `json:"number"` |
| | | QuotationStatusId int `json:"quotation_status_id"` |
| | | ValidityDate string `json:"validity_date"` |
| | | ContactId int `json:"contact_id"` |
| | | MemberId int `json:"member_id"` |
| | | SaleChanceId int `json:"sale_chance_id"` |
| | | Conditions string `json:"conditions"` |
| | | File string `json:"file"` |
| | | Products []*model.Product `json:"products"` |
| | | ClientId int `json:"client_id"` |
| | | Number string `json:"number"` |
| | | QuotationStatusId int `json:"quotation_status_id"` |
| | | ValidityDate string `json:"validity_date"` |
| | | ContactId int `json:"contact_id"` |
| | | MemberId int `json:"member_id"` |
| | | SaleChanceId int `json:"sale_chance_id"` |
| | | Conditions string `json:"conditions"` |
| | | File string `json:"file"` |
| | | Products []model.Product `json:"products"` |
| | | } |
| | | |
| | | type UpdateQuotation struct { |