From f9c2107415ef2e81074a9378485e98d32e1d1a4e Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期一, 09 十二月 2024 23:06:54 +0800 Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/funingyunwei --- server/visits/dmvisit_service/src/main/resources/application-pro.yml | 6 +- admin/src/components/business/OperaAreasWindow.vue | 31 ++++++++++++++- server/visits/dmvisit_admin/src/main/resources/bootstrap.yml | 2 server/system_gateway/src/main/resources/bootstrap.yml | 2 server/system_timer/src/main/resources/application-pro.yml | 6 +- server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/hksync/HkSyncVisitServiceImpl.java | 2 server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/SmsEmailColudController.java | 1 admin/src/views/Inspection/components/OperaYwPatrolLineWindow.vue | 12 +++++- server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractServiceImpl.java | 6 ++ server/system_timer/src/main/resources/bootstrap.yml | 2 server/system_gateway/src/main/resources/application-pro.yml | 13 ++++-- 11 files changed, 62 insertions(+), 21 deletions(-) diff --git a/admin/src/components/business/OperaAreasWindow.vue b/admin/src/components/business/OperaAreasWindow.vue index fea3c84..2458dad 100644 --- a/admin/src/components/business/OperaAreasWindow.vue +++ b/admin/src/components/business/OperaAreasWindow.vue @@ -6,8 +6,8 @@ @confirm="confirm" > <el-form :model="form" ref="form" label-width="100px" label-suffix="锛�" :rules="rules"> - <el-form-item :label="form.type==0?'甯傚悕绉�':'鍘垮尯鍚嶇О'" prop="name"> - <el-input v-model="form.name" :placeholder="form.type==0?'杈撳叆甯傚悕绉�':'杈撳叆鍘垮尯鍚嶇О'" v-trim/> + <el-form-item :label="form.type==1?'甯傚悕绉�':'鍘垮尯鍚嶇О'" prop="name"> + <el-input v-model="form.name" :placeholder="form.type==1?'杈撳叆甯傚悕绉�':'杈撳叆鍘垮尯鍚嶇О'" v-trim/> </el-form-item> <el-form-item label="鎺掑簭鐮�" prop="sortnum"> <el-input v-model="form.sortnum" placeholder="璇疯緭鍏ユ帓搴忕爜" v-trim/> @@ -31,7 +31,7 @@ parentId: null, name: null, sortnum: '0', - type: '', + type: null }, // 楠岃瘉瑙勫垯 rules: { @@ -45,6 +45,31 @@ }) }, methods: { + open (title, target) { + this.title = title + this.visible = true + this.$nextTick(() => { + this.$refs.form.resetFields() + this.form[this.configData['field.id']] = null + }) + // 鏂板缓 + if (target == null) { + this.$nextTick(() => { + for (const key in this.form) { + this.form[key] = target[key] + } + }) + + return + } + // 缂栬緫 + this.$nextTick(() => { + for (const key in this.form) { + this.form[key] = target[key] + } + }) + console.log(this.form) + }, // 纭鏂板缓 __confirmCreate () { this.$refs.form.validate((valid) => { diff --git a/admin/src/views/Inspection/components/OperaYwPatrolLineWindow.vue b/admin/src/views/Inspection/components/OperaYwPatrolLineWindow.vue index 64040ec..432d082 100644 --- a/admin/src/views/Inspection/components/OperaYwPatrolLineWindow.vue +++ b/admin/src/views/Inspection/components/OperaYwPatrolLineWindow.vue @@ -32,7 +32,7 @@ </el-form> <!-- --> - <el-dialog title="娣诲姞宸℃鐐�" :close-on-click-modal="false" append-to-body :visible.sync="isShowModal" width="780px"> + <el-dialog title="娣诲姞宸℃鐐�" :close-on-click-modal="false" append-to-body :visible.sync="isShowModal" width="880px"> <!-- <el-select class="w400" v-model="selPoint" clearable multiple filterable> <el-option v-for="item in pointList" :value="item.id" :label="item.name"></el-option> </el-select> --> @@ -50,6 +50,8 @@ </el-form-item> <el-button type="primary" @click="initData">鎼滅储</el-button> <el-button @click="reset">閲嶇疆</el-button> + <el-button type="primary" @click="editClick()" icon="el-icon-plus" + v-permissions="['business:ywpatrolpoint:create']">鏂板缓宸℃鐐�</el-button> </el-form> <el-table @selection-change="handleSelectionChange" v-loading="isWorking.search" :data="pointList" stripe> @@ -67,12 +69,14 @@ <el-button type="primary" @click="subModal">纭� 瀹�</el-button> </span> </el-dialog> + <OperaYwPatrolPointWindow ref="operaYwPatrolPointWindow" @success="handlePageChange" /> </GlobalWindow> </template> <script> import BaseOpera from '@/components/base/BaseOpera' import GlobalWindow from '@/components/common/GlobalWindow' +import OperaYwPatrolPointWindow from '@/views/Inspection/components/OperaYwPatrolPointWindow' import Pagination from '@/components/common/Pagination' import { fetchList as getFetchList } from '@/api/Inspection/ywPatrolPoint' import { create, updateById, detailById } from '@/api/Inspection/ywPatrolLine' @@ -81,7 +85,7 @@ export default { name: 'OperaYwPatrolLineWindow', extends: BaseOpera, - components: { GlobalWindow, Pagination }, + components: { GlobalWindow, Pagination,OperaYwPatrolPointWindow }, data() { return { // 琛ㄥ崟鏁版嵁 @@ -120,6 +124,10 @@ }) }, methods: { + editClick(row) { + this.$refs.operaYwPatrolPointWindow.open('鏂板缓宸℃鐐�') + // this.$refs.operaYwPatrolPointWindow.initData() + }, confirm() { const { form, list } = this this.$refs['form'].validate((valid) => { diff --git a/server/system_gateway/src/main/resources/application-pro.yml b/server/system_gateway/src/main/resources/application-pro.yml index b0ea2fd..d27b82f 100644 --- a/server/system_gateway/src/main/resources/application-pro.yml +++ b/server/system_gateway/src/main/resources/application-pro.yml @@ -1,12 +1,17 @@ spring: # 鏁版嵁婧愰厤缃� datasource: - url: jdbc:mysql://localhost:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai - username: root - password: funing@2024 + url: jdbc:mysql://rm-bp136n33jr035pbfl3o.mysql.rds.aliyuncs.com:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai + username: zhcg + password: Fnwtzx@1127$dmtt driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource - + redis: + # database: 0 + host: 127.0.0.1 + port: 6379 + password: + timeout: 5000 # 杩炴帴姹犱腑鐨勬渶灏忕┖闂茶繛鎺� jackson: time-zone: GMT+8 date-format: yyyy-MM-dd HH:mm:ss diff --git a/server/system_gateway/src/main/resources/bootstrap.yml b/server/system_gateway/src/main/resources/bootstrap.yml index bb432df..099da4a 100644 --- a/server/system_gateway/src/main/resources/bootstrap.yml +++ b/server/system_gateway/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ spring: profiles: - active: test + active: pro application: name: system_gateway # 瀹夊叏閰嶇疆 diff --git a/server/system_timer/src/main/resources/application-pro.yml b/server/system_timer/src/main/resources/application-pro.yml index b0ea2fd..c763d64 100644 --- a/server/system_timer/src/main/resources/application-pro.yml +++ b/server/system_timer/src/main/resources/application-pro.yml @@ -1,9 +1,9 @@ spring: # 鏁版嵁婧愰厤缃� datasource: - url: jdbc:mysql://localhost:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai - username: root - password: funing@2024 + url: jdbc:mysql://rm-bp136n33jr035pbfl3o.mysql.rds.aliyuncs.com:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai + username: zhcg + password: Fnwtzx@1127$dmtt driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource diff --git a/server/system_timer/src/main/resources/bootstrap.yml b/server/system_timer/src/main/resources/bootstrap.yml index 107b53b..05a83ce 100644 --- a/server/system_timer/src/main/resources/bootstrap.yml +++ b/server/system_timer/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ spring: profiles: - active: dev + active: pro application: name: systemTimer # 瀹夊叏閰嶇疆 diff --git a/server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/SmsEmailColudController.java b/server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/SmsEmailColudController.java index 4ce8ec6..23eccac 100644 --- a/server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/SmsEmailColudController.java +++ b/server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/SmsEmailColudController.java @@ -56,5 +56,4 @@ return ApiResponse.success("鎿嶄綔鎴愬姛"); } - } diff --git a/server/visits/dmvisit_admin/src/main/resources/bootstrap.yml b/server/visits/dmvisit_admin/src/main/resources/bootstrap.yml index 86e11a3..2df12af 100644 --- a/server/visits/dmvisit_admin/src/main/resources/bootstrap.yml +++ b/server/visits/dmvisit_admin/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ spring: profiles: - active: test + active: pro application: name: visitsAdmin # 瀹夊叏閰嶇疆 diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractServiceImpl.java index 729156a..25b1402 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractServiceImpl.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractServiceImpl.java @@ -1329,9 +1329,13 @@ if(model.getBillList()!=null && model.getBillList().size()>0){ for(YwContractBill bill: model.getBillList()){ //浠樻鐘舵�侊細0=寰呮敹娆撅紱1=宸茬粨娓咃紱2=閮ㄥ垎缁撴竻锛�3=寰呬粯娆撅紱4=寰呴��娆撅紱5=宸插叧闂� + if( Constants.formatBigdecimal(bill.getReceivableFee()).compareTo(new BigDecimal(0)) ==0){ + //濡傛灉杩樻病寮�濮嬶紝璐﹀崟鐩存帴鍏抽棴 + continue; + } if(Constants.equalsInteger(bill.getPayStatus(),Constants.ZERO) ||Constants.equalsInteger(bill.getPayStatus(),Constants.THREE)){ - if(bill.getStartDate().getTime()>nowEnd){ + if(bill.getStartDate().getTime()>nowEnd ){ //濡傛灉杩樻病寮�濮嬶紝璐﹀崟鐩存帴鍏抽棴 continue; } diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/hksync/HkSyncVisitServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/hksync/HkSyncVisitServiceImpl.java index 0665993..b11c923 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/hksync/HkSyncVisitServiceImpl.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/hksync/HkSyncVisitServiceImpl.java @@ -294,7 +294,7 @@ return ; } Constants.DEALING_HK_VISIT =true; - String path = systemDictDataBiz.queryByCode(Constants.FTP,Constants.FTP_RESOURCE_PATH).getCode() + String path = systemDictDataBiz.queryByCode(Constants.FTP,Constants.FTP_LOCAL_RESOURCE_PATH).getCode() +systemDictDataBiz.queryByCode(Constants.FTP,Constants.MEMBER_IMG).getCode(); List<DeviceRole> roleList = deviceRoleMapper.selectList(new QueryWrapper<DeviceRole>().lambda() .eq(DeviceRole::getType, Constants.ONE)); diff --git a/server/visits/dmvisit_service/src/main/resources/application-pro.yml b/server/visits/dmvisit_service/src/main/resources/application-pro.yml index ac528f3..71161ce 100644 --- a/server/visits/dmvisit_service/src/main/resources/application-pro.yml +++ b/server/visits/dmvisit_service/src/main/resources/application-pro.yml @@ -1,9 +1,9 @@ spring: # 鏁版嵁婧愰厤缃� datasource: - url: jdbc:mysql://localhost:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai - username: root - password: funing@2024 + url: jdbc:mysql://rm-bp136n33jr035pbfl3o.mysql.rds.aliyuncs.com:3306/funingyunwei?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai + username: zhcg + password: Fnwtzx@1127$dmtt driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource redis: -- Gitblit v1.9.3