liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!-- 20230512 zcx <apex:page controller="StatusPageController" showHeader="false" id="allPage" sidebar="false" action="{!init}" docType="html-5.0"> -->
<apex:page controller="StatusPageController" showHeader="false" id="allPage" sidebar="false" action="{!init}" docType="html-5.0" lightningStylesheets="true">
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
<apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
<apex:includeScript value="{!URLFOR($Resource.connection20)}"/>
<apex:includeScript value="{!URLFOR($Resource.apex20)}"/>
    <head>
        <title>跟进</title>
    </head>
    <style>
        /*kkbes 修改产品咨询相关页面 选择框大小字体   20230918*/
        body .multiSelectPicklistRow optgroup[label], .slds-vf-scope .multiSelectPicklistRow optgroup[label] {
    font-size: .80rem;
    line-height: 1.5;
    color: rgb(68, 68, 68);
    font-weight: bold;
}
body select[size] option, body select[multiple] option, .slds-vf-scope select[size] option, .slds-vf-scope select[multiple] option {
    text-indent: 0.12rem;
    font-size: small;
}
body .bPageBlock .dataCol .multiSelectPicklistRow select[multiple], .slds-vf-scope .bPageBlock .dataCol .multiSelectPicklistRow select[multiple] {
    display: block;
    min-width: auto;
    width: 133px;
    </style>
    <script type="text/javascript">
        function save(){
            var content = j$(escapeVfId('allPage:allForm:pageBlock:pageBlockSection:content')).value();
            var contentOther = j$(escapeVfId('allPage:allForm:pageBlock:pageBlockSection:contentOther')).value();
            //20220606 LLIU-CEGCRB you 
            var Redistribution = j$(escapeVfId('allPage:allForm:pageBlock:pageBlockSection:Redistribution')).value();
            var GotoDepartment = j$(escapeVfId('allPage:allForm:pageBlock:pageBlockSection:GotoDepartment')).value();
            
            var ProductOwner = j$(escapeVfId('allPage:allForm:pageBlock:pageBlockSection:ProductOwner')).value();
            /**if ((content == '' || content == null) && (contentOther.trim() == null || contentOther.trim() == '')) {
                alert('跟进内容不能为空!');
                return;
            }else **/if (content == '其他' && (contentOther.trim() == '' || contentOther.trim() == null)) {
                alert('跟进内容(其他)不能为空!');
                return;
            }else if (content == '' || content == null) {
                alert('跟进内容不能为空!');
                return;
            }
            /**20220726 LLIU-CGK3D2 you  **/
            /**20230630 you DB202306544691 拆分到,转科室
            else if(content == '仅需服务对应,营业服务共同对应'){
                alert('仅需服务对应和营业服务共同对应只能选择一项!');
                return;
            }else if((Redistribution == '' || Redistribution == null) && (null!=GotoDepartment && ''!=GotoDepartment)){
                alert('未勾选时不能填写转至科室!');
            }else if(('' !=Redistribution && null !=Redistribution) && (null==GotoDepartment || GotoDepartment == '')){
                alert('勾选时必须填写转至科室!');
            }else if((content == '' || content == null) && (contentOther.trim() == null || contentOther.trim() == '') && (Redistribution == '' || Redistribution == null)  && (null==GotoDepartment || GotoDepartment == '') && (ProductOwner == '' || ProductOwner == null) ){
                alert('跟进内容或已转换必须有一个有值');
            }**/else{
                blockme();
                allSave();
            }
        }
        function check(){
            window.opener.location.href = "/{!Inquiryform.id}";
            window.close();
        }
    </script>
    <apex:form id="allForm">
        <apex:actionfunction action="{!savefo}" name="allSave" onComplete="check();unblockUI();"></apex:actionfunction>
        <apex:pageBlock id="pageBlock">
            <apex:pageBlockSection id="pageBlockSection">  
                   <apex:pageBlockSectionItem ><font color="red">备注:需本人对应,请在此进行操作。</font></apex:pageBlockSectionItem><br /><br />
                    <apex:inputField id="content" value="{!Inquiryform.Follow_Content__c}" />
                    <br />
                    <apex:inputField id="contentOther" value="{!Inquiryform.Follow_Content_Other__c}" style="width: 150px"/>
                    <br />
                    <!--20230630 you DB202306544691 拆分到,转科室
                    <apex:pageBlockSectionItem ><font color="red">备注:非本人对应,请在此选择需对应的战略科室,进行转分配。</font></apex:pageBlockSectionItem><br /><br />
                    <apex:inputField id="Redistribution" value="{!Inquiryform.Redistribution__c}" />
                    <br />
                    <apex:inputField id="GotoDepartment" value="{!Inquiryform.GotoDepartment__c}" style="width: 150px"/>
                    <br />
                    <apex:inputField id="ProductOwner" value="{!Inquiryform.Product_Owner__c}"/>
                    <br />
                -->
            </apex:pageBlockSection>
 
            <apex:pageblockbuttons location="bottom">
                <apex:commandButton onclick="save();return false;" value="保存"></apex:commandButton>
            </apex:pageblockbuttons>
        </apex:pageBlock>
    </apex:form>
</apex:page>