Opt

Brightcells 6 years ago
parent
commit
ec4986de73
2 changed files with 4 additions and 4 deletions
  1. 2 2
      mch/admin.py
  2. 2 2
      statistic/models.py

+ 2 - 2
mch/admin.py

@@ -186,8 +186,8 @@ class LatestAppScreenInfoAdmin(admin.ModelAdmin):
186 186
 
187 187
 
188 188
 class ConsumeInfoSubmitLogInfoAdmin(ReadOnlyModelAdmin, admin.ModelAdmin):
189
-    list_display = ('user_id', 'phone', 'lat', 'lon', 'serialNo', 'verifyResult', 'test_user', 'status', 'created_at', 'updated_at')
190
-    list_filter = ('test_user', 'verifyResult', 'status')
189
+    list_display = ('user_id', 'phone', 'lat', 'lon', 'serialNo', 'verifyResult', 'dupload', 'test_user', 'status', 'created_at', 'updated_at')
190
+    list_filter = ('dupload', 'test_user', 'verifyResult', 'status')
191 191
     search_fields = ('user_id', 'phone', 'serialNo')
192 192
 
193 193
 

+ 2 - 2
statistic/models.py

@@ -173,8 +173,8 @@ class ConsumeUserStatisticInfo(BaseModelMixin):
173 173
     num = models.IntegerField(_(u'num'), default=0, help_text=u'数量')
174 174
 
175 175
     class Meta:
176
-        verbose_name = _(u'[消费者维度]销量统计')
177
-        verbose_name_plural = _(u'[消费者维度]销量统计')
176
+        verbose_name = _(u'[消费者维度]用户统计')
177
+        verbose_name_plural = _(u'[消费者维度]用户统计')
178 178
 
179 179
     def __unicode__(self):
180 180
         return unicode(self.pk)