b8e1ab6623181a2e95188123ce4b1451a8ed071f..4aa0982cda47312a7a1a2289a0ea405e96ea1b13
2023-07-21 liwentao
待确认 vf页面:
4aa098 对比 | 目录
2023-07-21 liwentao
待确认 vf页面:
b0b757 对比 | 目录
12个文件已修改
232 ■■■■ 已修改文件
force-app/main/default/classes/GuaranteePeriodAlterationController.cls 169 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/AccountQualifyAlert.page 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/BandwidthExceeded.page 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/BidAnnounceIframe.page 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/DealerPersonnelInformationImport.page 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/InMaintenance.page 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/InitCreateSolutionPage.page 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/OFSHoverView.page 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/UnderConstruction.page 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/genjinbaobiao.page 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/maintenanceContractNotOpen.page 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/taskFeedback.page 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/classes/GuaranteePeriodAlterationController.cls
@@ -17,29 +17,29 @@
        textOpts.add(new SelectOption('SerialNumber'        , Schema.SObjectType.Asset.fields.SerialNumber.label));
        //textOpts.add(new SelectOption('Installation_Site__c', Schema.SObjectType.Asset.fields.Installation_Site__c.label));
        //textOpts.add(new SelectOption('Department_Name__c'  , Schema.SObjectType.Asset.fields.Department_Name__c.label));
        changeReasonOpts = new List<SelectOption>();
        changeReasonOpts.add(new SelectOption(''  , '-无-'));
        changeReasonOpts.add(new SelectOption('集中采购,未分配到医院'  , '集中采购,未分配到医院'));
        changeReasonOpts.add(new SelectOption('其他'  , '其他'));
    }
    /*****************画面初始化用********************************/
    public Boolean editAble {get;set;}
    public Boolean spoLinkFlag {get;set;}
    public String statusEdit {get;set;}
    /*****************画面表示Bean******************/
    private List<GuaranteePeriodAlterationDetailInfo> guaranteePeriodAlterationDetailRecords = new List<GuaranteePeriodAlterationDetailInfo>();
    public List<GuaranteePeriodAlterationDetailInfo> guaranteePeriodAlterationDetaiRecordsview { get; set; }
    public Integer ConsumableorderdetailsCount {
    public Integer ConsumableorderdetailsCount {
        get {
            return guaranteePeriodAlterationDetailRecords == null ? 0 : guaranteePeriodAlterationDetailRecords.size();
        }
    }
    public Integer ConsumableorderdetailsviewCount {
    public Integer ConsumableorderdetailsviewCount {
        get {
            return guaranteePeriodAlterationDetaiRecordsview == null ? 0 : guaranteePeriodAlterationDetaiRecordsview.size();
        }
@@ -48,16 +48,16 @@
    public String Id  { get; set; }
    public Boolean isShow { get; set; }
    public List<Attachment> attachments { get; set; }
    public List<ContentDocument> contents { get; set; }
    //分页功能
    public Integer pageLimit{get;set;}
    public String soql {get;set;}
    public GuaranteePeriodAlterationController(ApexPages.StandardController stdController) {
        isShow = false;
        Statu_AchievementsId = ApexPages.currentPage().getParameters().get('Statu_AchievementsId');
        Id = ApexPages.currentPage().getParameters().get('Id');
        System.debug('id:'+Id+'   and sId:'+Statu_AchievementsId);
        statusEdit = ApexPages.currentPage().getParameters().get('KeyWords');
        guaranteePeriodAlterationDetailRecords = new List<GuaranteePeriodAlterationDetailInfo>();
        guaranteePeriodAlterationDetaiRecordsview = new List<GuaranteePeriodAlterationDetailInfo>();
@@ -66,11 +66,21 @@
        pageLimit = Integer.valueOf(System.Label.orderdetPageLimitsize);
        attachments = new List<Attachment>();
        //update 李文涛 2023/07/13 更新lightning附件上传 start
        List<ContentDocumentLink> cdlList = [SELECT ContentDocumentId
                                                   FROM ContentDocumentLink
                                                   WHERE LinkedEntityId = :Id];
        List<ID> fileIDs = new List<ID>();
        for (ContentDocumentLink docLink : cdlList) {
            fileIDs.add(docLink.ContentDocumentId);
        }
        contents=[SELECT Title,OwnerId,ContentModifiedDate from ContentDocument WHERE id IN :fileIDs];
        //update 李文涛 2023/07/13 更新lightning附件上传 end
    }
    // 画面初始化
    public void init() {
        if(Id!=null&&Id!=''&&statusEdit==''&&statusEdit==null){
            editAble = false;
        }else if((Id == null||Id=='')&&(statusEdit==''||statusEdit==null)){
@@ -82,16 +92,16 @@
        guaranteePeriodAlterationDetailRecords = new List<GuaranteePeriodAlterationDetailInfo>();
        List<Asset> assetListed = new List<Asset>();
        Map<String,GuaranteePeriodAlterationDetailInfo> MidMap = new Map<String,GuaranteePeriodAlterationDetailInfo>();
        if(Id== NULL || Id==''){
            List<Statu_Achievements__c> statuAchievements = [select Id,InstallDate__c from Statu_Achievements__c where Id = :Statu_AchievementsId];
            List<Statu_Achievements__c> statuAchievements = [select Id,InstallDate__c from Statu_Achievements__c where Id = :Statu_AchievementsId];
            ambc.WarrantyStartDate__c = statuAchievements[0].InstallDate__c;
            soql = this.makeSoql1('','');
            assetListed = Database.query(soql);
            for (Integer i = 0; i < assetListed.size(); i++) {
                guaranteePeriodAlterationDetailRecords.add(new GuaranteePeriodAlterationDetailInfo(assetListed[i]));
                MidMap.put(assetListed[i].Id, new GuaranteePeriodAlterationDetailInfo(assetListed[i]));
            }
@@ -101,7 +111,7 @@
        }else{
            List<GuaranteePeriodAlterationDetail__c> changeDetailList = new List<GuaranteePeriodAlterationDetail__c>();
            List<GuaranteePeriodAlterationApplication__c>  assetChangeList  = new List<GuaranteePeriodAlterationApplication__c>();
            assetChangeList = [select Id, Name,Change_status__c,
                                    ChangeReason__c,WarrantyStartDate__c,
                                    ChangeReason_text__c,GpaaStatu_Achievements__c
@@ -129,7 +139,7 @@
            for(GuaranteePeriodAlterationDetailInfo ass:MidMap.values()){
                guaranteePeriodAlterationDetailRecords.add(ass);
            }
            for(GuaranteePeriodAlterationDetailInfo ass : guaranteePeriodAlterationDetailRecords){
@@ -139,17 +149,17 @@
                        guaranteePeriodAlterationDetaiRecordsview.add(ass);
                    }
                }
            }
            isShow = true;
            attachments = seekAttachment();
        }
        }
    }
    // 检索
    public void searchConsumableorderdetails() {
        Map<String,GuaranteePeriodAlterationDetailInfo> MidMap = new Map<String,GuaranteePeriodAlterationDetailInfo>();
        List<Asset> asListed = new List<Asset>();
        soql = this.makeSoql1(text1,val1);
@@ -164,7 +174,7 @@
            if(!MidMap.containsKey(asListed[i].Id)){
                MidMap.put(asListed[i].Id, new GuaranteePeriodAlterationDetailInfo(asListed[i]));
            }
        }
@@ -184,6 +194,7 @@
        }  else {
            statu_AchievementId = ambc.GpaaStatu_Achievements__c;
        }
        statu_AchievementId='';
        String soql = 'select Id,name,SerialNumber,Asset_situation__c,Order_No__c,Account.Name,Status,Installation_Site__c,CurrentContract__c,guarantee_period__c,RepairQuantity__c from Asset where Backorder__c = \'' + statu_AchievementId +'\'';
        soql += ' AND AssetMark__c != \'耗材\'';
        if(!String.isBlank(text1)){
@@ -213,14 +224,14 @@
    //删除按钮
    public PageReference DelConsumable(){
        GuaranteePeriodAlterationApplication__c ambc = new GuaranteePeriodAlterationApplication__c(Id = Id);
        List<GuaranteePeriodAlterationDetail__c> changeDetailList = [Select Id,GuaranteePeriodAlteration__r.GpaaStatu_Achievements__c
                                                                        from GuaranteePeriodAlterationDetail__c
                                                                    where GuaranteePeriodAlteration__c = :Id];
        String rawAccountIded = '';
        List<GuaranteePeriodAlterationDetail__c> changeDetailList = [Select Id,GuaranteePeriodAlteration__r.GpaaStatu_Achievements__c
                                                                        from GuaranteePeriodAlterationDetail__c
                                                                    where GuaranteePeriodAlteration__c = :Id];
        String rawAccountIded = '';
        if(changeDetailList.size()> 0){
            rawAccountIded = changeDetailList[0].GuaranteePeriodAlteration__r.GpaaStatu_Achievements__c;
        }
        try {
            delete changeDetailList;
            delete ambc;
@@ -229,7 +240,7 @@
        } catch (Exception e) {
            ApexPages.addMessages(e);
            return null;
        }
        }
        //return null;
    }
@@ -239,7 +250,7 @@
        ref.setRedirect(true);
        return ref;
    }
    //查找当前"保修期限变更申请"所有的附件
    public List<Attachment> seekAttachment() {
        return [select Id, ParentId, Name, OwnerId, CreatedDate, BodyLength FROM Attachment where ParentId = :Id];
@@ -251,7 +262,15 @@
        ref.setRedirect(true);
        return ref;
    }
    //update 李文涛 2023/07/13 更新lightning附件上传 start
    //跳转到上传附件页面Lightning
    public PageReference uploadingAttachmentLightning(){
        //PageReference ref = new Pagereference('/p/attach/NoteAttach?pid=' + Id +'&retURL=%2Fapex/AssetGuaranteePeriodAlteration?Id='+Id);
        PageReference ref = new Pagereference('/lightning/n/lightning?objectApiName&context=RECORD_DETAIL&backgroundContext=%2Flightning%2Fr%2FAssetGuaranteePeriodAlteration__c%2F'+Id+'%2Fedit%3F0.source%3DalohaHeader&0.recordId='+Id+'');
        ref.setRedirect(true);
        return ref;
    }
    //update 李文涛 2023/07/13 更新lightning附件上传 start
    //查找"保有设备"是否含有"QIS"和"修理"和"保有设备的保修期限变更过"
    public Boolean find_QIS_Repair(List<String> assetIdList) {
@@ -262,7 +281,7 @@
        if (repairList.size() > 0 || qIS_ReportList.size() > 0 || assets.size() > 0) {
            if (repairList.size() > 0) {
                for (Repair__c repair :repairList) {
                    assetIdMap.put(repair.Delivered_Product__c,repair.Delivered_Product__r.SerialNumber+'(含修理)');
                }
@@ -283,7 +302,7 @@
            }
            return true;
        }
        }
        return false;
    }
@@ -297,9 +316,9 @@
        agAlteration.Id = Id;
        attachments = seekAttachment();
        if (ambc.ChangeReason__c == '集中采购,未分配到医院' && attachments.size() == 0) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请上传标书'));
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请上传标书'));
            return null;
        }
        }
        try{
@@ -312,32 +331,32 @@
            Approval.ProcessSubmitRequest psr = new Approval.ProcessSubmitRequest();
            psr.setObjectId(Id);
            Approval.ProcessResult submitResult = Approval.process(psr);
            return  ref;
            return  ref;
        }
        catch (Exception e) {
            //ApexPages.addmessages(e);
            Database.rollback(sp);
            return  null;
            return  null;
        }
        //return null;
        //return  UnabletoEdit();
        //return  UnabletoEdit();
    }
    //验证字段
    public Boolean warning() {
        if (String.isBlank(ambc.ChangeReason__c)) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请输入变更原因'));
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请输入变更原因'));
            return true;
        } else if (ambc.ChangeReason__c == '其他' && String.isBlank(ambc.ChangeReason_text__c)) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '变更原因为"其他"时,请输入"变更原因其他"'));
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '变更原因为"其他"时,请输入"变更原因其他"'));
            return true;
        } else if (ambc.WarrantyStartDate__c == null) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请输入保修开始日'));
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请输入保修开始日'));
            return true;
        }
@@ -351,7 +370,7 @@
        }
        if (Count == FLG) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请选择要修改的保有设备'));
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '请选择要修改的保有设备'));
            return true;
        }
@@ -362,10 +381,10 @@
    // 保存按钮
    public PageReference save() {
        //return null;
        GuaranteePeriodAlterationApplication__c  agAlteration = new GuaranteePeriodAlterationApplication__c ();
        List<GuaranteePeriodAlterationDetail__c> Ins = New List<GuaranteePeriodAlterationDetail__c>();
        //新建变更单时
        Savepoint sp = Database.setSavepoint();
        try {
@@ -373,11 +392,11 @@
            agAlteration.ChangeReason_text__c = ambc.ChangeReason_text__c;
            agAlteration.WarrantyStartDate__c = ambc.WarrantyStartDate__c;
            agAlteration.ChangeReason__c = ambc.ChangeReason__c;
            if (warning()) {
                return null;
            }
            }
            if (String.isBlank(Id)) {
@@ -392,23 +411,23 @@
                    ApexPages.addMessages(e);
                }
                Map<String,String> assetGuaranteeTimeMap = new Map<String,String>();
                List<GuaranteePeriodAlterationApplication__c> saveGpaApplicationList =
                                            [SELECT Id,Name,WarrantyStartDate__c
                                            FROM GuaranteePeriodAlterationApplication__c
                List<GuaranteePeriodAlterationApplication__c> saveGpaApplicationList =
                                            [SELECT Id,Name,WarrantyStartDate__c
                                            FROM GuaranteePeriodAlterationApplication__c
                                            WHERE id = :agAlteration.id];
                if ( saveGpaApplicationList.size() > 0) {
                    List<Asset> assetList = [Select Id,Guarantee_period_for_products__c,guarantee_period__c,RepairQuantity__c,SerialNumber
                                                 from Asset
                                                 where Backorder__c = :Statu_AchievementsId];
                    Map<String,Integer> assetMap = new Map<String,Integer>();
                    Map<String,Integer> assetMap = new Map<String,Integer>();
                    for (Asset ass :assetList) {
                        assetMap.put(ass.Id,Integer.valueOf(ass.guarantee_period__c));
                    }
                    }
                    List<String> assetIds = new List<String>();
@@ -424,23 +443,23 @@
                            gpaDetail.Name = saveGpaApplicationList[0].Name + '-'+ str;
                            gpaDetail.GuaranteePeriodAlteration__c = saveGpaApplicationList[0].Id;
                            gpaDetail.Asset__c = ass.ast.Id;
                            gpaDetail.GuaranteeTime__c  =  saveGpaApplicationList[0].WarrantyStartDate__c.addDays(assetMap.get(ass.ast.Id));
                            gpaDetail.GuaranteeTime__c  =  saveGpaApplicationList[0].WarrantyStartDate__c.addDays(assetMap.get(ass.ast.Id));
                            i++;
                            Ins.add(gpaDetail);
                            assetIds.add(ass.ast.Id);
                        }
                    }
                    if (find_QIS_Repair(assetIds)) {
                        ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '以下保有设备含有"QIS"或"修理"或"保修期限变更过"不适合变更"保修期限"' + assetIdMap.values()));
                        ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '以下保有设备含有"QIS"或"修理"或"保修期限变更过"不适合变更"保修期限"' + assetIdMap.values()));
                        return null;
                    }
                    }
                    //update saveGpaApplicationList;
                }
                }
                Id = agAlteration.id;
@@ -450,26 +469,26 @@
                }
            }
            //修改之后 保存订单
            else if(!String.isBlank(Id)){
            else if(!String.isBlank(Id)){
                agAlteration.Id = Id;
                agAlteration.GpaaStatu_Achievements__c = ambc.GpaaStatu_Achievements__c;
                agAlteration.GpaaStatu_Achievements__c = ambc.GpaaStatu_Achievements__c;
                update agAlteration;
                List<GuaranteePeriodAlterationDetail__c> delIns =
                List<GuaranteePeriodAlterationDetail__c> delIns =
                        [select Id from GuaranteePeriodAlterationDetail__c
                            where GuaranteePeriodAlteration__r.Id = :Id];
                if(delIns.size()>0){
                    delete delIns;
                }
                Integer i = 1;
                List<GuaranteePeriodAlterationApplication__c> saveGpaApplicationList =
                                [SELECT Id,Name
                                FROM GuaranteePeriodAlterationApplication__c
                List<GuaranteePeriodAlterationApplication__c> saveGpaApplicationList =
                                [SELECT Id,Name
                                FROM GuaranteePeriodAlterationApplication__c
                                WHERE id =:agAlteration.id];
                List<String> assetIds = new List<String>();
@@ -479,15 +498,15 @@
                        GuaranteePeriodAlterationDetail__c gpaDetail = new GuaranteePeriodAlterationDetail__c();
                        String str = string.valueOf(i);
                        if(str.length() == 1){
                            str = '0' + str;
                        }
                        gpaDetail.Name = saveGpaApplicationList[0].Name + '-'+ str;
                        gpaDetail.GuaranteePeriodAlteration__c = saveGpaApplicationList[0].Id;
                        gpaDetail.Asset__c = ass.ast.Id;
                        gpaDetail.Asset__c = ass.ast.Id;
                        i++;
                        Ins.add(gpaDetail);
                        assetIds.add(ass.ast.Id);
@@ -496,10 +515,10 @@
                if (find_QIS_Repair(assetIds)) {
                    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '以下保有设备含有"QIS"或"修理"或"保修期限变更过"不适合变更"保修期限"' + assetIdMap.values()));
                    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '以下保有设备含有"QIS"或"修理"或"保修期限变更过"不适合变更"保修期限"' + assetIdMap.values()));
                    return null;
                }
                if(Ins.size()>0){
                    insert Ins;
@@ -550,6 +569,6 @@
            ast = e;
            canSelect = true;
        }
    }
}
}
force-app/main/default/pages/AccountQualifyAlert.page
@@ -1,9 +1,10 @@
<apex:page standardController="Account"  extensions="AccountQualifyAlertController" showHeader="false" sidebar="false" action="{!init}">
<apex:page standardController="Account"  extensions="AccountQualifyAlertController" showHeader="false" sidebar="false" action="{!init}" lightningStylesheets="true">
    <apex:includeScript value="{!URLFOR($Resource.connection20)}"/>
    <apex:includeScript value="{!URLFOR($Resource.apex20)}"/>
    <script type="text/javascript">
        function init() {
        function init() {
            var is_Alert_Qualify = '{!is_Alert_Qualify}';
            alert(is_Alert_Qualify)
            if(is_Alert_Qualify == 'true'){
                alert('医院信息发生变化,请重新申请医院资质审批!');
            }
@@ -11,4 +12,4 @@
    </script>
    <body onload="init()">
    </body>
</apex:page>
</apex:page>
force-app/main/default/pages/BandwidthExceeded.page
@@ -1,4 +1,4 @@
<apex:page showHeader="false" title="{!$Label.site.bandwidth_limit_exceeded}">
<apex:page showHeader="false" title="{!$Label.site.bandwidth_limit_exceeded}" lightningStylesheets="true">
  <apex:composition template="StdExceptionTemplate">
    <apex:define name="icon">
      <apex:image url="{!URLFOR($Resource.SiteSamples, 'img/warning.gif')}"/>
@@ -12,6 +12,6 @@
      <apex:param value="mailto:{!$Site.AdminEmailAddress}"/>
      <apex:param value="{!$Label.site.email_us}"/>
    </apex:outputText>
   </apex:define>
   </apex:define>
  </apex:composition>
</apex:page>
</apex:page>
force-app/main/default/pages/BidAnnounceIframe.page
@@ -1,4 +1,4 @@
<apex:page standardController="Bid_Announcement__c" extensions="BidAnnounceIframeController" showChat="false" showHeader="false" sidebar="false" action="{!init}">
<apex:page standardController="Bid_Announcement__c" extensions="BidAnnounceIframeController" showChat="false" showHeader="false" sidebar="false" action="{!init}" lightningStylesheets="true">
<head>
<script type="text/javascript">
    function showIframePage() {
@@ -12,4 +12,4 @@
<script type="text/javascript">
    showIframePage();
</script>
</apex:page>
</apex:page>
force-app/main/default/pages/DealerPersonnelInformationImport.page
@@ -1,10 +1,10 @@
<apex:page showHeader="false" sidebar="false" id="allPage" title="经销商人员信息导入">
<apex:page showHeader="false" sidebar="false" id="allPage" title="经销商人员信息导入" lightningStylesheets="true">
<apex:includeLightning />
<div style="width:100%;height:100%;" id="TaskManageAppOutContainer" />
<script>
$Lightning.use("c:DealerPersonnelInformationImportApp", function() {
$Lightning.createComponent("c:DealerPersonnelInformationImport",
{
{
},
"TaskManageAppOutContainer",
function(cmp) {
@@ -12,4 +12,4 @@
});
});
</script>
</apex:page>
</apex:page>
force-app/main/default/pages/InMaintenance.page
@@ -1,4 +1,4 @@
<apex:page showHeader="false" title="{!$Label.site.in_maintenance}" cache="false">
<apex:page showHeader="false" title="{!$Label.site.in_maintenance}" cache="false" lightningStylesheets="true">
  <apex:composition template="StdExceptionTemplate">
    <apex:define name="icon">
      <apex:image url="{!URLFOR($Resource.SiteSamples, 'img/warning.gif')}"/>
@@ -16,4 +16,4 @@
    </apex:outputText>
   </apex:define>
  </apex:composition>
</apex:page>
</apex:page>
force-app/main/default/pages/InitCreateSolutionPage.page
@@ -1,18 +1,18 @@
<apex:page standardController="SolutionProjectRequirements__c" showHeader="false" sidebar="false">
<apex:page standardController="SolutionProjectRequirements__c" showHeader="false" sidebar="false" lightningStylesheets="true">
<!-- Begin Default Content REMOVE THIS -->
<script type="text/javascript">
    function init() {
    function init() {
        // url 路径
        var str = '/a3k/e?Name=*&nooverride=1';
        // 跳转页面
        window.open(str,'_self');
    }
</script>
<body onload="init()">
</body>
<!-- End Default Content REMOVE THIS -->
</apex:page>
</apex:page>
force-app/main/default/pages/OFSHoverView.page
@@ -1,4 +1,4 @@
<apex:page id="Page" sidebar="false" showHeader="false" applyBodyTag="false" applyHtmlTag="false">
<apex:page id="Page" sidebar="false" showHeader="false" applyBodyTag="false" applyHtmlTag="false" lightningStylesheets="true">
<html>
<head>
<meta name="viewport" content="width={!$CurrentPage.parameters.viewportwidth},user-scalable=yes" />
@@ -15,4 +15,4 @@
<div id="mydiv" class="individualPalette lookupHoverDetail lookupHoverDetailOverridable" style="visibility: visible;"> </div>
</body>
</html>
</apex:page>
</apex:page>
force-app/main/default/pages/UnderConstruction.page
@@ -1,4 +1,4 @@
<apex:page showHeader="false" title="{!$Label.site.site_under_construction}">
<apex:page showHeader="false" title="{!$Label.site.site_under_construction}" lightningStylesheets="true">
  <apex:composition template="StdExceptionTemplate">
    <apex:define name="icon">
      <apex:image url="{!URLFOR($Resource.SiteSamples, 'img/tools.gif')}"/>
@@ -16,4 +16,4 @@
    </apex:outputText>
   </apex:define>
  </apex:composition>
</apex:page>
</apex:page>
force-app/main/default/pages/genjinbaobiao.page
@@ -1,10 +1,10 @@
<apex:page showHeader="false" sidebar="false">
<apex:page showHeader="false" sidebar="false" lightningStylesheets="true">
<DIV align="left">
【重要】跟进报表 <BR/><BR/>
<A href="{!$Label.Url_Head_Standard}/00O100000027APj" target="_blank">002-0:询价跟进报表</A>
 <BR/><BR/>
<A href="{!$Label.Url_Head_Standard}/00O100000027AWV" target="_blank">002-1:注残跟进报表
<A href="{!$Label.Url_Head_Standard}/00O100000027AWV" target="_blank">002-1:注残跟进报表
</A>
<BR/><BR/>
@@ -20,4 +20,4 @@
<BR/>
</DIV>
</apex:page>
</apex:page>
force-app/main/default/pages/maintenanceContractNotOpen.page
@@ -1,4 +1,4 @@
<apex:page showHeader="false" sidebar="false" id="MaintenanceContractNotOpenApp" title="MaintenanceContractNotOpenApp">
<apex:page showHeader="false" sidebar="false" id="MaintenanceContractNotOpenApp" title="MaintenanceContractNotOpenApp" lightningStylesheets="true">
    <apex:includeLightning />
    <div style="width:100%;height:100%;" id="MaintenanceContractNotOpenApp" />
    <script>
@@ -12,4 +12,4 @@
        });
    </script>
</apex:page>
</apex:page>
force-app/main/default/pages/taskFeedback.page
@@ -1,4 +1,4 @@
<apex:page showHeader="false" sidebar="false" id="allPage" title="任务待反馈列表">
<apex:page showHeader="false" sidebar="false" id="allPage" title="任务待反馈列表" lightningStylesheets="true">
 <apex:includeLightning />
 <div style="width:100%;height:100%;" id="TaskFeedbackAppOutContainer" />
@@ -6,7 +6,7 @@
 <script>
 $Lightning.use("c:TaskFeedbackApp", function() {
 $Lightning.createComponent("c:taskFeedback",
 {
 {
 },
 "TaskFeedbackAppOutContainer",
 function(cmp) {
@@ -14,4 +14,4 @@
 });
 });
 </script>
</apex:page>
</apex:page>