400 lines
19 KiB
Plaintext
400 lines
19 KiB
Plaintext
<style type="text/css">
|
|
.summary {
|
|
margin-top: 80px;
|
|
}
|
|
</style>
|
|
@* the select function is provided by select-row directive*@
|
|
<div ng-controller="LCAFireEquipmentCtrl" select-row lca-detail>
|
|
@* header *@
|
|
@* header's button style is controlled by header-content-layout, the business logic(ng-show) is controlled here *@
|
|
<div class="body_content container" style="margin-top: 0px;">
|
|
<div header-content-layout>
|
|
<div style="margin: 10px 0 0 0;" ng-show="lcaDetail.isProductLCA">
|
|
<label for="Allocation">@Resource.Allocation</label>
|
|
<select name="AllocationN" id="Allocation"
|
|
ng-model="Allocation" style="width:130px"
|
|
ng-change="onAllocationChange(Allocation)"
|
|
ng-disabled="lcaDetail.Status == 5"
|
|
class="table_text_select">
|
|
<option value="-1">-- @Resource.StaticLabelGlobal_Select --</option>
|
|
<option value="99">@Resource.AllocationNon</option>
|
|
<option value="0">@Resource.AllocationWeight</option>
|
|
<option value="1">@Resource.AllocationAreaSize</option>
|
|
<option value="2">@Resource.AllocationPcsPerYear</option>
|
|
<option value="3">@Resource.AllocationEconomic</option>
|
|
<option value="4">@Resource.AllocationWorkHour</option>
|
|
</select>
|
|
<label for="Ratio">@Resource.Ratio {{Ratio}} </label>
|
|
</div>
|
|
</div>
|
|
|
|
<div header-content-layout style="margin-top:10px;">
|
|
|
|
@*header content layout provide the general function like mouse over and background image*@
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image1 }"
|
|
ng-show="lcaDetail.Status < 5"
|
|
ng-click="createProcess()"
|
|
ng-mouseover="headerLayout.headerImageChange(1, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(1, 1)">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show1">
|
|
<div ng-style="{ width: headerLayout.tooltipWidth(1) }">
|
|
@Resource.StaticLabelAddNew
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image4 }"
|
|
ng-click="editProcess(selectRow.getSelected())"
|
|
ng-mouseover="headerLayout.headerImageChange(4, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(4, 1)"
|
|
ng-show="selectRow.getSelected() != null">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show4">
|
|
<div ng-style="{ width: headerLayout.tooltipWidth(4) }">
|
|
@Resource.StaticLabelGlobal_Edit
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image6 }"
|
|
ng-click="deleteProcess(selectRow.getSelected())"
|
|
ng-mouseover="headerLayout.headerImageChange(6, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(6, 1)"
|
|
ng-show="selectRow.getSelected() != null">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show6">
|
|
<div ng-style="{ width: headerLayout.tooltipWidth(6) }">
|
|
@Resource.StaticLabelGlobal_Delete
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image8 }"
|
|
ng-click="modelBuilder.export(model)"
|
|
ng-mouseover="headerLayout.headerImageChange(8, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(8, 1)">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show8">
|
|
<div ng-style="{ width: tooltipWidth(8) }">
|
|
@Resource.StaticLabelExportBOM
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image9 }"
|
|
ng-click="fileImportModal.show = true;"
|
|
ng-mouseover="headerLayout.headerImageChange(9, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(9, 1)">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show9">
|
|
<div ng-style="{ width: tooltipWidth(9) }">
|
|
@Resource.StaticLabelImprotBOM
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image17 }"
|
|
ng-click="quoteModal.show = true;"
|
|
ng-mouseover="headerLayout.headerImageChange(17, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(17, 1)">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show17">
|
|
<div ng-style="{ width: tooltipWidth(17) }">
|
|
@Resource.StaticLabelReferenceData
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_image_button"
|
|
ng-style="{ backgroundImage: headerLayout.header_image11 }"
|
|
ng-click="search_box = !search_box"
|
|
ng-mouseover="headerLayout.headerImageChange(11, 2)"
|
|
ng-mouseleave="headerLayout.headerImageChange(11, 1)">
|
|
|
|
<div class="tooltip" ng-show="headerLayout.show11">
|
|
<div ng-style="{ width: tooltipWidth(11) }">
|
|
@Resource.StaticLabelGlobal_Search
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header_search" ng-show="!Table_Edit_State">
|
|
<input type="text" class="transition" ng-model="modelBuilder.searchText" ng-class="{ expand: search_box }" />
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
@* end of header *@
|
|
|
|
@* the body of index *@
|
|
<div class="body_content" ng-model="currentPage" ng-init="currentPage = 1">
|
|
<div class="table_overflow">
|
|
<table class="table" style="table-layout: fixed;">
|
|
<thead>
|
|
<tr class="table-active" style="text-align:center">
|
|
<th>@Resource.DeviceName</th>
|
|
<th>@Resource.EmissionSources</th>
|
|
<th>@Resource.Quantity</th>
|
|
<th>@Resource.UsageAmount</th>
|
|
<th>@Resource.StaticLabelGlobal_Remark</th>
|
|
<th>@Resource.EmitPara</th>
|
|
<th>@Resource.KgCO2e</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody ng-mouseleave="setHoverColumnRow(-1, -1, -1)">
|
|
<tr class="survey_order_table_row"
|
|
ng-class="{ selected: row == selectRow.getSelected() }"
|
|
ng-click="selectRow.select(row)"
|
|
ng-dblclick="editProcess(row)"
|
|
ng-repeat="row in model | filter: modelBuilder.searchText | smarterLimitTo : 10 : (currentPage - 1) * 10">
|
|
<td ng-bind="row.Name"></td>
|
|
<td ng-bind="sources[row.ParameterID]"></td>
|
|
<td ng-bind="row.Quantity" align="right"></td>
|
|
<td align="right">{{row.Scalar|number:4}}</td>
|
|
<td ng-bind="row.Description"></td>
|
|
<td align="right">{{row.factor|number:10}}</td>
|
|
<td align="right">{{row.KgCO2e|number:4}}</td>
|
|
</tr>
|
|
<tr style="background-color: #F5F5F5" ng-show="(model).length != 0" align="right">
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>{{sumKgCO2e | number:4}}</td>
|
|
</tr>
|
|
<tr style="border-bottom: solid 1px rgb(214, 214, 214);">
|
|
<td ng-show="model.length == 0">
|
|
@Resource.NoData
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@* end of the body of index *@
|
|
|
|
<page passed-total-page="Math.ceil(model.length / 10)" passed-current-page="currentPage"></page>
|
|
|
|
<div class="summary">
|
|
<table class="table" style="table-layout: fixed;">
|
|
<thead>
|
|
<tr class="table-active" style="text-align:center">
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
<th>@Resource.EmissionSources</th>
|
|
<th>@Resource.KgCO2e</th>
|
|
<th ng-show="lcaDetail.isProductLCA">@Resource.AllocatedKgCO2e</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-show="model.length > 0" style="background-color: #F5F5F5"
|
|
ng-repeat="sum in summary">
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td ng-bind="sources[sum.ParameterID]"></td>
|
|
<td align="right">{{sum.totalKgCO2e|number:4}}</td>
|
|
<td ng-show="lcaDetail.isProductLCA" align="right">{{sum.totalKgCO2e * Ratio |number:4}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@* the detail modal form *@
|
|
<form name="editForm">
|
|
<table-edit-modal display-option="modalFormOption" passed-form="editForm">
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.FactoryAndProcessItems</label>
|
|
<div class="col col-sm-8">
|
|
<input type="text" ng-model="selectRow.toBeEdit.ProcessName" />
|
|
</div>
|
|
<div class="validation_block"></div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.ResponsibleUnit</label>
|
|
<div class="col col-sm-8">
|
|
<input type="text" ng-model="selectRow.toBeEdit.ResponsibleUnit">
|
|
</div>
|
|
<div class="validation_block"></div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.DeviceName</label>
|
|
<div class="col col-sm-8">
|
|
<input type="text" ng-model="selectRow.toBeEdit.Name">
|
|
</div>
|
|
<div class="validation_block"></div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.EmissionSources</label>
|
|
<div class="col col-sm-8">
|
|
<select name="emissionSource"
|
|
required
|
|
ng-model="selectRow.toBeEdit.Source"
|
|
ng-options="value for (key, value) in sources">
|
|
<option value="">-- @Resource.StaticLabelGlobal_Select --</option>
|
|
</select>
|
|
</div>
|
|
<div class="validation_block">
|
|
<div ng-show="editForm.emissionSource.$dirty">
|
|
<small ng-show="editForm.emissionSource.$error.required">
|
|
@Resource.SelectValidateMsg
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.ActivityDataType</label>
|
|
<div class="col col-sm-8">
|
|
<select name="activityDataType" id="activityDataType"
|
|
ng-model="selectRow.toBeEdit.activityDataType"
|
|
@*ng-options="value for (key, value) in activityOptions"*@
|
|
class="form-select">
|
|
<option value="0">-- @Resource.StaticLabelGlobal_Select --</option>
|
|
<option ng-repeat="(key, value) in activityOptions"
|
|
value="{{key}}">
|
|
{{value}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.EmitParaType</label>
|
|
<div class="col col-sm-8">
|
|
<select name="emitParaType" id="emitParaType"
|
|
ng-model="selectRow.toBeEdit.emitParaType"
|
|
@*ng-options="value for (key, value) in emitParaOptions"*@
|
|
class="form-select">
|
|
<option value="0">-- @Resource.StaticLabelGlobal_Select --</option>
|
|
<option ng-repeat="(key, value) in emitParaOptions"
|
|
value="{{key}}">
|
|
{{value}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.Quantity</label>
|
|
<div class="col col-sm-8">
|
|
<input name="quantity"
|
|
type="number" step="any"
|
|
ng-pattern="/^\d+$/"
|
|
placeholder="@Resource.RequiredMessage"
|
|
required
|
|
ng-model="selectRow.toBeEdit.Quantity">
|
|
</div>
|
|
<div class="validation_block">
|
|
<div ng-show="editForm.quantity.$dirty">
|
|
<small ng-show="editForm.quantity.$error.required &&
|
|
!editForm.quantity.$error.number">
|
|
@Resource.RequiredMessage
|
|
</small>
|
|
<small ng-show="editForm.quantity.$error.number">
|
|
@Resource.NumberValidateMsg
|
|
</small>
|
|
<small ng-show="editForm.quantity.$error.pattern">
|
|
@Resource.NumberValidateMsg
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.UsageAmount</label>
|
|
<div class="col col-sm-8">
|
|
<input name="usageAmount"
|
|
type="number" step="any"
|
|
placeholder="@Resource.RequiredMessage"
|
|
required
|
|
ng-model="selectRow.toBeEdit.Scalar">
|
|
</div>
|
|
<div class="validation_block">
|
|
<div ng-show="editForm.usageAmount.$dirty">
|
|
<small ng-show="editForm.usageAmount.$error.required &&
|
|
!editForm.usageAmount.$error.number">
|
|
@Resource.RequiredMessage
|
|
</small>
|
|
<small ng-show="editForm.usageAmount.$error.number">
|
|
@Resource.NumberValidateMsg
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.StaticLabelGlobal_Remark</label>
|
|
<div class="col col-sm-8">
|
|
<input type="text" ng-model="selectRow.toBeEdit.Description">
|
|
</div>
|
|
<div class="validation_block"></div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.EmitPara</label>
|
|
<div class="col col-sm-8">
|
|
{{selectRow.toBeEdit.factor|number:10}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-4 col-form-label">@Resource.KgCO2e</label>
|
|
<div class="col col-sm-8">
|
|
{{selectRow.toBeEdit.KgCO2e|number:4}}
|
|
@*<input type="number" step="any" readonly="readonly" ng-model="selectRow.toBeEdit.KgCO2e">*@
|
|
</div>
|
|
</div>
|
|
|
|
<div class="survey_btn_wrap">
|
|
<div class="survey_content" style="float: right">
|
|
<div class="row">
|
|
<button class="header_button"
|
|
style="float: left; margin-left: 16px;"
|
|
ng-click="dataQualityShow(selectRow.getSelected())"
|
|
ng-if="isEdit && lcaDetail.isProductLCA">
|
|
@Resource.DataQualityLevel
|
|
</button>
|
|
<button class="header_button"
|
|
style="float: left; margin-left: 16px;"
|
|
ng-click="save()"
|
|
ng-show="lcaDetail.Status < 5"
|
|
ng-disabled="editForm.$invalid">
|
|
@Resource.StaticLabelGlobal_Save
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</table-edit-modal>
|
|
</form>
|
|
@* end of the detail modal form *@
|
|
|
|
<table-edit-modal display-option="fileImportModal">
|
|
<div file-import-process import-option="fileImportOptions"></div>
|
|
</table-edit-modal>
|
|
|
|
<quality display-option="dataQualityOption">
|
|
</quality>
|
|
|
|
<table-edit-modal display-option="quoteModal">
|
|
<div></div>
|
|
<div quote quote-options="quoteOptions"></div>
|
|
</table-edit-modal>
|
|
<div class="footnote">
|
|
@Html.Raw(@Resource.FootnoteFireEquipment.Replace("\r\n", "<br>"))
|
|
</div>
|
|
</div>
|
|
</div> |