12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139 |
- <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 class="upper_right_button">
- <el-button type="primary"
- class="el-button--small-yh"
- size="small"
- :loading="buttonLoading"
- :disabled="true"
- @click.stop="">请核
- </el-button>
- <el-button type="warning"
- size="small"
- class="el-button--small-yh "
- :loading="buttonLoading"
- @click.stop="applyPayment('申请')">申请货款
- </el-button>
- <!-- <el-button type="warning"
- size="small"
- class="el-button--small-yh "
- :loading="buttonLoading"
- @click.stop="applyPayment()">取消货款
- </el-button>-->
- <el-button type="info"
- size="small"
- :loading="buttonLoading"
- @click="openApplicationDialog"
- >查看申请记录
- </el-button>
- <el-button type="warning"
- size="small"
- class="el-button--small-yh "
- :loading="buttonLoading"
- @click.stop="applyPayment('收费')">退款
- </el-button>
- <el-button type="success"
- size="small"
- :loading="buttonLoading"
- class="el-button--small-yh "
- :disabled="true"
- @click.stop="">复制新单
- </el-button>
- <el-button
- class="el-button--small-yh "
- type="primary"
- size="small"
- :disabled="disabled"
- @click="editCustomer"
- :loading="buttonLoading"
- >{{form.id?'确认修改':'确认新增'}}
- </el-button>
- </div>
- </div>
- </div>
- <div class="customer-main">
- <el-form :model="form" ref="form" label-width="130px">
- <containerTitle title="基础信息"></containerTitle>
- <basic-container style="margin-bottom: 10px">
- <el-row>
- <el-col v-for="(item, index) in basicData.column" :span="item.span?item.span:8" :key="index">
- <el-form-item :label="item.label" :prop="item.prop" :rules="item.rules">
- <el-date-picker v-if="item.type === 'date'" style="width: 100%;" v-model="form[item.prop]" :disabled="item.disabled?true:false" size="small" type="date" placeholder="选择日期" value-format="yyyy-MM-dd HH:mm:ss"/>
- <el-select v-else-if="item.type === 'select'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option
- v-for="(data, index) in item.dicData"
- :key="index"
- :label="data.label"
- :value="data.value"
- ></el-option>
- </el-select>
- <el-input type="age" v-else-if="item.prop === 'orderAmount'" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" size="small" autocomplete="off" @input="currencyChange" placeholder="请输入"></el-input>
- <selectComponent v-else-if="item.prop === 'corpId'" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" :configuration="configuration"/>
- <selectComponent v-else-if="item.prop === 'purchaserId'" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" :configuration="pConfiguration"/>
- <selectComponent v-else-if="item.prop === 'belongToCorpId'" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" :configuration="bConfiguration"/>
- <el-select v-else-if="item.prop === 'orderType'" style="width: 100%" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in contractTypeDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <el-select v-else-if="item.prop === 'currency'" style="width: 100%" :disabled="item.disabled?true:false || takeDisabled" v-model="form[item.prop]" size="small" placeholder="请选择" @change="currencyChange('true')" clearable filterable>
- <el-option v-for="(item,index) in currencyDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <el-select v-else-if="item.prop === 'paymentType'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in paymentTypeDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <div v-else-if="item.prop === 'advancePayment'">
- <el-input type="age" v-model="form[item.prop]" style="width: 70%" :disabled="item.disabled?true:false || takeDisabled" size="small" autocomplete="off" placeholder="请输入"></el-input>
- <el-select v-model="form['prepayCurrency']" size="small" style="width: 30%" :disabled="item.disabled?true:false || takeDisabled" value="USD" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in currencyDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- </div>
- <el-input type="age" v-else-if="item.prop === 'exchangeRate'" v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" size="small" autocomplete="off" @change="currencyChange" placeholder="请输入">
- </el-input>
- <el-input type="textarea" v-else-if="(item.prop === 'orderRemark')" v-model="form[item.prop]" size="small" autocomplete="off" placeholder="请输入"></el-input>
- <el-input type="age" v-else v-model="form[item.prop]" :disabled="item.disabled?true:false || takeDisabled" size="small" autocomplete="off" placeholder="请输入"></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"
- @selection-change="selectionContact"
- @row-click="handleRowClick"
- @row-update="rowUpdate"
- @row-del="rowDel"
- @saveColumn="saveColumn"
- >
- <template slot="priceCategory" slot-scope="{ row, index}">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <goods-select
- style="width:90% !important;"
- v-if="row.$cellEdit"
- v-model="row.priceCategoryNames"
- @valueName="(value) => valueName(value,row)"
- :configuration="itemConfiguration"
- >
- </goods-select>
- <span v-else>{{ row.priceCategoryNames }}</span>
- </template>
- <template slot="itemType" slot-scope="{ row, index }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-select
- v-if="row.$cellEdit"
- v-model="row.itemType"
- size="small"
- style="width:90% !important;"
- filterable
- allow-create
- default-first-option
- clearable
- >
- <el-option
- v-for="(item,index) in row.specificationList"
- :key="index"
- :label="item.value"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <span v-else>{{ row.itemType }}</span>
- </template>
- <template slot="orderQuantity" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- style="width:90% !important;"
- v-if="row.$cellEdit"
- v-model="row.orderQuantity"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- ></el-input>
- <span v-else>{{ row.orderQuantity }}</span>
- </template>
- <template slot="price" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- style="width:90% !important;"
- 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="invoiceWeight" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- style="width:90% !important;"
- 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")'
- @change="totalChange(row.invoiceWeight)"
- ></el-input>
- <span v-else>{{ row.invoiceWeight }}</span>
- </template>
- <template slot="billWeight" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- style="width:90% !important;"
- 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")'
- @input="billWeightChange(row)"
- @change="totalChange(row.billWeight)"
- ></el-input>
- <span v-else>{{ row.billWeight }}</span>
- </template>
- <template slot="amount" slot-scope="{ row }">
- <span v-if="row.$cellEdit" class="required_fields">*</span>
- <el-input
- style="width:90% !important;"
- v-if="row.$cellEdit"
- v-model="row.amount"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d\d\d\d\d).*$/, "$1.$2")'
- ></el-input>
- <span v-else>{{ row.amount }}</span>
- </template>
- <template slot="taxRate" slot-scope="{ row }">
- <el-input v-if="row.$cellEdit"
- v-model="row.taxRate"
- size="small"
- autocomplete="off"
- placeholder="请输入">
- <!-- <template slot="append"
- >%</template>-->
- </el-input>
- <span v-else>{{ row.taxRate }}</span>
- </template>
- <template slot-scope="{row,index}" slot="menu">
- <el-button
- type="text"
- size="small"
- :disabled="row.actualQuantity !=0"
- @click="rowCell(row,index)"
- >{{ row.$cellEdit ? '修改完成' : '修改' }}
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="row.actualQuantity !=0"
- @click="rowDel(row,index)"
- >删除
- </el-button>
- </template>
- <template slot="menuLeft" slot-scope="{size}">
- <el-button type="primary"
- icon="el-icon-plus"
- size="small"
- @click="commoditySelection"
- >录入明细
- </el-button>
- <el-button type="warning"
- size="small"
- :disabled="selectContact.length == 0"
- @click="beforePage(false)"
- >生成收货单
- </el-button>
- </template>
- </avue-crud>
- </basic-container>
- <fee-info
- ref="feeInfo"
- :orderFeesList="orderFeesList"
- feeUrl=""
- />
- <upload-file
- ref="uploadFile"
- title="合同附件"
- :orderFilesList="orderFilesList"
- delUrl=""
- />
- </el-form>
- </div>
- <el-dialog
- title="申请记录"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="applicationDialog"
- width="60%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- v-dialog-drag
- >
- <bill-application
- :billId="form.id"
- @choceApplication="choceApplication"
- >
- </bill-application>
- </el-dialog>
- <el-dialog
- append-to-body
- title="账单"
- class="el-dialogDeep"
- :visible.sync="applyPaymentDialog"
- width="70%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false"
- v-dialog-drag
- >
- <apply-payment
- :billType="billType"
- :billData="billData"
- @choceFun="choceFun"
- >
- </apply-payment>
- </el-dialog>
- </div>
- </template>
- <script>
- import customerContact from "./config/customerContact.json"
- import uploadList from './config/uploadList.json'
- import advantageProject from "./config/advantageProject.json"
- import { getDeptLazyTree } from "@/api/basicData/basicFeesDesc";
- import optionTwoCost from "./config/mainListCost.json"
- import {detailListData, submitData} from "@/api/importTrade/purchase";
- import feeInfo from "@/components/fee-info/main";
- import uploadFile from "@/components/upload-file/main";
- import _ from "lodash";
- import billApplication from "@/components/bill/billApplication";
- //商品详情接口
- import { corpsattn } from "@/api/basicData/configuration"
- import { contrastObj,contrastList } from "@/util/contrastData";
- import ApplyPayment from "../../../components/finance/applyPayment";
- export default {
- name: "detailsPage",
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- ApplyPayment,
- feeInfo,
- uploadFile,
- billApplication
- },
- data() {
- return {
- form: {},
- disabled: false,
- customerContact: {},
- contactsForm: {},
- contactsData: [],
- buttonLoading:false,
- applyPaymentDialog:false,
- applicationDialog:false,
- commodityData: false,
- takeDisabled:false, //收货状态
- tableData: [],
- billType:"",
- billData:{},
- contractTypeDic:[],
- currencyDic:[],
- selectContact:[],//选中采购明细
- selectKind: -1,//选择采购明细的货品
- paymentTypeDic:[],
- orderFeesList:[],
- orderFilesList:[],
- treeDeptId: '',
- configuration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- pConfiguration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- bConfiguration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- itemConfiguration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- // 合同上传数据
- uploadList: uploadList,
- // 合同数据
- bankOfDepositData: [],
- bankOfDepositForm: {},
- // 其他费用
- advantageProject: advantageProject,
- advantageProjectData: [],
- advantageProjectForm: {},
- dialogCost: false,
- choiceData: false,
- treeOptionCost:{
- 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
- }
- }))
- });
- },
- addBtn: false,
- menu: false,
- size: 'small',
- props: {
- labelText: '标题',
- label: 'title',
- value: 'value',
- children: 'children'
- }
- },
- // 导入其他费用配置
- optionTwoCost: optionTwoCost,
- loadingCost: false,
- dataCost:[],
- pageCost:{
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- tableDataCost: [],
- treeDeptIdCost: '',
- choiceIndex: '',
- //对比新旧数据信息
- oldContactsData:[],
- oldForm:{},
- oldFeesList:[],
- oldFilesList:[],
- // 基础信息
- 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: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '采购商',
- prop: 'purchaserId',
- span: 16,
- dicData: [],
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '合同日期',
- prop: 'businesDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '所属公司',
- prop: 'belongToCorpId',
- span: 16,
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '合同金额',
- prop: 'orderAmount',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '合同重量(吨)',
- prop: 'contractWeight',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '合同类型',
- prop: 'orderType',
- // type:'select',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '业务员',
- prop: 'salesName',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '要求发货日期',
- prop: 'requiredDeliveryDate',
- type:'date',
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '要求到货日期',
- prop: 'requiredArrivalDate',
- type:'date',
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '单价',
- prop: 'salesPrice',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '币别',
- prop: 'currency'
- }, {
- label: '汇率',
- prop: 'exchangeRate',
- }, {
- label: '人民币金额',
- prop: 'rmbAmount',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '付款方式',
- prop: 'paymentType',
- },
- {
- label: '到港日期',
- prop: 'dateOfArrival',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '付款/开证日期',
- prop: 'accountsCollectionDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '信用证到期日',
- prop: 'creditDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '预付(保证)金额',
- prop: 'advancePayment',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '已付金额',
- prop: 'settlmentAmount',
- disabled: true,
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '发票重量',
- prop: 'invoiceWeight',
- disabled: true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: '码单重量',
- prop: 'billWeight',
- disabled: true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },
- {
- label: "备注",
- span: 24,
- prop: "orderRemark",
- mock: {
- type: 'county'
- }
- }
- ],
- },
- }
- },
- async created() {
- this.customerContact = await this.getColumnData(this.getColumnName(37), customerContact);
- //币别
- this.getWorkDicts("currency").then(res =>{
- this.currencyDic = res.data.data
- })
- this.getWorkDicts("contractType").then(res =>{
- this.contractTypeDic = res.data.data
- })
- this.getWorkDicts("payment_term").then(res =>{
- this.paymentTypeDic = res.data.data
- })
- if (this.detailData.id) {
- this.buttonLoading = true;
- let id = this.detailData.id.replace(/\"/g, "")
- detailListData(id).then(res => {
- this.form = res.data.data;
- this.oldForm = Object.assign({},res.data.data);
- this.configuration.dicData = this.form.corpsName
- this.pConfiguration.dicData = this.form.purchaserName
- if(res.data.data.itemsVOList){
- this.contactsData = res.data.data.itemsVOList
- this.oldContactsData = this.deepClone(res.data.data.itemsVOList)
- //明细列表内是否有 已经收货的 如果有 则禁用一些输入框
- this.takeDisabled = this.contactsData.map(item =>{if(item.actualQuantity != 0) return true}).some(item => {return item == true})
- this.basicData.column.forEach(item =>{
- if(item.prop == "businesDate" || item.prop == "requiredDeliveryDate" || item.prop == "requiredArrivalDate" || item.prop == ""){
- item.disabled = this.takeDisabled
- }
- })
- }
- if(res.data.data.orderFeesList){
- this.orderFeesList = res.data.data.orderFeesList
- this.oldFeesList = this.deepClone(res.data.data.orderFeesList)
- }
- if( res.data.data.orderFilesList){
- this.orderFilesList = res.data.data.orderFilesList
- this.oldFilesList = this.deepClone(res.data.data.orderFilesList)
- }
- }).finally(()=>{
- this.buttonLoading = false;
- })
- }else{
- this.$set(this.form,"currency","USD")
- this.$set(this.form,"exchangeRate",6.3686)
- }
- },
- methods: {
- valueName(value,row){
- this.$set(row,"priceCategory",value)
- this.$set(row,"itemId",value) //将id 赋值给itemId 提单号查询合同号时使用
- },
- //单价
- priceChange(row) {
- if (row.price && row.billWeight) {
- row.amount = _.multiply(row.billWeight, row.price).toFixed(2);
- }
- },
- //码单重量
- billWeightChange(row) {
- if (row.billWeight && row.price) {
- row.amount = _.multiply(row.billWeight, row.price).toFixed(2);
- }
- },
- //带出人民币
- currencyChange(type){
- if(type === "true"){
- if(this.form.currency === "CNY"){ //如果为人民币
- this.$set(this.form,"exchangeRate",1)
- }else if(this.form.currency === "USD"){
- this.$set(this.form,"exchangeRate",6.3686)
- }else{
- this.$set(this.form,"exchangeRate",7.1749)
- }
- }
- if(this.form.orderAmount && this.form.orderAmount){
- this.$set(this.form,"rmbAmount",_.multiply(this.form.orderAmount, this.form.exchangeRate).toFixed(2))
- }
- },
- //合计
- 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))
- },
- //件数
- // quantityChange(row) {
- // if (!row.orderQuantity) {
- // row.orderQuantity = "";
- // row.amount = 0
- // } else {
- // row.amount =_.multiply(row.orderQuantity,row.price).toFixed(2);
- // }
- // },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- let orderFeesList = this.$refs.feeInfo.submitData();
- for (let i = 0; i < orderFeesList.length; i++) {
- if (orderFeesList[i].corpId == null) {
- return this.$message.error(`请输入第${i + 1}行的结算中心`);
- }
- if (orderFeesList[i].price == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的价格`);
- }
- if (orderFeesList[i].orderQuantity == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的数量`);
- }
- }
- const orderFilesList = this.$refs.uploadFile.submitData();
- for (let j = 0; j < this.contactsData.length; j++) {
- if (this.contactsData[j].billNo === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的提单号`);
- }
- if (this.contactsData[j].priceCategory === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的货物品种`);
- }
- if (this.contactsData[j].itemType === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的规格型号`);
- }
- if (this.contactsData[j].orderQuantity === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的件数`);
- }
- if (this.contactsData[j].invoiceWeight === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的发票重量`);
- }
- if (this.contactsData[j].billWeight === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的码单重量`);
- }
- if (this.contactsData[j].price === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的单价`);
- }
- if (this.contactsData[j].amount === (null || "")) {
- return this.$message.error(`请输入采购明细第${j + 1}行的发票金额`);
- }
- }
- if(this.contactsData.length !==0){
- let invoiceList = this.contactsData.map(item => {
- if(item.amount){
- return parseFloat(item.amount);
- }else return 0
- });
- this.form.invoiceAmount = invoiceList.reduce((n,m) => n + m)
- }
- this.form.billNo = this.contactsData.map(item =>{return item.billNo}).join(",")
- let submitDto = {
- ...this.form,
- tradeType:"JK",
- billType:"CG",
- itemsVOList: this.contactsData,
- orderFeesList: orderFeesList,
- orderFilesList: orderFilesList
- };
- this.buttonLoading = true;
- submitData(submitDto).then(res => {
- if(res.data.success){
- this.form.id = res.data.data
- this.$message.success("操作成功!")
- detailListData(this.form.id).then(res => {
- this.form = res.data.data;
- this.oldForm = Object.assign({},res.data.data);
- this.configuration.dicData = this.form.corpsName
- this.pConfiguration.dicData = this.form.purchaserName
- if(res.data.data.itemsVOList){
- this.contactsData = res.data.data.itemsVOList
- this.oldContactsData = this.deepClone(res.data.data.itemsVOList)
- }
- if(res.data.data.orderFeesList){
- this.orderFeesList = res.data.data.orderFeesList
- this.oldFeesList = this.deepClone(res.data.data.orderFeesList)
- }
- if( res.data.data.orderFilesList){
- this.orderFilesList = res.data.data.orderFilesList
- this.oldFilesList = this.deepClone(res.data.data.orderFilesList)
- }
- })
- }
- }).finally(()=>{
- this.buttonLoading = false
- })
- if(status === true){
- this.$emit("goBack");
- }
- } else {
- return false;
- }
- });
- },
- selectionContact(row){
- this.selectContact = row;
- },
- beforePage(type){
- let id = this.selectContact.map(item=>{
- return item.id ? true : false
- })
- if(id.findIndex(item => item != true) == -1){
- const params = {
- id:this.form.id,
- orderItemIds:this.selectContact.map(i=>{return i.$index})
- }
- if(contrastObj(this.form,this.oldForm) || contrastList(this.contactsData,this.oldContactsData)
- || contrastList(this.orderFeesList,this.oldFeesList) || contrastList(this.orderFilesList,this.oldFilesList)
- ){
- this.$confirm("数据发生变化,请先提交保存?", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.editCustomer();
- })
- }else{
- if(type){
- //进入付款管理
- // if(this.$store.getters.payStatus){
- // this.$alert("付款页面已存在,请关闭付款页面再进行操作", "温馨提示", {
- // confirmButtonText: "确定",
- // type: 'warning',
- // callback: action => {
- // }
- // });
- // }else{
- // this.$router.$avueRouter.closeTag('/financialManagement/payment');
- // this.$router.push({
- // path: "/financialManagement/payment",
- // query: {params: params},
- // });
- // }
- }else{
- //进入收货单
- if(this.$store.getters.takeStatus){
- this.$alert("收货单页面已存在,请关闭收货单再进行操作", "温馨提示", {
- confirmButtonText: "确定",
- type: 'warning',
- callback: action => {
- }
- });
- }else{
- //关闭一下存在的列表页
- this.$router.$avueRouter.closeTag('/importTrade/receipt/index');
- this.$router.push({
- path: "/importTrade/receipt/index",
- query: {params: params},
- });
- }
- }
- }
- }else{
- this.$confirm("列表内存在新录入数据,是否先保存此数据?", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.editCustomer();
- })
- }
- },
- beforeBillData(bool,type){
- this.billType = type
- //采购明细提单号 list
- this.billData = {
- srcOrderno:this.form.orderNo,
- itemType:"采购",
- optionType:'JK',
- billNoList: this.contactsData.map(item =>{return item.billNo}),
- corpsName:this.form.corpsName,
- corpId:this.form.corpId,
- accDate:this.form.businesDate,
- currency:this.form.currency,
- exchangeRate:this.form.exchangeRate,
- srcParentId:this.form.id,
- }
- if(bool){ //申请货款
- this.billData.srcId = -1
- }
- },
- // 付款
- applyPayment(type){
- if(contrastObj(this.form,this.oldForm) || contrastList(this.contactsData,this.oldContactsData)
- || contrastList(this.orderFeesList,this.oldFeesList) || contrastList(this.orderFilesList,this.oldFilesList)
- ){
- this.$confirm("数据发生变化,请先提交保存?", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.editCustomer();
- })
- }else{
- this.beforeBillData(true,type);
- this.applyPaymentDialog = true;
- }
- },
- //新增商品明细保存触发
- rowSave(row, done, loading) {
- // this.contactsData.push(row)
- done()
- },
- //修改商品信息触发
- rowUpdate(row, index, done, loading) {
- done(row);
- },
- //删除商品信息触发
- rowDel(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- //商品判断是否需要调用删除接口
- if (row.id) {
- corpsattn(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);
- }
- }).finally(()=>{
- this.totalChange()
- })
- },
- //关闭账单
- choceFun(){
- this.applyPaymentDialog = false
- },
- //打开申请记录
- openApplicationDialog(){
- this.applicationDialog = true
- },
- //关闭申记录
- choceApplication(){
- this.applicationDialog = false
- },
- //商品编辑
- rowCell(row, index) {
- this.$refs.crudContact.rowCell(row, index)
- },
- //录入明细
- commoditySelection() {
- const params = {
- price:this.form.salesPrice
- }
- this.$refs.crudContact.rowCellAdd(params);
- },
- //点击行可编辑
- handleRowClick(row, event, column) {
- },
- backToList() {
- if(contrastObj(this.form,this.oldForm) || contrastList(this.contactsData,this.oldContactsData)
- || contrastList(this.orderFeesList,this.oldFeesList) || contrastList(this.orderFilesList,this.oldFilesList)
- ){
- 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(37),
- this.customerContact
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crudContact.$refs.dialogColumn.columnBox = false;
- }
- },
- },
- }
- </script>
- <style scoped lang="scss">
- .upper_right_button{
- display: flex;
- position: fixed;
- right: 12px;
- top: 47px;
- }
- .required_fields{
- color: #F56C6C;
- display:inline-block;
- width: 7%
- }
- ::v-deep .el-form-item {
- margin-bottom: 0;
- }
- //el-icon-plus avue-upload__icon
- .avue-upload /deep/ .avue-upload__icon {
- line-height: 178px !important;
- }
- ::v-deep .el-form-item__content{
- line-height: 32px;
- }
- </style>
|