首页 > 其他 > 详细

CRM客户关系管理系统(六)

时间:2018-04-30 23:48:06      阅读:440      评论:0      收藏:0      [点我收藏+]

第六章、排序和搜索功能开发

 6.1.排序功能开发

(1)kingadmin_tags.py

@register.simple_tag
def get_sorted_column(column,sorted_column,forloop):
    ‘‘‘排序‘‘‘
    if column in sorted_column:    #如果这一列被排序了
        #要判断上一次排序是按什么顺序,本次取反
        last_sort_index = sorted_column[column]
        if last_sort_index.startswith(-):
            #利用切片,去掉‘-’
            this_time_sort_index = last_sort_index.strip(-)
        else:
            #加上 ‘-‘
            this_time_sort_index = -%s% last_sort_index
        return this_time_sort_index
    else:
        return forloop

(2)kingadmin/views.py

def get_orderby_result(request,querysets,admin_class):
    ‘‘‘排序‘‘‘

    current_ordered_column = {}
    #通过前端获取到要排序的字段的索引(是个字符串)
    orderby_index = request.GET.get(_o)
    if orderby_index:
        #通过索引找到要排序的字段,因为索引有可能是负数也有可能是负数,要用绝对值,否则负值的时候取到了其它字段了
        orderby_key = admin_class.list_display[abs(int(orderby_index))]
        #记录下当前是按什么排序字段的
        current_ordered_column[orderby_key] = orderby_index
        if orderby_index.startswith(-):
            orderby_key = - + orderby_key

        return querysets.order_by(orderby_key),current_ordered_column
    else:
        return querysets,current_ordered_column

技术分享图片

 

(3)table_obj_list.html

<th><a href="?_o={% get_sorted_column column sorted_column forloop.counter0 %}">{{ column }}</a></th>

技术分享图片

 

 (4)添加正序倒序的图标

Boorstrap组件:https://v3.bootcss.com/components/

技术分享图片

 

把bootstrap的fonts静态文件放到kingadmin/staic/fonts下面

技术分享图片

 

(5)kingadmin_tags.py

@register.simple_tag
def render_sorted_arrow(column,sorted_column):
    ‘‘‘排序的图标‘‘‘

    if column in sorted_column:
        last_sort_index = sorted_column[column]
        if last_sort_index.startswith(-):
            arrow_direction = bottom

        else:
            arrow_direction = top
        ele = ‘‘‘<span class="glyphicon glyphicon-triangle-%s" aria-hidden="true"></span>‘‘‘% arrow_direction
        return mark_safe(ele)

    return ‘‘

(6)table_obj_list.html

<th><a href="?_o={% get_sorted_column column sorted_column forloop.counter0 %}">
                                {{ column }}{% render_sorted_arrow column sorted_column %}
                            </a></th>

技术分享图片

 

 效果:

技术分享图片

 

6.2.分页、排序和过滤组合使用

 (1)排序和过滤组合

table_obj_list.html

技术分享图片

 

 (2)kingamdin_tags.py

@register.simple_tag
def render_filtered_args(admin_class):
    ‘‘‘拼接过滤的字段‘‘‘
    if admin_class.filter_conditions:
        ele = ‘‘
        for k,v in admin_class.filter_conditions.items():
            ele += &%s=%s%(k,v)
        return mark_safe(ele)
    else:
        return ‘‘

现在过滤和排序的组合没有问题,但是分页还没有组合到一起

 (3)过滤和分页组合

table_obj_list.html

技术分享图片

 kingadmin_tags.py

 技术分享图片

def render_paginator先添加一个参数admin_class

技术分享图片

 

(4)分页、排序、过滤组合

table_obj_list.py

技术分享图片

 

 kingadmin_tag.py

@register.simple_tag
def get_current_sorted_column_index(sorted_column):
    #三元运算,如果为True执行左边的,为False,执行右边的(‘‘)
    return list(sorted_column.values())[0] if sorted_column else ‘‘

 table_obj_list.py

 技术分享图片

 kingadmin_tag.py

 技术分享图片

 

现在排序、过滤和分页组合就没有问题了

技术分享图片

 

6.3.搜索功能开发

全局搜索 

(1)table_obj_list.html

 技术分享图片

 

 (2)kingadmin/views.py

技术分享图片

 

from django.db.models import Q

def get_searched_result(request,querysets,admin_class):
    ‘‘‘搜索‘‘‘

    search_key = request.GET.get(_q)
    if search_key:
        q = Q()
        q.connector = OR

        for search_field in admin_class.search_fields:
            q.children.append(("%s__contains"%search_field,search_key))

        return querysets.filter(q)
    return querysets

技术分享图片

现在实现的是全局搜索功能(不能过滤的同时搜索), 下面添加 过滤+搜索的功能

 

 过滤+搜索

 只需要添加一个隐藏标签就可以

kingadmin/vies.py

 技术分享图片

 table_obj_list.html

 技术分享图片

 效果:

 技术分享图片

 

功能优化

(1)用户并不知道可以通过哪些字段去搜索,在搜索框里添加提示(placeholder)

技术分享图片

 <form action="">
            <input type="search" placeholder="{% for s in admin_class.search_fields %}{{ s }},{% endfor %}" name="_q" value="{{ admin_class.search_key }}">
            <input type="submit" value="Search">
            {% for k,v in admin_class.filter_conditions.items %}
                <input type="hidden" name="{{ k }}" value="{{ v }}">
            {% endfor %}
        </form>

 

 (2)添加Bootstrap样式

 过滤字段提示和美化

table_obj_list.html

“过滤”按钮

技术分享图片

kingadmin_tags.py

过滤字段提示+添加框的美化样式

 技术分享图片

末尾要加</div>闭合

 技术分享图片

显示效果:

 技术分享图片

 

代码已同步github  num6 排序功能开发;分页、排序、筛选组合使用;搜索功能开发

 

CRM客户关系管理系统(六)

原文:https://www.cnblogs.com/derek1184405959/p/8974063.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!