duhe
2023-10-15 73b3bf7cf1eda98c42216e785184ab0d830ab700
工作周计划:任意字段过滤去除周一至周日过滤
3个文件已修改
3127 ■■■■ 已修改文件
WebTM/Properties/PublishProfiles/JFTM.pubxml.user 3120 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebTM/WebTM.csproj.user 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebTM/views/项目管理/周计划/PM_WorkTaskWeekBillList.html 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebTM/Properties/PublishProfiles/JFTM.pubxml.user
Diff too large
WebTM/WebTM.csproj.user
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <NameOfLastUsedPublishProfile>D:\乔一计量单位列表\MES-WEB-LayUI\WebTM\Properties\PublishProfiles\JFTM.pubxml</NameOfLastUsedPublishProfile>
    <NameOfLastUsedPublishProfile>D:\网站发布\后端代码\MES-WEB-TM\MESWMS-LayUI\WebTM\Properties\PublishProfiles\JFTM.pubxml</NameOfLastUsedPublishProfile>
    <ProjectView>ProjectFiles</ProjectView>
    <LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
    <UseIISExpress>true</UseIISExpress>
WebTM/views/ÏîÄ¿¹ÜÀí/Öܼƻ®/PM_WorkTaskWeekBillList.html
@@ -398,7 +398,7 @@
                            col.push({ field: "HTuesday", title: "周二", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HWednesday", title: "周三", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HThursday", title: "周四", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HFirday", title: "周五", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HFriday", title: "周五", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HSaturday", title: "周六", align: 'center', sort: true, width: 120 })
                            col.push({ field: "HSunday", title: "周日", align: 'center', sort: true, width: 120 })
                            //设置列
@@ -840,8 +840,9 @@
            //#region ä»»æ„å­—段过滤:列名显示下拉框
            function ColFilter() {
                var Organization = '<option  value="0" selected="selected" ></option>';
                var noneArray = ["HMonday", "HTuesday", "HWednesday", "HThursday", "HFriday", "HSaturday", "HSunday"];              //设置不进行过滤的字段
                for (var i = 1; i < option.cols[0].length; i++) {
                    if (option.cols[0][i].hide != true) {
                    if (option.cols[0][i].hide != true && $.inArray(option.cols[0][i].field, noneArray) == -1) {
                        Organization += '<option  style="color:blue;" value="' + option.cols[0][i].field + '">' + option.cols[0][i].field + '</option>';
                    }
                }