From bcad32a89e7c9f40d1598273571261a524c9757e Mon Sep 17 00:00:00 2001 From: ag <2663588772@qq.com> Date: Thu, 27 Mar 2025 09:27:39 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E6=A1=A3=E6=A1=88=E5=B0=BA=E5=AF=B8?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E8=B0=83=E6=95=B4=202=E3=80=81=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E6=95=B0=E6=8D=AE=E5=A2=9E=E5=8A=A0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E4=BC=A0=E9=80=92=203=E3=80=81=E5=87=BA?= =?UTF-8?q?=E5=BA=93=E7=9A=84=E6=97=B6=E9=97=B4=E5=AD=97=E6=AE=B5=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- artSystem.js | 14 +++++--- cellsysArt.js | 53 +++++++++++++++++++++++++++---- components/equData/eqDataForm.vue | 4 +++ outbound.js | 15 ++++++--- 4 files changed, 71 insertions(+), 15 deletions(-) diff --git a/artSystem.js b/artSystem.js index da31243..7d0f740 100644 --- a/artSystem.js +++ b/artSystem.js @@ -213,9 +213,6 @@ class ArtSystem { editTask.addParam('_author', params.author); editTask.addParam('_create_period', params.createPeriod); editTask.addParam('_actual_number', params.actualNumber); - editTask.addParam('_length', params.length); - editTask.addParam('_width', params.width); - editTask.addParam('_height', params.height); if (params.texture) { editTask.addParam('_texture', params.texture.dict_code); } @@ -233,7 +230,14 @@ class ArtSystem { editTask.addParam('_original_registration_number', params.originalRegistrationNumber); editTask.addParam('_remark', params.remarks); editTask.addParam('_images', params.images); - editTask.addParam('_size', params.size); + if (params.size && params.size.length > 0) { + editTask.addParam( + '_size', + params.size.map((item) => { + return item.toParams(); + }), + ); + } return new Promise((resolve, reject) => { editTask .execute() @@ -731,7 +735,7 @@ class ArtSystem { let editTask = new EditTask(artApi.laboratoryInsert); editTask.addParam('_name', params.name); editTask.addParam('_geometry', params.geometry); - editTask.addParam("_geometry_position", params.geometryPosition); + editTask.addParam('_geometry_position', params.geometryPosition); editTask.addParam('_description', params.description); return new Promise((resolve, reject) => { editTask diff --git a/cellsysArt.js b/cellsysArt.js index dff8745..8ce2f40 100644 --- a/cellsysArt.js +++ b/cellsysArt.js @@ -6,6 +6,7 @@ import ArtRepairFile from './artRepairFile'; import ConditionReport from './conditionReport'; import ArtCategory from './artCategory'; import { formatterMillisecond } from './utils/date'; +import ArtSystem from './artSystem'; class CellsysArt { constructor(params = {}) { @@ -14,7 +15,7 @@ class CellsysArt { this.recordNumber = params.record_number; this.artworkName = params.artwork_name; this.author = params.author; - this.createPeriod = params.create_period || '未知'; + this.createPeriod = params.create_period; this.actualNumber = params.actual_number || 1; this.textureId = params.texture_id; //材质id this.textureName = params.texture_name; //材质名称 @@ -48,7 +49,12 @@ class CellsysArt { } this.materialIds = params.material_ids; //材料Id数组 this.geometry = params.geometry; //当前位置 - this.size = params.size || []; + this.size = []; + if (params.size && params.size.length > 0) { + this.size = params.size.map((item) => { + return new ArtSize(item); + }); + } } get oldNameFormat() { //带书名号 @@ -109,15 +115,22 @@ class CellsysArt { editTask.addParam('_oldname', params.oldName); editTask.addParam('_author', params.author); editTask.addParam('_create_period', params.createPeriod); - editTask.addParam('_length', params.length); - editTask.addParam('_width', params.width); - editTask.addParam('_height', params.height); + if (params.texture) { editTask.addParam('_texture', params.texture.dict_code); } editTask.addParam('_original_registration_number', params.originalRegistrationNumber); editTask.addParam('_remark', params.remarks); editTask.addParam('_images', params.images); + if (params.size && params.size.length > 0) { + editTask.addParam( + '_size', + params.size.map((item) => { + return item.toParams(); + }), + ); + } + return new Promise((resolve, reject) => { editTask .execute() @@ -221,15 +234,43 @@ class CellsysArt { }); return artCategory.queryDisease(); } + + //获取艺术品关联的材料数据 + queryMaterials(params = {}) { + let { filter, pageInfo } = params; + if (!filter) { + filter = []; + } + filter.push({ + name: 'equipment_id', + operator: '=', + value: this.id, + }); + return ArtSystem.queryMaterials({ filter, pageInfo }); + } } class ArtSize { constructor(params = {}) { - let { name, width, length, height } = params; + let { name, width, length, height, leftTopRightBottom, leftBottomRightTop } = params; this.name = name; this.length = length; this.width = width; this.height = height; + this.leftTopRightBottom = leftTopRightBottom; + this.leftBottomRightTop = leftBottomRightTop; + } + + //转化成接口保存所需要的格式 + toParams() { + return { + name: this.name, + length: parseFloat(Number(this.length).toFixed(2)), + width: parseFloat(Number(this.width).toFixed(2)), + height: parseFloat(Number(this.height).toFixed(2)), + leftTopRightBottom: parseFloat(Number(this.leftTopRightBottom).toFixed(2)), + leftBottomRightTop: parseFloat(Number(this.leftBottomRightTop).toFixed(2)), + }; } } export { ArtSize }; diff --git a/components/equData/eqDataForm.vue b/components/equData/eqDataForm.vue index 2e40c51..d245d64 100644 --- a/components/equData/eqDataForm.vue +++ b/components/equData/eqDataForm.vue @@ -171,6 +171,7 @@ export default { emits: ['close', 'update'], components: { GeocoderComponent, tagSelect, MaterialCard, ImagesUpload }, props: { + defaultName: String, currentEquipment: Object, //cellsysArt的Equipment对象 currentEquData: Object, mode: 'create', //create和details,目前还没有编辑模式 @@ -260,6 +261,9 @@ export default { this.getEquipmentDataDetail(id); } } + if (this.defaultName) { + this.form.name = this.defaultName; + } }, methods: { //查询设备信息 diff --git a/outbound.js b/outbound.js index 6c4799f..d705f19 100644 --- a/outbound.js +++ b/outbound.js @@ -4,7 +4,8 @@ import ArtworkEquipmentType from './equipmentType'; import ArtRepairLog from './artRepairLog'; import outBoundReview from './outBoundReview'; import OutBoundReview from './outBoundReview'; -import ArtImage from "./artImage"; +import ArtImage from './artImage'; +import { formatterMillisecond } from './utils/date'; class Outbound { constructor(params = {}) { @@ -16,9 +17,9 @@ class Outbound { this.recipient = params.recipient; //签收人 this.recipientSignatureimage = params.recipient_signature_image; //签收人签名图片 this.reason = params.reason; //出库原因 - if(params.images){ - this.images = params.images.map(url=>{ - return new ArtImage(url) + if (params.images) { + this.images = params.images.map((url) => { + return new ArtImage(url); }); } // this.images = params.images; //附件图片 @@ -83,6 +84,12 @@ class Outbound { this.reviewerId = params.reviewer_id; this.reviewerSignatureimage = params.reviewer_signature_image; } + get createTimeFormat() { + return formatterMillisecond(this.createTime, 'YYYY-MM-DD HH:mm:ss'); + } + get outboundTimeFormat() { + return formatterMillisecond(this.outboundTime, 'YYYY-MM-DD HH:mm:ss'); + } static createWarehouseOut(params = {}) { let editTask = new EditTask(artApi.wareHouseOutboundInsert); editTask.addParam('_artwork_record_id', params.artworkRecordId);