|
@@ -655,12 +655,12 @@ type CompanyProductItem struct {
|
|
|
// @param productId int
|
|
|
// @return items []*CompanyProductItem
|
|
|
// @return err error
|
|
|
-func GetCompanyProductItemByCompanyId(companyId int, productId int) (items *CompanyProductItem, err error) {
|
|
|
+func GetCompanyProductItemByCompanyId(companyId int, productId int) (item *CompanyProductItem, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `SELECT a.*,b.is_share,b.share_seller,b.share_seller_id FROM company_product as a
|
|
|
JOIN company b on a.company_id=b.company_id
|
|
|
WHERE a.company_id = ? AND a.product_id = ? `
|
|
|
- _, err = o.Raw(sql, companyId, productId).QueryRows(&items)
|
|
|
+ err = o.Raw(sql, companyId, productId).QueryRow(&item)
|
|
|
|
|
|
return
|
|
|
}
|