| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024 |
- <template>
- <div class="borderless">
- <div class="customer-head">
- <div class="customer-back">
- <el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
- @click="backToList">返回列表
- </el-button>
- </div>
- <el-button type="primary"
- class="el-button--small-yh add-customer-btn-three"
- :disabled="!form.id"
- @click.stop="confirmReceipt">
- {{receiptDisable ?"撤销收货":"确认收货"}}
- </el-button>
- <el-button type="success"
- class="el-button--small-yh add-customer-btn-two"
- :disabled="true"
- @click.stop="">复制新单
- </el-button>
- <el-button
- class="el-button--small-yh add-customer-btn"
- type="primary"
- :disabled="disabled || receiptDisable"
- @click="editCustomer"
- >{{ form.id ? '确认修改' : '确认新增' }}
- </el-button>
- </div>
- <div style="margin-top: 60px">
- <el-form :model="form" ref="form" label-width="130px" class="demo-ruleForm">
- <containerTitle title="基础信息"></containerTitle>
- <basic-container style="margin-bottom: 10px">
- <el-row>
- <el-col v-for="(item,index) in basicData.column" :key="index" :span="item.span?item.span:8">
- <el-form-item :label="item.label" :prop="item.prop" :rules="item.rules">
- <el-date-picker v-if="item.type === 'datetime'" style="width: 100%;" v-model="form[item.prop]" :disabled="receiptDisable" size="small" type="date" placeholder="请选择日期" value-format="yyyy-MM-dd HH:mm:ss"/>
- <selectComponent v-else-if="item.prop === 'corpId'" v-model="form[item.prop]" :configuration="configuration"/>
- <el-select v-else-if="item.prop === 'storageId'" style="width: 100%" :disabled="receiptDisable" @change="warehouseChange" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in storageIdDic" :key="index" :label="item.cname" :value="item.id"></el-option>
- </el-select>
- <!-- <warehouse-select v-else-if="item.prop === 'storageId'" v-model="form[item.prop]" @change="warehouseChange" :configuration="configuration" />-->
- <el-input type="textarea" v-else-if="(item.prop === 'deliveryRemarks')" v-model="form[item.prop]" :disabled="receiptDisable" size="small" autocomplete="off" placeholder="请输入"></el-input>
- <el-input v-else v-model="form[item.prop]" size="small" :disabled="item.disabled?true:false || receiptDisable" placeholder="请输入" autocomplete="off"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </basic-container>
- <containerTitle title="收货明细"></containerTitle>
- <basic-container style="margin-bottom: 10px">
- <avue-crud
- :option="customerContact"
- v-model="contactsForm"
- :data="contactsData"
- ref="crudContact"
- @row-save="rowSave"
- @row-click="handleRowClick"
- @row-update="rowUpdate"
- @saveColumn="saveColumn"
- @row-del="rowDel"
- >
- <template slot-scope="{row}" slot="billNo">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- v-if="row.$cellEdit"
- v-model="row.billNo"
- style="width: 90%"
- placeholder=" "
- size="small"
- @change="bingOut(row)"
- ></el-input>
- <span v-else>{{ row.billNo }}</span>
- </template>
- <template slot-scope="{row}" slot="contractNumber">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-select
- v-if="row.$cellEdit"
- style="width:90% !important;"
- v-model="row.contractNumber"
- placeholder=" "
- size="small"
- clearable
- filterable
- >
- <el-option
- style="width:90%"
- v-for="(item,index) in contractDic"
- :key="index"
- :label="item.orderNo"
- @change="sumOrderNo(row)"
- :value="item.orderNo"
- ></el-option>
- </el-select>
- <span v-else>{{ row.contractNumber }}</span>
- </template>
- <template slot="priceCategory" slot-scope="{row,index}">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- v-if="row.$cellEdit"
- v-model="row.priceCategoryNames"
- size="small"
- placeholder="请点击右侧按钮选择"
- :disabled="true"
- style="width: 63%"
- ></el-input>
- <el-button v-if="row.$cellEdit" size="small" icon="el-icon-search" @click="choice(row)"></el-button>
- <span v-else>{{ row.priceCategoryNames }}</span>
- </template>
- <template slot="billWeight" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.billWeight"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d\d\d\d\d).*$/, "$1.$2")'
- @change="totalChange(row.billWeight)"
- ></el-input>
- <span v-else>{{ row.billWeight }}</span>
- </template>
- <template slot="invoiceWeight" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.invoiceWeight"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d\d\d\d\d).*$/, "$1.$2")'
- @input="invoiceWeightChange(row)"
- @change="totalChange(row.invoiceWeight)"
- ></el-input>
- <span v-else>{{ row.invoiceWeight }}</span>
- </template>
- <template slot="price" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.price"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @input="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.price }}</span>
- </template>
- <template slot="actualQuantity" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- v-if="row.$cellEdit"
- v-model="row.actualQuantity"
- style="width: 93%"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @input="actualQuantityChange(row)"
- ></el-input>
- <span v-else>{{ row.actualQuantity }}</span>
- </template>
- <template slot-scope="{row,index}" slot="menu">
- <el-button
- type="text"
- size="small"
- :disabled="receiptDisable"
- @click="rowCell(row,index)"
- >{{ row.$cellEdit ? '保存' : '修改' }}
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="receiptDisable"
- @click="rowDel(row,index)"
- >删除
- </el-button>
- </template>
- <template slot="menuLeft" slot-scope="{size}">
- <el-button type="primary"
- icon="el-icon-plus"
- size="small"
- :disabled="receiptDisable"
- @click="commoditySelection"
- >导入明细
- </el-button>
- </template>
- </avue-crud>
- </basic-container>
- <containerTitle title="附件上传"></containerTitle>
- <basic-container style="margin-bottom: 40px">
- <avue-crud
- :option="upLoadOption"
- v-model="upLoadForm"
- :data="upLoadData"
- @row-save="upLoadSave"
- @row-update="upLoadUpdate"
- @row-del="upLoadDel"
- ></avue-crud>
- </basic-container>
- </el-form>
- </div>
- <el-dialog
- title="导入商品"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="dialogVisible"
- width="80%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false">
- <el-row style="height: 0;">
- <el-col :span="5">
- <div>
- <el-scrollbar>
- <basic-container>
- <avue-tree :option="treeOption" :data="treeData" @node-click="nodeClick"/>
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="19">
- <basic-container>
- <avue-crud :option="optionTwo"
- :table-loading="loading"
- :data="data"
- ref="crud"
- @refresh-change="refreshChange"
- @selection-change="selectionChange"
- :page.sync="page"
- @on-load="onLoad"></avue-crud>
- </basic-container>
- </el-col>
- </el-row>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="commodityConfirm" v-if="selectKind != -1" :disabled="tableData.length !== 1">确定</el-button>
- </span>
- </el-dialog>
- <el-dialog
- title="导入采购"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="procurementDialog"
- width="60%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- top="10vh"
- v-dialog-drag>
- <procurement-detail
- @closeFun="closeFun"
- @importProMent="importProMent"
- >
- </procurement-detail>
- </el-dialog>
- </div>
- </template>
- <script>
- import customerContact from "./config/customerContact.json"
- import commodity from "../invoice/config/commodity.json";
- import {getSysNo} from "@/api/importTrade/purchase";
- import {getDeptLazyTree, customerList} from "@/api/basicData/basicFeesDesc";
- import {detailReceiptList,
- submitReceiptList,
- removeGoodsItem,
- getStorage,
- getInventory,
- confirmReceipt,
- repealReceipt
- } from "@/api/importTrade/receipt"
- import {
- getList
- } from "@/api/basicData/deliveryNotice"
- import upLoadOption from "../../exportTrade/purchaseContract/config/uploadList.json";
- import {detailListData } from "@/api/importTrade/purchase";
- import { contrastObj,contrastList } from "@/util/contrastData";
- import { getOrgOrderNo } from "@/api/importTrade/salesContract"
- import procurementDetail from "@/components/procurement/purchase";
- import {selectGoodsNum} from "@/api/basicData/inventoryAccount"
- import _ from "lodash";
- import importInventory from "../../salesManagement/salesContract/config/importInventory.json";
- export default {
- name: "detailsPageEdit",
- props: {
- detailData: {
- type: Object
- }
- },
- components:{
- procurementDetail
- },
- data() {
- return {
- form: {},
- disabled: false,
- skip:false,
- receiptDisable:false,
- customerContact: customerContact,
- contactsForm: {},
- contactsData: [],
- contractDic:[],
- singleton:[],
- selectKind:-1,
- configuration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- basicData: {
- column: [
- {
- label: '系统号',
- prop: 'sysNo',
- disabled:true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '供应商',
- prop: 'corpId',
- span: 16,
- dicData: [],
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '合同号',
- prop: 'orderNo',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '仓库名称',
- type:'select',
- prop: 'storageId',
- dicData: [],
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },{
- label: '发货日期',
- prop: 'businessDate',
- type:'datetime',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '发货人',
- prop: 'arrivalContact',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '发货电话',
- prop: 'arrivalTel',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '发货地址',
- prop: 'arrivalAddress',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '业务员',
- prop: 'saleman',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '码单重量',
- prop: 'billWeight',
- disabled: true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '发票重量',
- prop: 'invoiceWeight',
- disabled: true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '备注',
- prop: 'deliveryRemarks',
- span: 24,
- mock: {
- type: 'county'
- }
- }
- ]
- },
- //上传文件
- upLoadOption: upLoadOption,
- upLoadData:[],
- storageIdDic:[],
- upLoadForm:{},
- dialogVisible: false,
- treeOption: {
- nodeKey: 'id',
- lazy: true,
- treeLoad: function (node, resolve) {
- const parentId = (node.level === 0) ? 0 : node.data.id;
- getDeptLazyTree(parentId).then(res => {
- resolve(res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- }
- }))
- });
- },
- treeDeptId: '',
- addBtn: false,
- menu: false,
- size: 'small',
- props: {
- labelText: '标题',
- label: 'title',
- value: 'value',
- children: 'children'
- }
- },
- optionTwo: commodity,
- loading: false,
- data: [],
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- commodityData: false,
- tableData: [],
- //
- procurementDialog:false,
- //新旧数据对比
- oldForm:{},
- oldContactsData:[],
- oldUpLoadData:[],
- }
- },
- async created() {
- // this.customerContact = await this.getColumnData(this.getColumnName(41), customerContact);
- getStorage().then(res =>{
- this.storageIdDic = res.data
- })
- if (this.detailData.id) {
- let id = this.detailData.id.replace(/\"/g, "")
- detailReceiptList(id).then(res => {
- this.form = res.data.data;
- this.oldForm = Object.assign({},res.data.data);
- this.receiptDisable = res.data.data.deliveryStatus === "已收货" ? true :false
- this.configuration.disabled = this.receiptDisable
- this.configuration.dicData = this.form.corpName
- if(this.form.deliveryItemsList){
- this.contactsData = this.form.deliveryItemsList
- this.oldContactsData = this.deepClone(this.form.deliveryItemsList)
- }
- if(this.form.deliveryFilesList){
- this.upLoadData = this.form.deliveryFilesList
- this.oldUpLoadData = this.deepClone(this.form.deliveryFilesList)
- }
- })
- }
- if(this.detailData.params){
- this.skip = true
- detailListData(this.detailData.params.id).then(res =>{
- const orderNoList = []; //合同号数据
- this.detailData.params.orderItemIds.forEach((e,i) =>{
- const item = res.data.data.itemsVOList[e];
- item.srcId = item.id;
- item.orgOrderNo = res.data.data.orgOrderNo;
- item.contractNumber = res.data.data.orderNo;
- orderNoList.push(item.contractNumber)
- if(item.actualQuantity !== 0){ //如果收过货
- item.actualQuantity = _.subtract(item.orderQuantity, item.actualQuantity); //收货件数 = 采购件数 - 已收件数
- }else{
- item.actualQuantity = item.orderQuantity;
- }
- item.contractAmount = item.amount;
- //码单重量 除以 数量 每个的码单重量
- item.singleton = {
- BQ : _.divide(item.billWeight, item.orderQuantity),
- IQ : _.divide(item.invoiceWeight, item.orderQuantity)
- }
- delete item.id
- this.$refs.crudContact.rowCellAdd(item);
- this.$refs.crudContact.rowCell(item,this.contactsData.length - 1)
- })
- this.$set(this.form,'orderNo', Array.from(new Set(orderNoList)).join(",")) // 数组去重逗号隔开 那合同总
- this.$set(this.form,'saleman',res.data.data.salesName)
- this.$set(this.form,'corpId',res.data.data.corpsName[0].id)
- this.$set(this.form,'orgOrderNo', res.data.data.orgOrderNo)
- this.$set(this.configuration,'dicData', res.data.data.corpsName)
- })
- }
- },
- methods: {
- //选择仓库 带出库存
- warehouseChange(){
- this.contactsData.forEach(item =>{
- this.selectInventory(item);
- })
- },
- //查询库存
- selectInventory(row){
- if(row.billNo && row.contractNumber && row.priceCategory && this.form.storageId){
- const params = {
- billNo:row.billNo,
- contractNumber:row.contractNumber,
- priceCategory:row.priceCategory,
- storageId:this.form.storageId,
- }
- selectGoodsNum(params).then(res =>{
- this.$set(this.contactsData[row.$index],"inventoryNumber",res.data.data)
- })
- }
- },
- sumOrderNo(row){
- //拿到所有明细合同号 去重加逗号放到主表合同号
- const contractNumberList = this.contactsData.map(item =>{return item.contractNumber})
- this.$set(this.form,'orderNo', Array.from(new Set(contractNumberList)).join(","))
- if(row){
- this.selectInventory(row);
- }
- },
- actualQuantityChange(row){
- if(row.singleton){
- const _sing = row.singleton
- if( _sing.BQ !== 0){ //如果有值并且不为空 计算码单与发票
- row.billWeight = _.multiply(_sing.BQ,row.actualQuantity)
- }
- if( _sing.IQ !== 0){
- row.invoiceWeight = _.multiply(_sing.IQ,row.actualQuantity)
- this.invoiceWeightChange(row) //发票改变合同
- }
- this.totalChange()
- }
- },
- //合计
- totalChange(){
- let invoiceList = this.contactsData.map(item => {
- if(item.invoiceWeight){
- return parseFloat(item.invoiceWeight);
- }else return 0
- });
- let billList = this.contactsData.map(item => {
- if(item.billWeight){
- return parseFloat(item.billWeight);
- }else return 0
- });
- this.$set(this.form,"invoiceWeight",invoiceList.reduce((n,m) => n + m))
- this.$set(this.form,"billWeight",billList.reduce((n,m) => n + m))
- },
- //提单号带出合同号
- bingOut(row){
- getOrgOrderNo(row.billNo).then(res =>{
- if(res.data){
- this.contractDic = res.data;
- row.contractNumber = res.data[0].orderNo;
- this.sumOrderNo()
- }
- }).catch(()=>{
- row.contractNumber = ''
- })
- this.selectInventory(row);
- },
- //单价
- priceChange(row) {
- if (!row.price) {
- row.price = "";
- row.contractAmount = 0
- } else {
- row.contractAmount = _.multiply(row.invoiceWeight,row.price).toFixed(2);
- }
- },
- //码单重量
- invoiceWeightChange(row) {
- if (!row.invoiceWeight) {
- row.invoiceWeight = "";
- row.contractAmount = 0
- } else {
- row.contractAmount = _.multiply(row.invoiceWeight,row.price).toFixed(2);
- }
- },
- //新增商品信息保存触发
- rowSave(row, done, loading) {
- // this.contactsData.push(row)
- done()
- },
- //点击行可编辑
- handleRowClick(row, event, column) {
- },
- //商品编辑
- rowCell(row, index) {
- this.$refs.crudContact.rowCell(row, index)
- },
- //修改商品信息触发
- rowUpdate(row, index, done, loading) {
- done(row);
- },
- //删除商品信息触发
- rowDel(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- //商品判断是否需要调用删除接口
- if (row.id) {
- removeGoodsItem(row.id).then(res => {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.contactsData.splice(index, 1);
- })
- } else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.contactsData.splice(index, 1);
- }
- })
- },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid) => {
- for (let i = 0; i < this.contactsData.length; i++) {
- if (this.contactsData[i].billNo === "") {
- return this.$message.error(`请输入第${i + 1}行的提单号`);
- }
- if (this.contactsData[i].contractNumber === "") {
- return this.$message.error(`请输入第${i + 1}行的合同号`);
- }
- if (this.contactsData[i].priceCategory === "") {
- return this.$message.error(`请输入第${i + 1}行的货物品种`);
- }
- if (this.contactsData[i].actualQuantity === null) {
- return this.$message.error(`请输入第${i + 1}行的数量`);
- }
- }
- this.form.billNo = this.contactsData.map(item =>{return item.billNo}).join(",")
- if (valid) {
- let submitDto = {
- ...this.form,
- deliveryItemsList: this.contactsData,
- deliveryFilesList: this.upLoadData,
- };
- submitReceiptList(submitDto).then(res => {
- if(res.data.success){
- this.$message.success("保存成功!")
- detailReceiptList(res.data.data.id).then(res => {
- this.form = res.data.data;
- this.oldForm = Object.assign({},res.data.data);
- this.receiptDisable = res.data.data.deliveryStatus === "已收货" ? true :false
- this.configuration.dicData = this.form.corpName
- if(this.form.deliveryItemsList){
- this.contactsData = this.form.deliveryItemsList
- this.oldContactsData = this.deepClone(this.form.deliveryItemsList)
- }
- if(this.form.deliveryFilesList){
- this.upLoadData = this.form.deliveryFilesList
- this.oldUpLoadData = this.deepClone(this.form.deliveryFilesList)
- }
- })
- }
- })
- if(status === true){
- this.$emit("goBack");
- }
- } else {
- return false;
- }
- });
- },
- //确认收货
- confirmReceipt(){
- if(contrastObj(this.form,this.oldForm) || contrastList(this.contactsData,this.oldContactsData)
- || contrastList(this.upLoadData,this.oldUpLoadData)
- ){
- this.$confirm("请先保存在进行操作!", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning"
- }).then(()=>{
- this.editCustomer()
- })
- }else{
- if(!this.receiptDisable){
- this.$confirm("是否确认收货?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(()=>{
- this.form.deliveryItemsList = this.contactsData;
- confirmReceipt(this.form).then(res =>{
- if(res.data.success){
- this.$message.success("收货成功!")
- this.receiptDisable = res.data.data.deliveryStatus === "已收货" ? true :false
- }
- })
- })
- }else{
- this.$confirm("是否撤销收货!", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(()=>{
- this.form.deliveryItemsList = this.contactsData;
- repealReceipt(this.form).then(res =>{
- if(res.data.success){
- this.$message.success("撤销成功!")
- this.receiptDisable = res.data.data.deliveryStatus === "已收货" ? true :false
- }
- })
- })
- }
- }
- },
- //导入采购明细
- importProMent(list){
- list.forEach((item,index) =>{
- item.srcId = item.id;
- item.contractNumber = item.orderNo;
- item.contractAmount = item.amount;
- item.actualQuantity = item.orderQuantity;
- item.singleton = {
- BQ : item.billWeight && item.orderQuantity?_.divide(item.billWeight, item.orderQuantity):0,
- IQ : item.invoiceWeight && item.orderQuantity?_.divide(item.invoiceWeight, item.orderQuantity):0
- }
- console.log(item.singleton)
- delete item.id
- this.$refs.crudContact.rowCellAdd(item);
- this.selectInventory(item)
- })
- this.totalChange()
- this.sumOrderNo(); //合并合同号
- this.procurementDialog = false;
- },
- //上传文件保存
- upLoadSave(row, done, loading){
- this.upLoadData.push(row)
- done()
- },
- //修改附件上传触发
- upLoadUpdate(row, done){
- done(row);
- },
- //删除附件上传触发
- upLoadDel(row, index,){
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id){
- corpsbank(row.id).then(res=>{
- if(res.data.success){
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.bankOfDepositData.splice(index, 1);
- }
- })
- }else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.bankOfDepositData.splice(index, 1);
- }
- })
- },
- closeFun(){
- this.procurementDialog = false
- },
- //选择货物品种
- choice(row){
- this.dialogVisible = true;
- this.selectKind = row.$index;
- },
- //选择货品
- commodityConfirm(){
- if(this.tableData){
- this.contactsData[this.selectKind].priceCategory = this.tableData[0].id;
- this.contactsData[this.selectKind].itemDescription = this.tableData[0].cnameDescription;
- this.$set(this.contactsData[this.selectKind],'priceCategoryNames',this.tableData[0].cname)
- this.selectInventory(this.contactsData[this.selectKind]);
- this.dialogVisible = !this.dialogVisible
- this.selectKind = -1;
- }
- },
- //点击商品明细选择触发
- commodityChoice(row) {
- this.dialogVisible = !this.dialogVisible
- this.commodityData = true
- this.choiceIndexT = row.$index
- },
- //商品新增触发
- commoditySelection() {
- this.procurementDialog = true;
- // this.$refs.crudContact.rowCellAdd();
- // this.dialogVisible = !this.dialogVisible
- // this.commodityData = false
- },
- //导入页左商品类型查询
- nodeClick(data) {
- this.treeDeptId = data.id;
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- //刷新触发
- refreshChange() {
- this.treeDeptId = '';
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- //选中触发
- selectionChange(list) {
- this.tableData = list
- },
- //确认导入触发
- importGoods() {
- if (this.tableData.length > 0) {
- for (let item in this.tableData) {
- const params = {
- priceCategory: this.tableData[item].code,
- priceCategoryNames: this.tableData[item].cname,
- itemId: this.tableData[item].id,
- cname: this.tableData[item].cname
- }
- this.$refs.crudContact.rowCellAdd(params);
- this.$refs.crudContact.rowCell(params, this.contactsData.length - 1)
- }
- this.tableData = []
- this.dialogVisible = false
- }
- },
- //导入商品触发
- importChoice() {
- if (this.tableData.length === 1) {
- this.contactsData[this.choiceIndexT].cname = this.tableData[0].cname
- this.contactsData[this.choiceIndexT].code = this.tableData[0].code
- this.contactsData[this.choiceIndexT].typeno = this.tableData[0].typeno
- this.contactsData[this.choiceIndexT].specificationAndModel = this.tableData[0].specificationAndModel
- this.contactsData[this.choiceIndexT].itemId = this.tableData[0].id
- this.contactsData[this.choiceIndexT].priceCategory = this.tableData[0].goodsTypeName
- }
- this.dialogVisible = !this.dialogVisible
- this.commodityData = false
- },
- //商品列表查询
- onLoad(page, params = {}) {
- this.loading = true;
- getList(page.currentPage, page.pageSize, Object.assign(params, this.query), this.treeDeptId).then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.data = data.records;
- this.loading = false;
- });
- },
- //返回列表
- backToList() {
- if(contrastObj(this.form,this.oldForm) || contrastList(this.contactsData,this.oldContactsData)
- || contrastList(this.upLoadData,this.oldUpLoadData)
- ){
- this.$confirm("是否保存当前页面?", "提示", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.editCustomer(true)
- }).catch(()=>{
- this.$emit("goBack");
- })
- }else{
- this.$emit("goBack");
- }
- },
- //列保存触发
- async saveColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(41),
- this.customerContact
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crudContact.$refs.dialogColumn.columnBox = false;
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .customer-head {
- position: fixed;
- top: 105px;
- width: 100%;
- margin-left: -10px;
- height: 62px;
- background: #ffffff;
- box-shadow: 0 4px 12px 0px rgba(232, 232, 235, 1);
- z-index: 999;
- /* display: flex;
- justify-content: left; */
- }
- .customer-back {
- cursor: pointer;
- line-height: 62px;
- font-size: 16px;
- color: #323233;
- font-weight: 400;
- }
- .back-icon {
- line-height: 64px;
- font-size: 20px;
- margin-right: 8px;
- }
- .add-customer-btn {
- position: fixed;
- right: 36px;
- top: 115px;
- }
- ::v-deep .el-form-item {
- margin-bottom: 0;
- }
- .required_fields{
- color: #F56C6C;
- display:inline-block;
- width: 7%
- }
- .add-customer-btn-two {
- position: fixed;
- right: 150px;
- top: 115px;
- }
- .add-customer-btn-three {
- position: fixed;
- right: 266px;
- top: 115px;
- }
- .el-dialogDeep {
- ::v-deep .el-dialog {
- margin: 1vh auto 0 !important;
- padding-bottom: 10px !important;
- .el-dialog__body, .el-dialog__footer {
- padding-bottom: 0 !important;
- padding-top: 0 !important;
- }
- }
- }
- ::v-deep .el-form-item__content{
- line-height: 32px;
- }
- </style>
|