导出未营业门店

This commit is contained in:
苏尹岚
2019-12-09 13:37:24 +08:00
parent ec6945a457
commit 211994bd97

View File

@@ -135,6 +135,7 @@ type VendorStoreExcel struct {
Status string `json:"营业状态"` Status string `json:"营业状态"`
Tel1 string `json:"电话1"` Tel1 string `json:"电话1"`
Tel2 string `json:"电话2"` Tel2 string `json:"电话2"`
CityName string `json:"城市名"`
Address string `json:"地址"` Address string `json:"地址"`
} }
@@ -175,6 +176,7 @@ var (
"营业状态", "营业状态",
"电话1", "电话1",
"电话2", "电话2",
"城市名",
"地址", "地址",
} }
) )
@@ -2331,6 +2333,7 @@ func GetVendorStoreInfo(ctx *jxcontext.Context, vendorIDList []int, isAsync, isC
Tel2: storeDetail.Tel2, Tel2: storeDetail.Tel2,
Address: storeDetail.Address, Address: storeDetail.Address,
Status: StoreStatus2Chinese(storeDetail.Status), Status: StoreStatus2Chinese(storeDetail.Status),
CityName: storeDetail.CityName,
} }
retVal = []VendorStoreExcel{storeExcel} retVal = []VendorStoreExcel{storeExcel}
} }