12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052 |
- <template>
- <div>
- <div style="padding: 8px; text-align: center" v-if="formData.data.code || formData.data.wlnCode">
- <span style="font-size: 18px; font-weight: 700">{{ formData.data.code }} </span>
- <span style="font-size: 18px; font-weight: 700" v-if="formData.data.wlnCode"> ({{ formData.data.wlnCode }})</span>
- </div>
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit">
- <template #type>
- <div style="width: 100%">
- <el-radio-group v-model="formData.data.type">
- <el-radio v-for="(itemType, index) in typeList" :key="index" :label="itemType.dictKey">{{ itemType.dictValue }}</el-radio>
- </el-radio-group>
- </div>
- </template>
- <template #departmentId>
- <div style="width: 100%">
- <el-select v-model="formData.data.departmentId" placeholder="请选择事业部" clearable style="width: 100%">
- <el-option v-for="item in departmentList" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey" />
- </el-select>
- </div>
- </template>
- <template #deliveryAddress>
- <div style="width: 100%">
- <el-row>
- <el-col :span="3">
- <el-form-item label-width="0" prop="province" style="width: 100%">
- <el-input v-model="formData.data.province" placeholder="请输入省" />
- </el-form-item>
- </el-col>
- <el-col :span="3">
- <el-form-item label-width="0" prop="city" style="width: 100%">
- <el-input v-model="formData.data.city" placeholder="请输入市" />
- </el-form-item>
- </el-col>
- <el-col :span="3">
- <el-form-item label-width="0" prop="county" style="width: 100%">
- <el-input v-model="formData.data.county" placeholder="请输入区/县" />
- </el-form-item>
- </el-col>
- <el-col :span="11">
- <el-form-item label-width="0" prop="detailedAddress" style="width: 100%">
- <el-input v-model="formData.data.detailedAddress" placeholder="请输入详细地址" />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label-width="0" prop="postcode" style="width: 100%">
- <el-input v-model="formData.data.postcode" placeholder="请输入邮编" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #consignee>
- <div style="width: 100%">
- <el-row>
- <el-col :span="6">
- <el-form-item label-width="0" prop="consignee" style="width: 100%">
- <el-input v-model="formData.data.consignee" placeholder="请输入联系人" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label-width="0" prop="consigneeNumber" style="width: 100%">
- <el-input v-model="formData.data.consigneeNumber" placeholder="请输入联系电话" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #orderSkuList>
- <div style="width: 100%; padding: 0 20px">
- <div style="margin-bottom: 10px" v-if="!formOption.disabled">
- <el-button type="primary" size="small" @click="clickAddProduct()">选择产品</el-button>
- </div>
- <div v-for="(item, index) in formData.data.orderSkuList" :key="index" style="margin-bottom: 20px">
- <div style="border: 1px solid #edf0f5">
- <el-table :data="[item]" :row-style="{ height: '35px' }" header-row-class-name="tableHeader" :cell-class-name="cellStyleName">
- <el-table-column label="产品" width="280">
- <template #default="{ row }">
- <div style="width: 100%">
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">商品名称: </span>
- <span>{{ item.wlnSkuName }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">品号: </span>
- <span>{{ item.code }}</span>
- </div>
- <div style="line-height: 35px; word-break: break-all">
- <span style="color: black; font-weight: 700">品名: </span>
- <span>{{ item.name }}</span>
- </div>
- <div style="line-height: 35px; display: flex">
- <span style="width: 37px; color: black; font-weight: 700">数量: </span>
- <el-form-item
- :prop="'orderSkuList.' + index + '.quantity'"
- :rules="rules.quantity"
- :inline-message="true"
- style="width: calc(100% - 37px)">
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="数量"
- style="width: 100%"
- :controls="false"
- :min="0"
- :precision="0"
- @change="changeQuantity(index)" />
- </el-form-item>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">加工费: </span>
- <span>{{ item.customProcessingFee }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">代发费: </span>
- <span>{{ item.lssueFee }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">快递包材费: </span>
- <span>{{ item.deliveryMaterialsFee }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">包装人工费: </span>
- <span>{{ item.packingLabor }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">管理费: </span>
- <span>{{ item.managementFee }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">单价: </span>
- <span>{{ item.unitPrice }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="color: black; font-weight: 700">小计: </span>
- <span>{{ getSubtotal(item) }}</span>
- </div>
- <div style="line-height: 35px">
- <span style="width: 37px; color: black; font-weight: 700">打印: </span>
- <el-form-item
- :prop="'orderSkuList.' + index + '.printType'"
- :rules="rules.printType"
- :inline-message="true"
- style="width: calc(100% - 37px)">
- <el-radio-group v-model="item.printType" @change="changeQuantity(index)">
- <el-radio v-for="(itemType, index) in printType" :key="index" :label="itemType.dictKey">{{ itemType.dictValue }}</el-radio>
- </el-radio-group>
- </el-form-item>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="产品图稿" width="320">
- <template #default="{ row }">
- <div style="display: flex; width: 100%">
- <div style="width: 80px">设计图:</div>
- <div style="width: calc(100% - 80px)">
- <el-image
- fit="scale-down"
- style="width: 148px; height: 148px; margin-right: 10px; cursor: pointer"
- v-if="row.blueprint"
- :src="row.blueprint"
- @click="openFile(row.blueprint)" />
- <div style="display: flex" v-if="!formOption.disabled">
- <el-button type="primary" @click="clickDrawingFile(index)" text>选择图稿</el-button>
- <el-upload
- :show-file-list="false"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadImgData"
- :before-upload="uploadImgFile"
- :on-success="
- (response, uploadFile) => {
- return handleImgSuccess(uploadFile, index);
- }
- "
- style="width: 100%"
- accept=".docx,.jpg,.jpeg,.png,.GIF,.JPG,.PNG">
- <el-button type="primary" style="margin-left: 12px" text>上传图片</el-button>
- </el-upload>
- </div>
- </div>
- </div>
- <div style="display: flex; margin-top: 20px; width: 100%">
- <div style="width: 80px">图稿文件:</div>
- <div style="width: calc(100% - 80px)">
- <a
- style="color: #409eff; cursor: pointer; word-break: break-all; margin-right: 10px"
- @click="openFile(row.productionDocument)"
- v-if="row.productionDocument">
- {{ row.productionDocument }}
- </a>
- <div style="display: flex" v-if="!formOption.disabled">
- <el-button type="primary" @click="clickDrawingFile(index)" text>选择图稿</el-button>
- <el-upload
- :show-file-list="false"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadData"
- :before-upload="uploadFile"
- :on-success="
- (response, uploadFile) => {
- return handleSuccess(uploadFile, index);
- }
- "
- style="width: 100%">
- <el-button type="primary" style="margin-left: 12px" text>上传文件</el-button>
- </el-upload>
- </div>
- </div>
- </div>
- <div style="font-weight: 700; margin-top: 20px">产品不干胶图稿</div>
- <div style="display: flex; width: 100%">
- <div style="width: 80px">不干胶图片:</div>
- <div style="width: calc(100% - 80px)">
- <el-image
- fit="scale-down"
- style="width: 148px; height: 148px; margin-right: 10px; cursor: pointer"
- v-if="row.selfAdhesiveStickerFile && row.selfAdhesiveStickerFile.fileUrl"
- :src="row.selfAdhesiveStickerFile.fileUrl"
- @click="openFile(row.selfAdhesiveStickerFile.fileUrl)" />
- <div style="display: flex" v-if="!formOption.disabled">
- <el-upload
- :show-file-list="false"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadAdhesiveData"
- :before-upload="uploadAdhesiveFile"
- :on-success="
- (response, uploadFile) => {
- return handleAdhesiveSuccess(uploadFile, index);
- }
- "
- style="width: 100%">
- <el-button type="primary" text>上传文件</el-button>
- </el-upload>
- </div>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="包材配件/单品" min-width="600">
- <template #default="{ row }">
- <div style="width: 100%">
- <div style="margin-bottom: 10px" v-if="!formOption.disabled">
- <el-button type="primary" size="small" @click="clickPackingFittings(index)">选择包材配件</el-button>
- </div>
- <el-table :data="row.orderSkuBomList" :row-style="{ height: '35px' }" header-row-class-name="tableHeader">
- <el-table-column label="单价¥" width="70">
- <template #default="props">
- <div>
- <span>{{ moneyFormat(props.row.unitPrice, 2) }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="数量" width="90">
- <template #default="props">
- <el-form-item
- :prop="'orderSkuList.' + index + '.orderSkuBomList.' + props.$index + '.quantity'"
- :rules="rules.quantity"
- :inline-message="true"
- style="width: 100%">
- <el-input-number
- onmousewheel="return false;"
- v-model="props.row.quantity"
- placeholder="数量"
- style="width: 100%"
- :controls="false"
- :min="0" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="名称" prop="bomSpecName" min-width="130" />
- <el-table-column label="总量" width="70">
- <template #default="props">
- {{ computeQuantity(index, props.$index) }}
- </template>
- </el-table-column>
- <el-table-column label="小计¥" width="100">
- <template #default="props">
- {{ moneyFormat(computeMoney(index, props.$index), 2) }}
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" fixed="right" width="60" v-if="!formOption.disabled">
- <template #default="props">
- <el-button type="danger" @click="clickDeletePackingFittings(index, props.$index)" text>删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="包装要求" min-width="500">
- <template #default="{}">
- <div v-if="formOption.disabled">
- <div v-html="getStyle(item.packageRemark)"></div>
- </div>
- <Editor
- v-else
- :value="item.packageRemark"
- @updateValue="
- (val) => {
- return updatePackageRemark(val, index);
- }
- "
- :ref="'editor_' + index" />
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" fixed="right" width="60" v-if="!formOption.disabled">
- <template #default="{}">
- <el-button type="danger" @click="clickDelete(index)" text>删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- </div>
- </template>
- <template #deliveryTime>
- <div style="width: 100%">
- <el-date-picker
- v-model="formData.data.deliveryTime"
- type="datetime"
- placeholder="请选择交货日期"
- value-format="YYYY-MM-DD HH:mm:ss"
- style="width: 100%" />
- </div>
- </template>
- <template #totalMonet>
- <div style="width: 100%; margin-left: 30px">
- <div>
- <span style="font-weight: 700; color: #6c88f1">产品总金额: ¥{{ moneyFormat(calculatedAmount("unitPrice"), 2) }}</span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">
- 定制加工费: ¥{{ moneyFormat(calculatedAmount("customProcessingFee"), 2) }}
- </span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">代发费: ¥{{ moneyFormat(calculatedAmount("lssueFee"), 2) }}</span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">
- 快递包材费: ¥{{ moneyFormat(calculatedAmount("deliveryMaterialsFee"), 2) }}
- </span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">包装人工费: ¥{{ moneyFormat(calculatedAmount("packingLabor"), 2) }}</span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">包材费: ¥{{ moneyFormat(calculatedPackagingMaterialCost(), 2) }}</span>
- <span style="font-weight: 700; color: #6c88f1; margin-left: 40px">管理费: ¥{{ moneyFormat(calculatedAmount("managementFee"), 2) }}</span>
- </div>
- <div style="padding: 8px 0 0 0">
- <span style="font-weight: 700; color: red">订单总金额(含税): ¥{{ moneyFormat(calculatedTotalAmount(), 2) }}</span>
- </div>
- </div>
- </template>
- <template #attachments>
- <div style="width: 100%">
- <el-upload
- v-model:fileList="fileList"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadFileData"
- multiple
- :before-upload="beforeUpload"
- :on-success="onSuccessFile"
- :on-preview="onPreviewFile">
- <el-button style="background: #20b2aa; color: #fff; border: 1px solid #20b2aa">上传</el-button>
- </el-upload>
- </div>
- </template>
- <template #remark>
- <div style="width: 100%">
- <div style="margin: 0 2vw" v-if="formOption.disabled">
- <div v-html="getStyle(formData.data.remark)"></div>
- </div>
- <Editor v-else :value="formData.data.remark" @updateValue="updateValue" ref="editor" />
- </div>
- </template>
- </byForm>
- <el-dialog title="选择产品" v-if="openProduct" v-model="openProduct" width="90%">
- <SelectProduct :selectStatus="true" :type="'null'" @selectProduct="selectProduct"></SelectProduct>
- <template #footer>
- <el-button @click="openProduct = false" size="large">关 闭</el-button>
- </template>
- </el-dialog>
- <el-dialog title="选择包材配件" v-if="openPackingFittings" v-model="openPackingFittings" width="90%">
- <SelectBOM :selectStatus="true" :bomClassifyIdList="[2, 3]" @selectBOM="selectPackingFittings"></SelectBOM>
- <template #footer>
- <el-button @click="openPackingFittings = false" size="large">关 闭</el-button>
- </template>
- </el-dialog>
- <el-dialog title="选择图稿文件" v-if="openDrawingFile" v-model="openDrawingFile" width="70%">
- <SelectPicture @selectPic="selectPic"></SelectPicture>
- <template #footer>
- <el-button @click="openDrawingFile = false" size="large">关 闭</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byForm from "/src/components/byForm/index";
- import { ElMessage } from "element-plus";
- import Editor from "/src/components/Editor/index.vue";
- import { useRoute } from "vue-router";
- import SelectProduct from "/src/views/group/product/management/index";
- import SelectBOM from "/src/views/group/BOM/management/index";
- import SelectPicture from "/src/components/select-picture/index.vue";
- const { proxy } = getCurrentInstance();
- // 接收父组件的传值
- const props = defineProps({
- queryData: Object,
- });
- const route = useRoute();
- const submit = ref(null);
- const departmentList = ref([]);
- const judgeStatus = () => {
- if (route.query.processType == 20 || route.query.processType == 10) {
- return true;
- }
- if (props.queryData.recordList && props.queryData.recordList.length > 0) {
- let data = props.queryData.recordList.filter((item) => item.status === 2 && item.nodeType !== 1);
- if (data && data.length > 0) {
- return true;
- }
- }
- return false;
- };
- const formOption = reactive({
- inline: true,
- labelWidth: "120px",
- itemWidth: 100,
- rules: [],
- labelPosition: "right",
- });
- const formData = reactive({
- data: {
- remark: "",
- type: 1,
- orderSkuList: [],
- fileList: [],
- },
- });
- const formConfig = computed(() => {
- return [
- {
- type: "title",
- title: "类型",
- label: "",
- },
- {
- type: "slot",
- prop: "type",
- slotName: "type",
- label: "订单类型",
- },
- {
- type: "slot",
- prop: "departmentId",
- slotName: "departmentId",
- label: "事业部",
- itemWidth: 25,
- },
- {
- type: "title",
- title: "产品",
- label: "",
- },
- {
- type: "slot",
- prop: "orderSkuList",
- slotName: "orderSkuList",
- },
- formOption.disabled
- ? {}
- : {
- type: "title",
- title: "地址",
- label: "",
- },
- formOption.disabled
- ? {}
- : {
- type: "slot",
- slotName: "deliveryAddress",
- label: "收货地址",
- },
- formOption.disabled
- ? {}
- : {
- type: "slot",
- slotName: "consignee",
- label: "收货人",
- },
- {
- type: "title",
- title: "贸易",
- label: "",
- },
- {
- type: "slot",
- prop: "deliveryTime",
- slotName: "deliveryTime",
- label: "交货时间",
- itemWidth: 25,
- },
- {
- type: "select",
- label: "选择快递",
- prop: "expressDeliveryId",
- data: [],
- itemWidth: 25,
- clearable: true,
- },
- {
- type: "select",
- label: "店铺来源",
- prop: "sourcePlatform",
- data: proxy.useUserStore().allDict["source_platform"],
- itemWidth: 25,
- clearable: true,
- },
- {
- type: "select",
- label: "店铺名称",
- prop: "shopName",
- data: proxy.useUserStore().allDict["shop_name"],
- itemWidth: 25,
- clearable: true,
- },
- {
- type: "title",
- title: "总计",
- label: "",
- },
- {
- type: "slot",
- prop: "totalMonet",
- slotName: "totalMonet",
- },
- {
- type: "title",
- title: "附件",
- label: "",
- },
- {
- type: "slot",
- slotName: "attachments",
- label: "附件",
- },
- {
- type: "title",
- title: "订单备注",
- label: "",
- },
- {
- type: "slot",
- slotName: "remark",
- },
- ];
- });
- const rules = ref({
- province: [{ required: true, message: "请输入省", trigger: "blur" }],
- detailedAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- consignee: [{ required: true, message: "请输入联系人", trigger: "blur" }],
- consigneeNumber: [{ required: true, message: "请输入联系电话", trigger: "blur" }],
- deliveryTime: [{ required: true, message: "请选择交货时间", trigger: "change" }],
- // expressDeliveryId: [{ required: true, message: "请选择快递", trigger: "change" }],
- sourcePlatform: [{ required: true, message: "请选择店铺来源", trigger: "change" }],
- shopName: [{ required: true, message: "请选择店铺", trigger: "change" }],
- quantity: [{ required: true, message: "请输入数量", trigger: "blur" }],
- type: [{ required: true, message: "请选择订单类型", trigger: "change" }],
- departmentId: [{ required: true, message: "请选择事业部", trigger: "change" }],
- });
- const getDemandData = () => {
- proxy.post("/department/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- departmentList.value = res.rows.map((item) => {
- return {
- dictKey: item.id,
- dictValue: item.name,
- };
- });
- }
- });
- };
- getDemandData();
- const drawingFileIndex = ref(0);
- const openDrawingFile = ref(false);
- const clickDrawingFile = (index) => {
- drawingFileIndex.value = index;
- openDrawingFile.value = true;
- };
- const selectPic = (row) => {
- formData.data.orderSkuList[drawingFileIndex.value].blueprint = row.imgUrl;
- formData.data.orderSkuList[drawingFileIndex.value].productionDocument = row.fileUrl;
- ElMessage({ message: "选择完成", type: "success" });
- openDrawingFile.value = false;
- };
- const openFile = (path) => {
- window.open(path);
- };
- const updatePackageRemark = (val, index) => {
- formData.data.orderSkuList[index].packageRemark = val;
- };
- const clickDelete = (index) => {
- formData.data.orderSkuList.splice(index, 1);
- };
- const updateValue = (val) => {
- formData.data.remark = val;
- };
- const getStyle = (text) => {
- if (text) {
- return text.replace(/\n|\r\n/g, "<br>");
- } else {
- return "";
- }
- };
- const openProduct = ref(false);
- const clickAddProduct = () => {
- openProduct.value = true;
- };
- const printType = ref([
- {
- dictKey: 1,
- dictValue: "单面",
- },
- {
- dictKey: 2,
- dictValue: "双面",
- },
- ]);
- const typeList = ref([
- {
- dictKey: 1,
- dictValue: "自主订单",
- },
- {
- dictKey: 2,
- dictValue: "委外订单",
- },
- ]);
- const skuDetail = ref({});
- const selectProduct = (row, SKU) => {
- if (row.id) {
- let list = formData.data.orderSkuList.filter((item) => item.skuSpecId === row.id && item.bomSpecId === row.bomSpecId);
- if (list && list.length > 0) {
- return ElMessage("该产品已添加");
- }
- if (skuDetail.value && skuDetail.value.id === SKU.id) {
- pushProduct(skuDetail.value, SKU, row);
- } else {
- proxy.post("/sku/detail", { id: SKU.id }).then((res) => {
- skuDetail.value = res;
- pushProduct(res, SKU, row);
- });
- }
- } else {
- ElMessage("添加失败");
- }
- };
- const pushProduct = (res, SKU, row) => {
- let data = proxy.deepClone(res);
- let orderSkuBomList = [];
- if (data.skuSpecList && data.skuSpecList.length > 0) {
- let listTwo = data.skuSpecList.filter((item) => item.id === row.id);
- if (listTwo && listTwo.length > 0) {
- if (listTwo[0].packagingMaterialList && listTwo[0].packagingMaterialList.length > 0) {
- orderSkuBomList = listTwo[0].packagingMaterialList.map((item) => {
- return {
- bomSpecId: item.bomSpecId,
- unitPrice: item.internalSellingPrice,
- quantity: item.quantity,
- bomSpecName: item.name,
- };
- });
- }
- }
- }
- formData.data.orderSkuList.push({
- wlnSkuName: SKU.name,
- skuId: row.skuId,
- code: row.code,
- name: row.name,
- skuSpecId: row.id,
- bomSpecId: row.bomSpecId,
- quantity: undefined,
- customProcessingFee: "",
- customProcessingType: "",
- lssueFee: "",
- deliveryMaterialsFee: "",
- packingLabor: "",
- managementFee: "",
- unitPrice: "",
- printType: 1,
- packageRemark: "",
- orderSkuBomList: orderSkuBomList,
- blueprint: row.designImgUrl,
- productionDocument: row.sharedFolder,
- });
- ElMessage({ message: "添加成功", type: "success" });
- };
- const rowIndex = ref(null);
- const openPackingFittings = ref(false);
- const clickPackingFittings = (index) => {
- rowIndex.value = index;
- openPackingFittings.value = true;
- };
- const clickDeletePackingFittings = (index, indexTwo) => {
- formData.data.orderSkuList[index].orderSkuBomList.splice(indexTwo, 1);
- };
- const selectPackingFittings = (data) => {
- if (formData.data.orderSkuList[rowIndex.value].orderSkuBomList && formData.data.orderSkuList[rowIndex.value].orderSkuBomList.length > 0) {
- let list = formData.data.orderSkuList[rowIndex.value].orderSkuBomList.filter((item) => item.bomSpecId === data.id);
- if (list && list.length > 0) {
- return ElMessage("包材配件已添加");
- }
- formData.data.orderSkuList[rowIndex.value].orderSkuBomList.push({
- bomSpecId: data.id,
- unitPrice: data.internalSellingPrice,
- quantity: undefined,
- bomSpecName: data.name,
- });
- } else {
- formData.data.orderSkuList[rowIndex.value].orderSkuBomList = [
- {
- bomSpecId: data.id,
- unitPrice: data.internalSellingPrice,
- quantity: undefined,
- bomSpecName: data.name,
- },
- ];
- }
- ElMessage({ message: "添加成功", type: "success" });
- };
- const changeQuantity = (index) => {
- if (formData.data.orderSkuList[index].quantity) {
- proxy
- .post("/orderInfo/getSkuSpecPrice", {
- skuSpecId: formData.data.orderSkuList[index].skuSpecId,
- quantity: formData.data.orderSkuList[index].quantity,
- random: proxy.random(),
- })
- .then((res) => {
- if (formData.data.orderSkuList[index].printType == 2 && res.customProcessingFee) {
- formData.data.orderSkuList[index].customProcessingFee = Number(Math.round(res.customProcessingFee * 2 * 100) / 100);
- } else {
- formData.data.orderSkuList[index].customProcessingFee = res.customProcessingFee;
- }
- formData.data.orderSkuList[index].customProcessingType = res.customProcessingType;
- formData.data.orderSkuList[index].deliveryMaterialsFee = res.deliveryMaterialsFee;
- formData.data.orderSkuList[index].lssueFee = res.lssueFee;
- formData.data.orderSkuList[index].packingLabor = res.packingLabor;
- formData.data.orderSkuList[index].managementFee = res.managementFee;
- formData.data.orderSkuList[index].unitPrice = res.unitPrice;
- });
- }
- };
- const cellStyleName = ({ column, columnIndex }) => {
- if (column.label === "操作" && columnIndex === 4) {
- return "vertical-align";
- }
- };
- const uploadData = ref({});
- const uploadFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- return true;
- };
- const handleSuccess = (UploadFile, index) => {
- formData.data.orderSkuList[index].productionDocument = UploadFile.raw.fileUrl;
- };
- const uploadImgData = ref({});
- const uploadImgFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadImgData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- return true;
- };
- const handleImgSuccess = (UploadFile, index) => {
- formData.data.orderSkuList[index].blueprint = UploadFile.raw.fileUrl;
- };
- const computeQuantity = (index, indexSKU) => {
- let quantity = 0;
- if (formData.data.orderSkuList[index].quantity && formData.data.orderSkuList[index].orderSkuBomList[indexSKU].quantity) {
- quantity = Number(
- Math.round(formData.data.orderSkuList[index].orderSkuBomList[indexSKU].quantity * formData.data.orderSkuList[index].quantity * 100) / 100
- );
- }
- return quantity;
- };
- const computeMoney = (index, indexSKU) => {
- let money = 0;
- if (
- formData.data.orderSkuList[index].quantity &&
- formData.data.orderSkuList[index].orderSkuBomList[indexSKU].quantity &&
- formData.data.orderSkuList[index].orderSkuBomList[indexSKU].unitPrice
- ) {
- money = Number(
- Math.round(
- formData.data.orderSkuList[index].orderSkuBomList[indexSKU].quantity *
- formData.data.orderSkuList[index].orderSkuBomList[indexSKU].unitPrice *
- formData.data.orderSkuList[index].quantity *
- 100
- ) / 100
- );
- }
- return money;
- };
- const getSubtotal = (item) => {
- let money = 0;
- if (item.quantity) {
- money = Number(
- Math.round(
- (item.customProcessingFee + item.deliveryMaterialsFee + item.lssueFee + item.packingLabor + item.managementFee + item.unitPrice) * item.quantity * 100
- ) / 100
- );
- }
- return money;
- };
- const calculatedAmount = (label) => {
- let money = 0;
- if (formData.data.orderSkuList && formData.data.orderSkuList.length > 0) {
- for (let i = 0; i < formData.data.orderSkuList.length; i++) {
- if (formData.data.orderSkuList[i].quantity && formData.data.orderSkuList[i][label]) {
- money = Number(Math.round((money + formData.data.orderSkuList[i][label] * formData.data.orderSkuList[i].quantity) * 100) / 100);
- }
- }
- }
- return money;
- };
- const calculatedPackagingMaterialCost = () => {
- let money = 0;
- if (formData.data.orderSkuList && formData.data.orderSkuList.length > 0) {
- for (let i = 0; i < formData.data.orderSkuList.length; i++) {
- if (formData.data.orderSkuList[i].orderSkuBomList && formData.data.orderSkuList[i].orderSkuBomList.length > 0) {
- for (let j = 0; j < formData.data.orderSkuList[i].orderSkuBomList.length; j++) {
- if (formData.data.orderSkuList[i].orderSkuBomList[j].quantity && formData.data.orderSkuList[i].orderSkuBomList[j].unitPrice) {
- money = Number(
- Math.round(
- (money +
- formData.data.orderSkuList[i].orderSkuBomList[j].quantity *
- formData.data.orderSkuList[i].orderSkuBomList[j].unitPrice *
- formData.data.orderSkuList[i].quantity) *
- 100
- ) / 100
- );
- }
- }
- }
- }
- }
- return money;
- };
- const calculatedTotalAmount = () => {
- let money = 0;
- money = Number(
- Math.round(
- (calculatedAmount("unitPrice") +
- calculatedAmount("customProcessingFee") +
- calculatedAmount("lssueFee") +
- calculatedAmount("deliveryMaterialsFee") +
- calculatedAmount("packingLabor") +
- calculatedAmount("managementFee") +
- calculatedPackagingMaterialCost()) *
- 100
- ) / 100
- );
- return money;
- };
- const fileList = ref([]);
- const uploadFileData = ref({});
- const beforeUpload = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadFileData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- file.uploadState = true;
- return true;
- };
- const onSuccessFile = (any, UploadFile) => {
- UploadFile.raw.uploadState = false;
- };
- const onPreviewFile = (file) => {
- window.open(file.raw.fileUrl, "_blank");
- };
- const uploadAdhesiveData = ref({});
- const uploadAdhesiveFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadAdhesiveData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- return true;
- };
- const handleAdhesiveSuccess = (UploadFile, index) => {
- formData.data.orderSkuList[index].selfAdhesiveStickerFile = {
- id: UploadFile.raw.id,
- fileName: UploadFile.raw.fileName,
- fileUrl: UploadFile.raw.fileUrl,
- };
- };
- const getFormData = () => {
- return proxy.deepClone(formData.data);
- };
- const handleSubmit = async (flag) => {
- if (flag) {
- return true;
- } else {
- let status = await proxy.$refs.submit.handleSubmit(() => {});
- if (status) {
- if (formData.data.orderSkuList && formData.data.orderSkuList.length > 0) {
- for (let i = 0; i < formData.data.orderSkuList.length; i++) {
- if (!formData.data.orderSkuList[i].blueprint) {
- ElMessage("请选择设计图");
- return false;
- }
- if (!formData.data.orderSkuList[i].productionDocument) {
- ElMessage("请选择生产文件");
- return false;
- }
- let packagingMaterialCost = 0;
- if (formData.data.orderSkuList[i].quantity) {
- if (formData.data.orderSkuList[i].orderSkuBomList && formData.data.orderSkuList[i].orderSkuBomList.length > 0) {
- for (let j = 0; j < formData.data.orderSkuList[i].orderSkuBomList.length; j++) {
- if (formData.data.orderSkuList[i].orderSkuBomList[j].quantity && formData.data.orderSkuList[i].orderSkuBomList[j].unitPrice) {
- packagingMaterialCost = Number(
- Math.round(
- (packagingMaterialCost +
- formData.data.orderSkuList[i].orderSkuBomList[j].quantity * formData.data.orderSkuList[i].orderSkuBomList[j].unitPrice) *
- 100
- ) / 100
- );
- }
- }
- }
- }
- formData.data.orderSkuList[i].packagingMaterialCost = packagingMaterialCost;
- }
- formData.data.productTotalAmount = calculatedAmount("unitPrice");
- formData.data.customProcessingFee = calculatedAmount("customProcessingFee");
- formData.data.lssueFee = calculatedAmount("lssueFee");
- formData.data.deliveryMaterialsFee = calculatedAmount("deliveryMaterialsFee");
- formData.data.packingLabor = calculatedAmount("packingLabor");
- formData.data.managementFee = calculatedAmount("managementFee");
- formData.data.packagingMaterialCost = calculatedPackagingMaterialCost();
- formData.data.totalAmount = calculatedTotalAmount();
- if (fileList.value && fileList.value.length > 0) {
- for (let i = 0; i < fileList.value.length; i++) {
- if (fileList.value[i].raw.uploadState) {
- ElMessage("文件上传中,请稍后提交");
- return false;
- }
- }
- formData.data.fileList = fileList.value.map((item) => {
- return {
- id: item.raw.id,
- fileName: item.raw.fileName,
- fileUrl: item.raw.fileUrl,
- };
- });
- } else {
- formData.data.fileList = [];
- }
- } else {
- return ElMessage("请添加产品");
- }
- return true;
- } else {
- setTimeout(() => {
- const errorDiv = document.getElementsByClassName("is-error");
- errorDiv[0].scrollIntoView();
- }, 0);
- }
- return false;
- }
- };
- watch(
- () => props.queryData,
- (newValue) => {
- formOption.disabled = judgeStatus();
- if (props.queryData && ["10", "20", "30", "40"].includes(route.query.processType)) {
- formData.data = proxy.deepClone(newValue);
- if (route.query.id) {
- proxy.$refs.editor.changeHtml(formData.data.remark);
- }
- let list = [formData.data.id];
- if (formData.data.orderSkuList && formData.data.orderSkuList.length > 0) {
- list = list.concat(formData.data.orderSkuList.map((item) => item.id));
- proxy.post("/fileInfo/getList", { businessIdList: list }).then((fileObj) => {
- if (fileObj[formData.data.id] && fileObj[formData.data.id].length > 0) {
- let file = fileObj[formData.data.id].filter((item) => item.businessType == "0");
- if (file && file.length > 0) {
- fileList.value = file.map((item) => {
- return {
- raw: item,
- name: item.fileName,
- url: item.fileUrl,
- };
- });
- } else {
- fileList.value = [];
- }
- let outerBoxSelfAdhesiveStickerFile = fileObj[formData.data.id].filter((item) => item.businessType == "1");
- if (outerBoxSelfAdhesiveStickerFile && outerBoxSelfAdhesiveStickerFile.length > 0) {
- formData.data.outerBoxSelfAdhesiveStickerFile = outerBoxSelfAdhesiveStickerFile[0];
- } else {
- formData.data.outerBoxSelfAdhesiveStickerFile = {};
- }
- }
- for (let i = 0; i < formData.data.orderSkuList.length; i++) {
- if (fileObj[formData.data.orderSkuList[i].id] && fileObj[formData.data.orderSkuList[i].id].length > 0) {
- formData.data.orderSkuList[i].selfAdhesiveStickerFile = {
- id: fileObj[formData.data.orderSkuList[i].id][0].id,
- fileName: fileObj[formData.data.orderSkuList[i].id][0].fileName,
- fileUrl: fileObj[formData.data.orderSkuList[i].id][0].fileUrl,
- };
- }
- }
- });
- }
- }
- },
- {
- deep: true,
- }
- );
- const saveShippingPackage = (data) => {
- formData.data.orderPackageBomList = data.orderPackageBomList;
- formData.data.outerBoxSelfAdhesiveStickerFile = data.outerBoxSelfAdhesiveStickerFile;
- };
- // 向父组件暴露
- defineExpose({ getFormData, handleSubmit, saveShippingPackage });
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- :deep(.el-dialog) {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- :deep(.ql-editor) {
- height: auto;
- }
- :deep(.el-table__cell) {
- vertical-align: top;
- }
- :deep(.vertical-align) {
- vertical-align: middle;
- }
- </style>
|