| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965 |
- <template>
- <ele-modal
- custom-class="ele-dialog-form long-dialog-form"
- :centered="true"
- v-if="visible"
- :visible.sync="visible"
- :title="title"
- :close-on-click-modal="false"
- :append-to-body="true"
- width="70%"
- @close="cancel"
- :maxable="true"
- :resizable="true"
- >
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- class="el-form-box"
- label-width="120px"
- >
- <headerTitle title="发货确认单信息"></headerTitle>
- <el-row :gutter="12">
- <el-col :span="12">
- <el-form-item label="发货单" prop="sendNo">
- <el-input
- clearable
- v-model="form.sendNo"
- @click.native="handleSendOrderBtn"
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item prop="repliedFiles" label="回执附件">
- <fileMain v-model="form.repliedFiles"></fileMain>
- </el-form-item>
- </el-col>
- </el-row>
- <headerTitle title="发货信息"></headerTitle>
- <el-row :gutter="12">
- <el-col :span="12">
- <el-form-item label="销售订单" prop="orderNo">
- <el-input
- clearable
- v-model="form.orderNo"
- disabled
- @click.native="handleOrderBtn"
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="受托收货单">
- <el-input
- clearable
- disabled
- v-model="form.entrustedCode"
- @click.native="handleEntrustedReceive"
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="12">
- <el-col :span="12">
- <el-form-item label="客户名称" prop="contactName">
- <el-input v-model="form.contactName" disabled></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="客户联系人" prop="linkName">
- <el-input
- clearable
- v-model="form.linkName"
- disabled
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="12">
- <el-col :span="12">
- <el-form-item label="客户电话" prop="linkPhone">
- <el-input
- clearable
- v-model="form.linkPhone"
- disabled
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="收货地址" prop="receiveAddress">
- <el-input
- disabled
- clearable
- v-model="form.receiveAddress"
- placeholder="请输入"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="项目名称" prop="projectName">
- <el-input clearable v-model="form.projectName" :disabled="true" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item prop="sendFiles" label="发货附件">
- <fileMain v-model="form.sendFiles" type="view"></fileMain>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <el-tabs v-model="activeName" style="margin-top: 15px" type="border-card">
- <el-tab-pane label="收货产品明细" name="first">
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="columns"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- :datasource="form.productList"
- row-key="id"
- >
- <template v-slot:isException="scope">
- <el-select v-model="scope.row.isException" placeholder="请选择">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </template>
- <template v-slot:notaxSinglePrice="scope">
-
- <el-input
- v-model="scope.row.notaxSinglePrice"
- placeholder="请输入"
- type="number"
- >
- <template slot="append">元</template>
- </el-input>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane label="托盘清单" name="second">
- <!-- <palletTable ref="palletTableRef" type="view"></palletTable> -->
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="trayListColumns"
- :toolkit="[]"
- :datasource="trayListData"
- row-key="id"
- >
- <template v-slot:type="scope">
- <el-select v-model="scope.row.type" placeholder="请选择">
- <el-option
- v-for="item in options1"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane label="装载车叉车信息" name="third">
- <stowageTable ref="stowageTableRef" dialogType="view"></stowageTable>
- </el-tab-pane>
- <el-tab-pane label="运输清单" name="fourth">
- <taskInfoTable ref="taskInfoTableRef" dialogType="view"></taskInfoTable>
- </el-tab-pane>
- </el-tabs>
- <div slot="footer" class="footer">
- <el-button type="primary" @click="save" v-click-once>保存</el-button>
- <el-button
- type="primary"
- v-if="isNeed_process_is_close"
- @click="save('sub')"
- v-click-once
- >提交</el-button
- >
- <el-button @click="cancel">返回</el-button>
- </div>
- <sendListDialog
- ref="orderListDialogRef"
- @changeParent="changeOrder"
- :contactData="contactData"
- ></sendListDialog>
- <!--出库详情-->
- <outbound-details-dialog
- v-if="outboundDetailsDialogFlag"
- ref="outboundDetailsDialogRef"
- :outboundDetailsDialogFlag.sync="outboundDetailsDialogFlag"
- @saveDate="saveDate"
- ></outbound-details-dialog>
- <process-submit-dialog
- :isNotNeedProcess="false"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- </ele-modal>
- </template>
- <script>
- import { acceptUnpackoptions } from '@/enum/dict';
- import fileUpload from '@/components/upload/fileUpload';
- import dictMixins from '@/mixins/dictMixins';
- import outboundDetailsDialog from '@/views/saleManage/saleOrder/returnGoods/components/outboundDetailsDialog.vue';
- import taskInfoTable from '../../invoice/components/taskInfoTable.vue';
- import {
- getSendSaleOrderrecordDetailSplit
- } from '@/api/saleManage/saleordersendrecord';
- import inventoryTable from '../../invoice/components/inventoryTable.vue';
- import stowageTable from '../../invoice/components/stowageTable.vue';
- import sendListDialog from './sendListDialog.vue';
- import { copyObj } from '@/utils/util';
- // import fileMain from '@/components/addDoc/index.vue';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- import getDynamicsColumns from '@/mixins/getDynamicsColumns';
- import {
- addSendConfirmInformation,
- getSendSaleOrderConfirmDetail,
- UpdateSendConfirmInformation
- } from '@/api/saleManage/invoiceConfirm';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import { levelList } from '@/enum/dict.js';
- export default {
- mixins: [dictMixins, getDynamicsColumns,tabMixins],
- components: {
- processSubmitDialog,
- // fileMain,
- // PalletTable,
- sendListDialog,
- taskInfoTable,
- fileUpload,
- inventoryTable,
- stowageTable,
- outboundDetailsDialog
- },
- //客户管理数据
- props: {
- contactData: {
- type: Object,
- default: () => {
- return {};
- }
- },
- saleOrderData: {
- type: Object,
- default: () => {
- return {};
- }
- }
- },
- data() {
- let formDef = {
- id: '',
- sendNo: '',
- sendId: '',
- contactId: '',
- contactName: '',
- entrustedCode: '',
- entrustedId: '',
- pricingWay: 1,
- sendFiles: [],
- repliedFiles: [],
- productList: [],
- projectName: '',
- projectId: '',
- receiveAddress: '',
- deviceName: '',
- deviceId: '',
- carNo: '',
- linkName: '',
- linkPhone: '',
- orderNo: '',
- orderId: '',
- replied: 0
- };
- return {
- fullscreen: false,
- outboundDetailsDialogFlag: false,
- payWayOptions: [],
- delDetailIds: [],
- linkNameOptions: [],
- productList: [],
- trayList: [],
- trayListData: [],
- cacheKeyUrl:'eos-saleManage-invoiceConfirm-inventoryTable',
- acceptUnpackoptions,
- visible: false,
- entrustedReceiveDialogFlag: false,
- processSubmitDialogFlag: false,
- title: '',
- row: {},
- activeName: 'first',
- formDef,
- options: [
- { value: 0, label: '已发货' },
- { value: 1, label: '未发货' }
- ],
- options1: [
- { value: 0, label: '未回收' },
- { value: 1, label: '已回收' }
- ],
- columns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- minWidth: 160,
- prop: 'productCode',
- label: '编码',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'productName',
- label: '名称',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'batchNo',
- label: '批次号',
- showOverflowTooltip: true,
- slot: 'batchNo',
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'barcodes',
- label: '发货条码',
- showOverflowTooltip: true,
- slot: 'barcodes',
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'materielDesignation',
- label: '物料代号',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'clientCode',
- label: '客户代号',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'engrave',
- label: '刻码',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'packageNo',
- align: 'center',
- label: '包装编码',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'packingQuantity',
- align: 'center',
- label: '包装数量',
- showOverflowTooltip: true
- },
- {
- minWidth: 120,
- prop: 'packingUnit',
- align: 'center',
- label: '包装单位',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'totalCount',
- label: '计量数量',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 150,
- prop: 'measuringUnit',
- label: '计量单位',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- width: 160,
- prop: 'pricingWay',
- label: '计价方式',
- slot: 'pricingWay',
- align: 'center',
- formatter: (row, column) => {
- return row.pricingWay == 1
- ? '按数量计费'
- : row.pricingWay == 2
- ? '按重量计费'
- : '';
- }
- },
- {
- width: 160,
- prop: 'goodsPriceType',
- label: '价格类型',
- formatter: (row, column) => {
- return this.getDictValue('商品价格类型', row.goodsPriceType);
- },
- align: 'center'
- },
- {
- width: 100,
- prop: 'singlePrice',
- label: '单价',
- slot: 'singlePrice',
- align: 'center'
- },
- {
- width: 150,
- prop: 'notaxSinglePrice',
- label: '不含税单价',
- align: 'center'
- },
- {
- width: 140,
- prop: 'taxRate',
- label: '税率',
- formatter: (row, column) => {
- return row.taxRate?row.taxRate+'%':''
- },
- align: 'center'
- },
- {
- width: 100,
- prop: 'totalPrice',
- label: '合计',
- align: 'center'
- },
- {
- minWidth: 80,
- prop: 'sendTotalWeight',
- label: '重量',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 100,
- prop: 'weightUnit',
- label: '重量单位',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- prop: 'provenance',
- label: '产地',
- slot: 'provenance',
- align: 'center',
- // show:this.contractBookType==2,
- minWidth: 200,
- showOverflowTooltip: true,
- formatter: (row, column) => {
- return row.provenance && row.provenance.length
- ? row.provenance
- .map((item) => this.getDictValue('产地', item))
- .join(',')
- : '';
- }
- },
- {
- minWidth: 120,
- prop: 'goodsLevel',
- label: '物品级别',
- formatter: (_row, _column, cellValue) => {
- return levelList.find(item=>item.value==_row.goodsLevel)?.label
- },
- align: 'center'
- },
- {
- width: 220,
- prop: 'remark',
- label: '备注',
- slot: 'remark',
- align: 'center'
- },
- {
- width: 120,
- slot: 'isException',
- prop: 'isException',
- label: '发货状态',
- align: 'center',
- fixed: 'right'
- }
- ],
- trayListColumns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- minWidth: 160,
- prop: 'productCode',
- label: '编码',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'productName',
- label: '名称',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'batchNo',
- label: '批次号',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'barcodes',
- label: '发货条码',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'materielDesignation',
- label: '物料代号',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'clientCode',
- label: '客户代号',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 120,
- prop: 'engrave',
- label: '刻码',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 160,
- prop: 'packageNo',
- align: 'center',
- label: '包装编码',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'packingQuantity',
- align: 'center',
- label: '包装数量',
- showOverflowTooltip: true
- },
- {
- minWidth: 120,
- prop: 'packingUnit',
- align: 'center',
- label: '包装单位',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'totalCount',
- label: '计量数量',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- minWidth: 150,
- prop: 'measuringUnit',
- label: '计量单位',
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- width: 120,
- slot: 'type',
- prop: 'type',
- label: '回收状态',
- align: 'center',
- fixed: 'right'
- }
- ],
- form: copyObj(formDef),
- tableBankData: [],
- tableLinkData: [],
- oldId: '',
- oldDocNo: '',
- // 组织机构树形结构数据
- groupTreeData: [],
- groupData: [],
- rules: {
- sendNo: [
- { required: true, message: '请选择发货单', trigger: 'change' }
- ],
- repliedFiles: [
- { required: true, message: '请上传回执附件', trigger: 'change' }
- ]
- },
- // 提交状态
- loading: false,
- // 是否是修改
- isUpdate: false,
- businessId: ''
- };
- },
- created() {
- this.requestDict('产地');
- this.requestDict('商品价格类型');
- },
- computed: {},
- methods: {
- //选择发货单回调
- changeOrder(obj) {
- this.form = Object.assign({}, this.form, {
- sendId: obj.id,
- sendNo: obj.docNo
- });
- this.getSaleOrderDetail(obj.id);
- },
- //发货单详情
- async getSaleOrderDetail(id) {
- this.loading = true;
- const data = await getSendSaleOrderrecordDetailSplit(id);
- this.loading = false;
- if (data) {
- this.form = data;
- this.form.sendId = data.id;
- this.form.sendNo = data.docNo;
- this.form.docNo = this.oldDocNo;
- this.form.id = this.oldId;
- this.form.reviewStatus = 0;
- this.form.processInstanceId = '';
- this.$refs.taskInfoTableRef &&
- this.$refs.taskInfoTableRef.putTableValue(
- data.logisticTrakListNoteVOList
- );
- this.$refs.stowageTableRef &&
- this.$refs.stowageTableRef.putTableValue(data.carList);
- this.trayList = data.trayList;
- this.productList = data.productList;
- this.form.productList = [];
- this.handleSelectGoods();
- }
- },
- //选择退货明细
- handleSelectGoods(list) {
- this.outboundDetailsDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.outboundDetailsDialogRef.init(
- { ...this.form, type: 10 },
- list
- );
- });
- },
- saveDate(data) {
- data.forEach((item) => {
- item['totalCount'] = item.measureQuantity;
- // item['qmsResult'] = item.result;
- // item['qmsStatus'] = item.status;
- item['sendProductId'] = item.categoryId;
- item['sendTotalWeight'] = item.weight;
- this.productList.forEach((val) => {
- if (item.productCode == val.productCode) {
- item['singlePrice'] = val.singlePrice;
- item['notaxSinglePrice'] = val.notaxSinglePrice;
- item['taxRate'] = val.taxRate;
- item['goodsLevel'] = val.goodsLevel;
- item['goodsId'] = val.goodsId;
- item['goodsPriceId'] = val.goodsPriceId;
- item['goodsPriceType'] = val.goodsPriceType;
- item['clientCode'] = item.clientCode || val.customerMark;
- item['pricingWay'] = val.pricingWay || 1;
- if (item.pricingWay == 1) {
- item.totalPrice = item.singlePrice * item.measureQuantity;
- }
- if (item.pricingWay == 2) {
- item.totalPrice =
- item.singlePrice *
- item.measureQuantity *
- item.sendTotalWeight;
- }
- }
- });
- });
- let trayListCodes = this.trayList.map((item) => item.productCode);
- this.form.productList = data.filter(
- (item) => !trayListCodes.includes(item.productCode)
- );
- this.form.productList.forEach((item, index) => {
- this.$set(this.form.productList[index], 'isException', 0);
- });
- this.trayListData = data.filter((item) => {
- if (trayListCodes.includes(item.productCode)) {
- item['orderProductType'] = 1;
- return item;
- }
- });
- this.trayListData.forEach((item, index) => {
- this.$set(this.trayListData[index], 'type', 0);
- });
- },
- // //发货单确认详情
- async getSendSaleOrderDetail(id) {
- this.businessId = id;
- this.loading = true;
- const data = await getSendSaleOrderConfirmDetail(id);
- this.oldId = data.id;
- this.oldDocNo = data.docNo;
- this.loading = false;
- if (data) {
- this.form = data;
- this.trayListData = data.trayList;
- this.$nextTick(() => {
- this.$refs.inventoryTableref &&
- this.$refs.inventoryTableref.putTableValue(data.productList);
- this.$refs.stowageTableRef &&
- this.$refs.stowageTableRef.putTableValue(data.carList);
- this.$refs.taskInfoTableRef &&
- this.$refs.taskInfoTableRef.putTableValue(
- data.logisticTrakListNoteVOList
- );
- });
- }
- },
- //选择订单弹框
- handleSendOrderBtn(e) {
- if (e.target.nodeName == 'I') {
- this.form = Object.assign({}, this.form, {
- sendId: '',
- sendNo: '',
- contactId: '',
- contactName: '',
- carNo: '',
- deviceName: '',
- deviceId: '',
- linkName: '',
- linkPhone: '',
- orderNo: '',
- orderId: '',
- orderIds: '',
- pricingWay: '',
- receiveAddress: '',
- entrustedCode: '',
- entrustedId: '',
- productList: [],
- sendFiles: [],
- repliedFiles: []
- });
- this.$refs.stowageTableRef &&
- this.$refs.stowageTableRef.putTableValue([]);
- this.$refs.taskInfoTableRef &&
- this.$refs.taskInfoTableRef.putTableValue([]);
- this.trayListData = [];
- this.trayList = [];
- return;
- }
- let item = {
- id: this.form.sendId
- };
- this.$refs.orderListDialogRef.open(item);
- },
- //打开新增编辑弹框
- async open(type, row, invoiceData) {
- this.title = type === 'add' ? '新增发货确认单' : '修改';
- this.row = row;
- this.visible = true;
- if (row && row?.id) {
- await this.getSendSaleOrderDetail(row?.id);
- }
- if (invoiceData) {
- this.changeOrder(invoiceData);
- }
- this.isUpdate = type != 'add';
- },
- totalCountChange(row) {
- if (row.totalCount > row.sendTotalCount) {
- row.totalCount = row.sendTotalCount;
- }
- if (row.totalCount < 0) {
- row.totalCount = 0;
- }
- },
- getValidate() {
- return Promise.all([
- new Promise((resolve, reject) => {
- this.$refs.form.validate((valid) => {
- if (!valid) {
- reject(false);
- } else {
- resolve(true);
- }
- });
- })
- ]).catch((e) => {
- this.$message.warning('有必填项未填写,请检查');
- return Promise.reject(e);
- });
- },
- // 添加
- handlAdd() {
- if (!this.form.sendNo) return this.$message.error('请先选择来源单据');
- this.handleSelectGoods();
- },
- async save(type) {
- try {
- await this.getValidate();
- // 表单验证通过,执行保存操作
- this.loading = true;
- if (!this.isUpdate) {
- delete this.form.id;
- }
- this.form.repliedFiles = this.form.repliedFiles || [];
- this.form.replied = this.form.repliedFiles.length > 0 ? 1 : 0;
- let commitData = Object.assign({}, this.form, {
- trayList: this.trayListData,
- carList: this.$refs.stowageTableRef.getTableValue(),
- trakNoteList: this.$refs.taskInfoTableRef.getTableValue()
- });
- const API = this.isUpdate
- ? UpdateSendConfirmInformation
- : addSendConfirmInformation;
- API(commitData)
- .then((res) => {
- this.loading = false;
- this.$message.success('修改成功');
- if (type === 'sub') {
- this.sendSubmit(res);
- return;
- }
- this.cancel();
- this.$emit('done');
- })
- .catch((e) => {
- //this.loading = false;
- });
- } catch (error) {
- console.log(error);
- // 表单验证未通过,不执行保存操作
- }
- },
- async sendSubmit(res) {
- const data = await getSendSaleOrderConfirmDetail(
- this.businessId || res
- );
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: this.businessId || res,
- businessKey: 'sales_sendconfirm_approve',
- formCreateUserId: data.createUserId,
- variables: {
- businessCode: data.docNo,
- businessName: data.contactName,
- businessType: '发货确认单'
- }
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
-
- },
- remove(index) {
- this.form.productList.splice(index, 1);
- },
- reload() {
- this.cancel();
- this.$emit('done');
- },
- cancel() {
- this.$nextTick(() => {
- this.activeName = 'first';
- // 关闭后,销毁所有的表单数据
- this.$refs['otherForm'] && this.$refs['otherForm'].resetFields();
- this.$refs['formRef'] && this.$refs['formRef'].resetFields();
- this.$store.commit('order/clearUserData');
- this.form = copyObj(this.formDef);
- this.visible = false;
- this.trayListData = [];
- this.trayLis = [];
- });
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .TotalAmount {
- font-size: 16px;
- padding-right: 30px;
- }
- .headbox {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .amount {
- font-size: 14px;
- font-weight: bold;
- margin-right: 20px;
- }
- }
- </style>
|