<template>
|
<!-- <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
|
<apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
|
-->
|
<template if:true={isLoad}>
|
<form id="mainForm" >
|
<!-- <apex:actionFunction action="{!SelectDone}" name="SelectDone" reRender="setPFString,DataStatus" oncomplete="SetMuiltProduct();"/> -->
|
<lightning-input type="hidden" value={data.setPFString} id="setPFString" ></lightning-input>
|
<lightning-input type="hidden" value={data.DataStatus} id="DataStatus" > </lightning-input>
|
<lightning-card title={Label.Set_Search}>
|
<!-- <apex:pageBlock id="idSearchSetProduct" title="{Label.Set_Search}"> -->
|
<table width="900" border="0" style="background-color:#DCDCDC;" >
|
<colgroup>
|
<col width="12" />
|
<col width="20" />
|
<col width="20" />
|
<col width="200" />
|
<col width="200" />
|
<col width="20" />
|
<col width="428" />
|
</colgroup>
|
|
<tr>
|
<td> </td>
|
<th>{Label.Search_Condition}</th>
|
<td> </td>
|
<th>{Label.Set_Name}</th>
|
<th>{Label.Set_Code}</th>
|
<td> </td>
|
<td> </td>
|
</tr>
|
<tr>
|
<td> </td>
|
<td> </td>
|
<td> </td>
|
<td><lightning-input type="search" value={SearchName} onchange={searchNameInputChange} style="width:200px" ></lightning-input></td>
|
|
<td><lightning-input type="search" value={SearchCode} onchange={searchCodeInputChange} style="width:200px" > </lightning-input></td>
|
|
<td><lightning-button label={Label.Search} onclick={Select} rerender="idRezultVisitor" class="slds-m-left_x-small"> </lightning-button></td>
|
|
<td><lightning-button label="添加" onclick={DataPrepare} class="slds-m-left_x-small"></lightning-button></td>
|
</tr>
|
<tr>
|
<td style="border-bottom: 1px solid #888;" colspan="15"> </td>
|
</tr>
|
</table>
|
<table width="900" border="0" style="background-color:#DCDCDC;" >
|
<tr>
|
<td width="12"> </td>
|
<th valign="top">{Label.Search_Result}</th>
|
<td width="20"> </td>
|
<td>
|
<table border="0">
|
<tr>
|
<td>
|
<div id="iframelike" style="width:770px;
|
height: 300px;
|
overflow-y: auto;
|
overflow-x: hidden;">
|
<lightning-datatable
|
key-field="id"
|
data={data.activities}
|
columns = {columns}>
|
</lightning-datatable>
|
|
<!-- <apex:pageBlockTable id="idRezultVisitor" value="{!activities}" var="c" border="1" columns="7" columnsWidth="30px,300px,120px,90x,200px,50px">
|
<apex:column >
|
<apex:facet name="header">选择</apex:facet>
|
<apex:inputCheckbox value="{!c.isSelected}"/>
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">Report</apex:facet>
|
<apex:outputLink value="{!baseUrl}/{!reportid}?pv1={!c.setProductid}" target="_blank">◆</apex:outputLink>
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">{Label.Set_Name}</apex:facet>
|
<apex:outputLink value="{!c.Name}" onclick="SetProductId('{!c.setProductidFull}')">{!c.Name}</apex:outputLink>
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">{Label.Set_Code}</apex:facet>
|
<apex:outputText value="{!c.Product_Set_CD_c}" />
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">{Label.Quantity}</apex:facet>
|
<apex:outputText value="{!c.Quantity}" />
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">{data.LabelI}</apex:facet>
|
<apex:outputText value="{!c.Quote_Select_Info_c}" />
|
</apex:column>
|
<apex:column >
|
<apex:facet name="header">{!$Label.Valid_Status}</apex:facet>
|
<template layout="inline" rendered={c.Valid_c} >
|
<img width="16" height="16" title="チェック" class="checkImg" alt="チェック" src="/img/checkbox_checked.gif"/>
|
</template>
|
</apex:column>
|
</apex:pageBlockTable> -->
|
</div>
|
</td>
|
</tr>
|
</table>
|
</td>
|
</tr>
|
</table>
|
<!-- </apex:pageBlock> -->
|
</lightning-card>
|
</form>
|
</template>
|
</template>
|