StoreChangePriceTypeBossDisabled
This commit is contained in:
@@ -83,9 +83,10 @@ func GetStoreList4Mobile(db *dao.DaoDB, mobileList []string) (storeList []*model
|
|||||||
sql := `
|
sql := `
|
||||||
SELECT t1.*
|
SELECT t1.*
|
||||||
FROM store t1
|
FROM store t1
|
||||||
WHERE t1.deleted_at = ?`
|
WHERE t1.deleted_at = ? /*AND t1.change_price_type = ?*/`
|
||||||
sqlParams := []interface{}{
|
sqlParams := []interface{}{
|
||||||
utils.DefaultTimeValue,
|
utils.DefaultTimeValue,
|
||||||
|
// model.StoreChangePriceTypeBossDisabled,
|
||||||
}
|
}
|
||||||
if len(mobileList) > 0 {
|
if len(mobileList) > 0 {
|
||||||
questionMarks := dao.GenQuestionMarks(len(mobileList))
|
questionMarks := dao.GenQuestionMarks(len(mobileList))
|
||||||
|
|||||||
@@ -43,8 +43,9 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
StoreChangePriceTypeDirect = 0
|
StoreChangePriceTypeDirect = 0
|
||||||
StoreChangePriceTypeNeedApprove = 1
|
StoreChangePriceTypeNeedApprove = 1
|
||||||
|
StoreChangePriceTypeBossDisabled = 2
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
Reference in New Issue
Block a user