diff --git a/db/db_mall_order.go b/db/db_mall_order.go index c622004..ba453a2 100644 --- a/db/db_mall_order.go +++ b/db/db_mall_order.go @@ -72,7 +72,7 @@ func MallOrdByTime(Db *xorm.Engine, uid, buyType, state, stime, etime interface{ sess = sess.And(" confirm_time > ? AND confirm_time < ?", stime, etime) } if zhios_condition_statistics_utils.AnyToInt64(buyType) > 0 { - sess.And("order_type", buyType) + sess.And("order_type=?", buyType) } total, err := sess.Sum(&model.MallOrd{}, "cost_price") fmt.Println(err) @@ -142,7 +142,7 @@ func MallOrderRelateListByState(Db *xorm.Engine, uid, state interface{}) (*map[i func MallOrd(Db *xorm.Engine, uid, buyType, state interface{}) (float64, error) { sess := Db.Where("uid = ? ", uid).In("state", state) if zhios_condition_statistics_utils.AnyToInt64(buyType) > 0 { - sess.And("order_type", buyType) + sess.And("order_type=?", buyType) } total, err := sess.Sum(&model.MallOrd{}, "cost_price") fmt.Println(err)