Fix getting quote’s terms and conditions from form and database

This commit is contained in:
jordi fita mas 2023-06-08 12:50:16 +02:00
parent 9931796744
commit ba6f51ac5d
1 changed files with 3 additions and 1 deletions

View File

@ -620,6 +620,7 @@ func (form *quoteForm) Parse(r *http.Request) error {
form.QuoteStatus.FillValue(r) form.QuoteStatus.FillValue(r)
form.Customer.FillValue(r) form.Customer.FillValue(r)
form.Date.FillValue(r) form.Date.FillValue(r)
form.TermsAndConditions.FillValue(r)
form.Notes.FillValue(r) form.Notes.FillValue(r)
form.Tags.FillValue(r) form.Tags.FillValue(r)
form.PaymentMethod.FillValue(r) form.PaymentMethod.FillValue(r)
@ -745,6 +746,7 @@ func (form *quoteForm) MustFillFromDatabase(ctx context.Context, conn *Conn, slu
, contact_id , contact_id
, quote_number , quote_number
, quote_date , quote_date
, terms_and_conditions
, notes , notes
, payment_method_id , payment_method_id
, tags , tags
@ -752,7 +754,7 @@ func (form *quoteForm) MustFillFromDatabase(ctx context.Context, conn *Conn, slu
left join quote_contact using (quote_id) left join quote_contact using (quote_id)
left join quote_payment_method using (quote_id) left join quote_payment_method using (quote_id)
where slug = $1 where slug = $1
`, slug).Scan(&quoteId, form.QuoteStatus, form.Customer, &form.Number, form.Date, form.Notes, form.PaymentMethod, form.Tags)) { `, slug).Scan(&quoteId, form.QuoteStatus, form.Customer, &form.Number, form.Date, form.TermsAndConditions, form.Notes, form.PaymentMethod, form.Tags)) {
form.PaymentMethod.Selected = selectedPaymentMethod form.PaymentMethod.Selected = selectedPaymentMethod
form.QuoteStatus.Selected = selectedQuoteStatus form.QuoteStatus.Selected = selectedQuoteStatus
return false return false