Compare commits
No commits in common. "7ed326615fa58e25b0ac8bdefba6e757bd064b73" and "cdbca82323729c90337333f3c394d6be377e7d0d" have entirely different histories.
7ed326615f
...
cdbca82323
@ -501,7 +501,6 @@ func (b *BundleProvider) GetPendingUploadBreakdown(_ context.Context, req *bundl
|
||||
for _, it := range items {
|
||||
respItems = append(respItems, &bundle.PendingUploadBreakdownItem{
|
||||
SubNum: it.SubNum,
|
||||
TelNum: it.TelNum,
|
||||
ArtistName: it.UserName,
|
||||
PendingVideoScriptCount: int32(it.PendingVideoScriptCount),
|
||||
PendingBundleVideoCount: int32(it.PendingBundleVideoCount),
|
||||
|
||||
@ -357,7 +357,6 @@ type ArtistUploadStatsItem struct {
|
||||
|
||||
type ArtistPendingUploadBreakdownItem struct {
|
||||
SubNum string `json:"subNum" gorm:"column:customer_num"`
|
||||
TelNum string `json:"telNum" gorm:"column:tel_num"`
|
||||
UserName string `json:"userName" gorm:"column:user_name"`
|
||||
PendingVideoScriptCount int `json:"pendingVideoScriptCount" gorm:"column:pending_video_script_count"`
|
||||
PendingBundleVideoCount int `json:"pendingBundleVideoCount" gorm:"column:pending_bundle_video_count"`
|
||||
@ -600,7 +599,6 @@ func GetPendingUploadBreakdownBySubNums(subNums []string) ([]*ArtistPendingUploa
|
||||
|
||||
selectFields := fmt.Sprintf(`
|
||||
rn.name as user_name,
|
||||
u.tel_num as tel_num,
|
||||
bor.customer_num,
|
||||
GREATEST((%s) - (%s), 0) AS pending_video_script_count,
|
||||
GREATEST((%s) - (%s) - (%s), 0) AS pending_bundle_video_count,
|
||||
|
||||
@ -1412,7 +1412,6 @@ message PendingUploadBreakdownItem {
|
||||
int32 pendingIncreasePostCount = 7 [json_name = "pendingIncreasePostCount"];
|
||||
int32 pendingBundleDataCount = 8 [json_name = "pendingBundleDataCount"];
|
||||
int32 pendingIncreaseDataCount = 9 [json_name = "pendingIncreaseDataCount"];
|
||||
string telNum = 10 [json_name = "telNum"];
|
||||
}
|
||||
|
||||
message PendingUploadBreakdownResponse {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user