wangpengfei
2023-08-02 b4201a0054369a8cd89e940947fd6f1a89f357c2
service/salesReturn.go
@@ -29,15 +29,6 @@
   return ecode.OK
}
func (SalesReturnService) GetSalesReturnList() ([]*model.SalesReturn, int) {
   list, err := model.NewSalesReturnSearch().FindAll()
   if err != nil {
      return nil, ecode.SalesReturnListErr
   }
   return list, ecode.OK
}
func (SalesReturnService) UpdateSalesReturn(salesReturn *model.SalesReturn) int {
   // check salesReturn exist
   _, err := model.NewSalesReturnSearch().SetId(salesReturn.Id).Find()
@@ -52,3 +43,12 @@
   return ecode.OK
}
func (SalesReturnService) GetSalesReturnList(page, pageSize int, keyword string) ([]*model.SalesReturn, int64, int) {
   // get contact list
   contacts, total, err := model.NewSalesReturnSearch().SetKeyword(keyword).SetPage(page, pageSize).FindAll()
   if err != nil {
      return nil, 0, ecode.SalesReturnListErr
   }
   return contacts, total, ecode.OK
}