fix
wangpengfei
2023-08-11 4dd4ae617e7f37817d2c795ff011d73a67dc29bf
service/quotation.go
@@ -44,9 +44,9 @@
   return ecode.OK
}
func (QuotationService) GetQuotationList(page, pageSize int, keyword string) ([]*model.Quotation, int64, int) {
func (QuotationService) GetQuotationList(page, pageSize int, data map[string]interface{}) ([]*model.Quotation, int64, int) {
   // get contact list
   contacts, total, err := model.NewQuotationSearch().SetKeyword(keyword).SetPage(page, pageSize).FindAll()
   contacts, total, err := model.NewQuotationSearch().SetPage(page, pageSize).SetSearchMap(data).FindAll()
   if err != nil {
      return nil, 0, ecode.QuotationListErr
   }