Merge remote-tracking branch 'origin/master'
This commit is contained in:
+2
-1
@@ -192,8 +192,9 @@ public class ProjectLibraryBaseController extends JeroController<ProjectLibraryB
|
||||
* @param params
|
||||
*/
|
||||
@RequestMapping(value = "/exportProjectDetailsStatisticsGroupByTerritoryXls")
|
||||
public void exportProjectDetailsStatisticsGroupByTerritoryXls(HttpServletResponse response,HttpServletRequest request, Map<String,Object> params) {
|
||||
public void exportProjectDetailsStatisticsGroupByTerritoryXls(HttpServletResponse response,HttpServletRequest request, @RequestParam Map<String,Object> params) {
|
||||
projectLibraryBaseService.exportProjectDetailsStatisticsGroupByTerritoryXls(response,request, params);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -449,7 +449,7 @@ public class ProjectLibraryBaseServiceImpl extends ServiceImpl<ProjectLibraryBas
|
||||
String[] titleArr = title.split(",");
|
||||
Row firstRow = sheet.createRow(0);
|
||||
|
||||
for (int i = 0; i <= 2; i++){
|
||||
for (int i = 0; i < 2; i++){
|
||||
Cell cell = firstRow.createCell(i);
|
||||
cell.setCellValue(titleArr[i]);
|
||||
}
|
||||
|
||||
@@ -185,27 +185,27 @@
|
||||
{{$t('cancel')}}
|
||||
</a-button>
|
||||
</template>
|
||||
<div class="engineeringBox">
|
||||
<div style="width: calc(100% - 12px)" v-for="(item,index) in detailsList" v-if="detailsList.length > 0">
|
||||
<div class="engineeringBox" v-if="detailsList.length > 0">
|
||||
<div style="width: calc(100% - 12px)" v-for="(item,index) in detailsList">
|
||||
<div class="title-header-text" v-if="index == 0">
|
||||
{{this.$t('currentInformation')}}
|
||||
{{$t('currentInformation')}}
|
||||
</div>
|
||||
<div class="title-header-text" style="margin-top: 40px" v-if="index == 1">
|
||||
{{this.$t('deliveryHistory')}}
|
||||
{{$t('deliveryHistory')}}
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-bottom: 18px">
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('projectDeliveryRequirements')}}:</div>
|
||||
<div class="text-field-left">{{$t('projectDeliveryRequirements')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="19">
|
||||
<div class="text-field-right">
|
||||
{{item.deliveryInstructions}}
|
||||
{{item.deliveryRequirements}}
|
||||
</div>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24" style="margin-bottom: 18px">
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('feedbackFromTheEngineer')}}:</div>
|
||||
<div class="text-field-left">{{$t('feedbackFromTheEngineer')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="19">
|
||||
<div class="text-field-right">
|
||||
@@ -215,18 +215,18 @@
|
||||
</a-row>
|
||||
<a-row :gutter="24" style="margin-bottom: 18px">
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('Deliverables')}}:</div>
|
||||
<div class="text-field-left">{{$t('Deliverables')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="19">
|
||||
<div v-if="item.fileId" class="text-field-right text-field-cou"
|
||||
@click="viewFileClick(item.fileId)">
|
||||
{{this.$t('viewUploadedFiles')}}
|
||||
{{$t('viewUploadedFiles')}}
|
||||
</div>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24" style="margin-bottom: 18px">
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('completedBy')}}:</div>
|
||||
<div class="text-field-left">{{$t('completedBy')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="7">
|
||||
<div class="text-field-right">
|
||||
@@ -234,7 +234,7 @@
|
||||
</div>
|
||||
</a-col>
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('completedTime')}}:</div>
|
||||
<div class="text-field-left">{{$t('completedTime')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="7">
|
||||
<div class="text-field-right">
|
||||
@@ -244,7 +244,7 @@
|
||||
</a-row>
|
||||
<a-row :gutter="24" style="margin-bottom: 18px">
|
||||
<a-col :span="5">
|
||||
<div class="text-field-left">{{this.$t('replyFromProjectContactPerson')}}:</div>
|
||||
<div class="text-field-left">{{$t('replyFromProjectContactPerson')}}:</div>
|
||||
</a-col>
|
||||
<a-col :span="19">
|
||||
<div class="text-field-right">
|
||||
@@ -253,9 +253,9 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
<div class="noData">
|
||||
{{this.$t('noData')}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="noData" v-else>
|
||||
{{$t('noData')}}
|
||||
</div>
|
||||
<div class="page" v-if="detailsList.length > 0">
|
||||
<a-pagination
|
||||
|
||||
Reference in New Issue
Block a user