114 lines
3.7 KiB
Go
114 lines
3.7 KiB
Go
package dao
|
|
|
|
import (
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
"git.rosy.net.cn/jx-callback/business/model"
|
|
"git.rosy.net.cn/jx-callback/globals"
|
|
)
|
|
|
|
func GetThingMapList(db *DaoDB, thingType int, vendorIDs, thingIDs []int, vendorOrgCodes []string) (cats []*model.ThingMap, err error) {
|
|
sql := `
|
|
SELECT t1.*
|
|
FROM thing_map t1
|
|
WHERE t1.deleted_at = ? AND t1.thing_type = ?
|
|
`
|
|
sqlParams := []interface{}{
|
|
utils.DefaultTimeValue,
|
|
thingType,
|
|
}
|
|
if len(thingIDs) > 0 { // 必须要指定ID
|
|
sql += " AND t1.thing_id IN (" + GenQuestionMarks(len(thingIDs)) + ")"
|
|
sqlParams = append(sqlParams, thingIDs)
|
|
}
|
|
if len(vendorOrgCodes) > 0 {
|
|
sql += " AND t1.vendor_org_code IN (" + GenQuestionMarks(len(vendorOrgCodes)) + ")"
|
|
sqlParams = append(sqlParams, vendorOrgCodes)
|
|
}
|
|
err = GetRows(db, &cats, sql, sqlParams...)
|
|
return cats, err
|
|
}
|
|
|
|
type GetThingMapCategoryResult struct {
|
|
model.ThingMap
|
|
Name string `orm:"size(255)" json:"name"`
|
|
ParentID int `orm:"column(parent_id)" json:"parentID"`
|
|
Level int8 `json:"level"`
|
|
Seq int `json:"seq"`
|
|
}
|
|
|
|
func GetThingMapCategory(db *DaoDB, vendorIDs, thingIDs []int, vendorOrgCodes []string) (cats []*GetThingMapCategoryResult, err error) {
|
|
sql := `
|
|
SELECT t1.*, t2.name, t2.parent_id, t2.level, t2.seq
|
|
FROM thing_map t1
|
|
JOIN sku_category t2 ON t2.id = t1.thing_id AND t2.deleted_at = ?
|
|
WHERE t1.deleted_at = ? AND t1.thing_type = ?
|
|
`
|
|
sqlParams := []interface{}{
|
|
utils.DefaultTimeValue,
|
|
utils.DefaultTimeValue,
|
|
model.ThingTypeCategory,
|
|
}
|
|
if len(thingIDs) > 0 {
|
|
sql += " AND t1.thing_id IN (" + GenQuestionMarks(len(thingIDs)) + ")"
|
|
sqlParams = append(sqlParams, thingIDs)
|
|
}
|
|
if len(vendorOrgCodes) > 0 {
|
|
sql += " AND t1.vendor_org_code IN (" + GenQuestionMarks(len(vendorOrgCodes)) + ")"
|
|
sqlParams = append(sqlParams, vendorOrgCodes)
|
|
}
|
|
err = GetRows(db, &cats, sql, sqlParams...)
|
|
return cats, err
|
|
}
|
|
|
|
func GetThingMapMap(db *DaoDB, thingType int, vendorIDs, thingIDs []int) (thingMapMap map[int64][]*model.ThingMap, err error) {
|
|
thingMapList, err := GetThingMapList(db, thingType, vendorIDs, thingIDs, nil)
|
|
if err == nil {
|
|
thingMapMap = make(map[int64][]*model.ThingMap)
|
|
for _, thingMap := range thingMapList {
|
|
thingMapMap[thingMap.ThingID] = append(thingMapMap[thingMap.ThingID], thingMap)
|
|
}
|
|
}
|
|
return thingMapMap, err
|
|
}
|
|
|
|
func SetThingMapSyncStatus(db *DaoDB, vendorIDs []int, vendorOrgCodes []string, thingType int, thingIDs []int, syncStatus int8) (num int64, err error) {
|
|
sql := `
|
|
UPDATE thing_map t1
|
|
SET t1.sync_status = t1.sync_status | ?
|
|
WHERE t1.deleted_at = ? AND t1.thing_type = ?
|
|
`
|
|
sqlParams := []interface{}{
|
|
syncStatus,
|
|
utils.DefaultTimeValue,
|
|
thingType,
|
|
}
|
|
if len(vendorIDs) > 0 {
|
|
sql += " AND t1.vendor_id IN (" + GenQuestionMarks(len(vendorIDs)) + ")"
|
|
sqlParams = append(sqlParams, vendorIDs)
|
|
}
|
|
if len(vendorOrgCodes) > 0 {
|
|
sql += " AND t1.vendor_org_code IN (" + GenQuestionMarks(len(vendorOrgCodes)) + ")"
|
|
sqlParams = append(sqlParams, vendorOrgCodes)
|
|
}
|
|
if len(thingIDs) > 0 {
|
|
sql += " AND t1.thing_id IN (" + GenQuestionMarks(len(thingIDs)) + ")"
|
|
sqlParams = append(sqlParams, thingIDs)
|
|
}
|
|
num, err = ExecuteSQL(db, sql, sqlParams...)
|
|
return num, err
|
|
}
|
|
|
|
func SetSkuNameSyncStatus(db *DaoDB, vendorIDs []int, vendorOrgCodes []string, nameIDs []int, syncStatus int8) (num int64, err error) {
|
|
skuIDs, err2 := GetSkuIDByNames(db, nameIDs)
|
|
if err = err2; err == nil {
|
|
num, err = SetThingMapSyncStatus(db, vendorIDs, vendorOrgCodes, model.ThingTypeSku, skuIDs, syncStatus)
|
|
}
|
|
return num, err
|
|
}
|
|
|
|
func SetSkuSyncStatus(db *DaoDB, vendorID int, skuIDs []int, syncStatus int8) (num int64, err error) {
|
|
globals.SugarLogger.Debugf("SetSkuSyncStatus, vendorID:%d", vendorID)
|
|
num, err = SetThingMapSyncStatus(db, []int{vendorID}, nil, model.ThingTypeSku, skuIDs, syncStatus)
|
|
return num, err
|
|
}
|