123
chenjingwu
2024-04-25 aebb2c4ece794a9fe486328c042e3dcd33f0ccd5
force-app/main/default/pages/MaintenanceProductData.page
@@ -916,6 +916,15 @@
        <apex:actionFunction name="returnMpdPage" action="{!returnMpdPage}" rerender="message" onComplete="unblockUI();">
        </apex:actionFunction>
        <!-- chenjingwu  -->
        <apex:actionFunction name="addEx" action="{!addEx}" rerender="editAble,mpdDetailsSection,edmpdDetails, message" onComplete="unblockUI();">
            <apex:param name="firstParam" assignTo="{!ProId}" value="" />
        </apex:actionFunction>
        <apex:actionFunction name="deleteEx" action="{!deleteEx}" rerender="editAble,mpdDetailsSection,edmpdDetails, message" onComplete="unblockUI();">
            <apex:param name="firstParam" assignTo="{!ProId}" value="" />
            <apex:param name="secondParam" assignTo="{!index}" value="" />
        </apex:actionFunction>
        <!-- chenjingwu  -->
        <apex:pageBlock id="EDCline_1" >
            <apex:commandButton onclick="EditMpd();"   value="编辑" style="margin-left:30px;width:180px" rerender="mpdDetailsSection,edmpdDetails,message" rendered="{!!editAble }" disabled="{!IF(mpd.Status__c ='草案中'||mpd.Status__c='已驳回'||!editDisabled,false,true)}"/>
@@ -1621,52 +1630,127 @@
    refreshinput4();
    refreshinput5();
    refreshinput6();
    function addJs(){
    }
    function deleteJs(){
    }
    </script>
                </apex:pageBlock>
                <!-- chenjingwu 20240417    start -->
                <apex:pageblocksection title="{!IF(editAble,'延保信息维护','延保信息维护(蓝色为新值)')}" id="exmpdDetails" rendered="{!IF(muMap!=null,true,false)}" html-style="width: 100%;max-height:210px;;overflow:auto;">
                    <table class="list" border="0" cellpadding="0" cellspacing="0">
                        <tr class="headerRow">
                            <th>产品名称</th>
                            <th>延保年限</th>
                            <th>延保金额</th>
                            <th>计提金额</th>
                            <th>操作</th>
                        </tr>
                        <apex:repeat value="{!muMap}" var="key" id="bb1">
                            <tr>
                                <td class="dataCell" rowspan="{!IF(muCountMap[key] > 1,muCountMap[key],1)}">
                                    {!muMap[key][0].ProductName__c}
                                </td>
                                <td class="dataCell">
                                    {!muMap[key][0].AgeLimit__c}
                                </td>
                                <td class="dataCell">
                                    {!muMap[key][0].MultiOneYearWarrantyPrice__c}
                                </td>
                                <td class="dataCell">
                                    {!muMap[key][0].AmountWithheld__c}
                                </td>
                                <td></td>
                            </tr>
                            <apex:repeat value="{!muMap[key]}" var="mu" id="bb2" first="1">
                                <tr>
                                <td class="dataCell">
                                    {!mu.AgeLimit__c}
                                </td>
                                <td class="dataCell">
                                    {!mu.MultiOneYearWarrantyPrice__c}
                                </td>
                                <td class="dataCell">
                                    {!mu.AmountWithheld__c}
                                </td>
                                <td></td>
                            </tr>
                            </apex:repeat>
                        </apex:repeat>
                    </table>
                <apex:pageblocksection title="{!IF(editAble,'延保信息维护','延保信息维护(蓝色为新值)')}" id="exmpdDetails1" rendered="{!IF(exmpdDetailsRecordsMap!=null&&muCountMap!=null,true,false)}" html-style="width: 100%;max-height:210px;;overflow:auto;">
                    <apex:outputLabel style="width: 100%;">
                        <apex:variable var="edvun" value="" rendered="{!editAble}" id="Edit">
                            <table class="list">
                                <tr class="headerRow">
                                    <th>产品名称</th>
                                    <th>延保年限</th>
                                    <th>延保金额</th>
                                    <th>计提金额</th>
                                    <th>操作</th>
                                </tr>
                                <tr >
                                    <apex:repeat value="{!mpdDetailsRecords}" var="mp" id="aa">
                                        <tr>
                                            <td class="dataCell" rowspan="{!IF(muCountMap[mp.mpded.ProductsID__c] > 1,muCountMap[mp.mpded.ProductsID__c],1)}">
                                                {!mp.mpded.ProductsID__r.Name}
                                            </td>
                                            <td class="dataCell">
                                                <apex:InputField value="{!exmpdDetailsRecordsMap[mp.mpded.ProductsID__c][0].mpdrdd.AgeLimit__c}" id="AgeLimit" onchange="ageLimitChange(this)"/>
                                            </td>
                                            <td class="dataCell">
                                                <apex:InputField value="{!exmpdDetailsRecordsMap[mp.mpded.ProductsID__c][0].mpdrdd.MultiOneYearWarrantyPrice__c}" id="MultiOneYearWarrantyPrice" />
                                            </td>
                                            <td class="dataCell">
                                                <apex:InputField value="{!exmpdDetailsRecordsMap[mp.mpded.ProductsID__c][0].mpdrdd.AmountWithheld__c}" id="AmountWithheld" />
                                            </td>
                                            <td>
                                                <apex:commandButton  title="{!mp.mpded.ProductsID__c}" id="add" onclick="addJs(this);" value="添加" style="position:relative;width:100px;"/>
                                                <apex:commandButton  title="{!mp.mpded.ProductsID__c}" id="delete" onclick="deleteJs(this);" value="删除" style="position:relative;width:100px;"/>
                                            </td>
                                        </tr>
                                        <apex:repeat value="{!exmpdDetailsRecordsMap[mp.mpded.ProductsID__c]}" var="mu" id="bb1" first="1">
                                            <tr>
                                                <td class="dataCell">
                                                    <apex:InputField value="{!mu.mpdrdd.AgeLimit__c}" id="AgeLimit" />
                                                </td>
                                                <td class="dataCell">
                                                    <apex:InputField value="{!mu.mpdrdd.MultiOneYearWarrantyPrice__c}" id="MultiOneYearWarrantyPrice" />
                                                </td>
                                                <td class="dataCell">
                                                    <apex:InputField value="{!mu.mpdrdd.AmountWithheld__c}" id="AmountWithheld" />
                                                </td>
                                                <td>
                                                    <apex:commandButton title="{!mp.mpded.ProductsID__c}" id="add1" onclick="add1Js(this);" value="添加" style="position:relative;width:100px;"/>
                                                    <apex:commandButton title="{!mp.mpded.ProductsID__c}" id="delete1" onclick="delete1Js(this);" value="删除" style="position:relative;width:100px;"/>
                                                </td>
                                            </tr>
                                        </apex:repeat>
                                    </apex:repeat>
                                </tr>
                            </table>
                        </apex:variable>
                        <apex:variable var="edvun" value="" rendered="{!!editAble}" id="View">
                            <table class="list">
                                <tr class="headerRow">
                                    <th>产品名称</th>
                                    <th>延保年限</th>
                                    <th>延保金额</th>
                                    <th>计提金额</th>
                                </tr>
                                <tr >
                                    <apex:repeat value="{!mpdDetailsRecords}" var="mp" id="aa">
                                        <tr>
                                            <td class="dataCell" rowspan="{!IF(muCountViewMap[mp.mpded.ProductsID__c] > 1,muCountViewMap[mp.mpded.ProductsID__c],1)}">
                                                {!mp.mpded.ProductsID__r.Name}
                                            </td>
                                            <td class="dataCell">
                                                <apex:outputField value="{!exmpdDetailsRecordsViewMap[mp.mpded.ProductsID__c][0].mpdrdd.AgeLimit__c}"/>
                                            </td>
                                            <td class="dataCell">
                                                <apex:outputField value="{!exmpdDetailsRecordsViewMap[mp.mpded.ProductsID__c][0].mpdrdd.MultiOneYearWarrantyPrice__c}"/>
                                            </td>
                                            <td class="dataCell">
                                                <apex:outputField value="{!exmpdDetailsRecordsViewMap[mp.mpded.ProductsID__c][0].mpdrdd.AmountWithheld__c}"/>
                                            </td>
                                        </tr>
                                        <apex:repeat value="{!exmpdDetailsRecordsViewMap[mp.mpded.ProductsID__c]}" var="mu" id="bb1" first="1">
                                            <tr>
                                                <td class="dataCell">
                                                    <apex:outputField value="{!mu.mpdrdd.AgeLimit__c}" />
                                                </td>
                                                <td class="dataCell">
                                                    <apex:outputField value="{!mu.mpdrdd.MultiOneYearWarrantyPrice__c}" />
                                                </td>
                                                <td class="dataCell">
                                                    <apex:outputField value="{!mu.mpdrdd.AmountWithheld__c}"/>
                                                </td>
                                            </tr>
                                        </apex:repeat>
                                    </apex:repeat>
                                </tr>
                            </table>
                        </apex:variable>
                    </apex:outputLabel>
                </apex:pageblocksection>
                <!-- chenjingwu 20240417 end -->
                <script type="text/javascript">
                    function addJs(el){
                        addEx(el.title);
                    }
                    function add1Js(el){
                        addEx(el.title);
                    }
                    function delJs(el){
                        deleteEx(el.title,0);
                    }
                    function del1Js(el){
                        var index2 = el.id.substring(el.id.lastIndexOf('bb1:') + 4,el.id.length - 5);
                        deleteEx(el.title,index2);
                    }
                </script>
                <!-- chenjingwu 20240417 end  -->
            </apex:pageBlock>
        </apex:outputPanel>
    </apex:form>