123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765 |
- <template>
- <j-modal
- :title="title"
- :width="width"
- :visible="visible"
- :confirmLoading="confirmLoading"
- :keyboard="false"
- :forceRender="true"
- v-bind:prefixNo="prefixNo"
- fullscreen
- switchHelp
- switchFullscreen
- @cancel="handleCancel"
- :id="prefixNo"
- style="top: 20px; height: 95%"
- >
- <template slot="footer">
- <a-button @click="handleCancel">取消</a-button>
- <a-button v-if="billPrintFlag && isShowPrintBtn" @click="handlePrint('采购入库')">三联打印预览</a-button>
- <a-button v-if="checkFlag && isCanCheck" :loading="confirmLoading" @click="handleOkAndCheck">保存并审核</a-button>
- <a-button type="primary" :loading="confirmLoading" @click="handleOk">保存(Ctrl+S)</a-button>
- <!--发起多级审核-->
- <a-button v-if="!checkFlag" @click="handleWorkflow()" type="primary">提交流程</a-button>
- </template>
- <a-spin :spinning="confirmLoading">
- <a-form :form="form">
- <a-row class="form-row" :gutter="24">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="供应商"
- data-step="1"
- data-title="供应商"
- data-intro="供应商必须选择,如果发现需要选择的供应商尚未录入,可以在下拉框中点击新增供应商进行录入"
- >
- <a-select
- placeholder="请选择供应商"
- v-decorator="['organId', validatorRules.organId]"
- :disabled="!rowCanEdit"
- :dropdownMatchSelectWidth="false"
- showSearch
- optionFilterProp="children"
- >
- <div slot="dropdownRender" slot-scope="menu">
- <v-nodes :vnodes="menu" />
- <a-divider style="margin: 4px 0" />
- <div
- v-if="quickBtn.vendor"
- style="padding: 4px 8px; cursor: pointer"
- @mousedown="(e) => e.preventDefault()"
- @click="addSupplier"
- >
- <a-icon type="plus" /> 新增供应商
- </div>
- </div>
- <a-select-option v-for="(item, index) in supList" :key="index" :value="item.id">
- {{ item.supplier }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
- <j-date v-decorator="['operTime', validatorRules.operTime]" :show-time="true" />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="单据编号"
- data-step="2"
- data-title="单据编号"
- data-intro="单据编号自动生成、自动累加、开头是单据类型的首字母缩写,累加的规则是每次打开页面会自动占用一个新的编号"
- >
- <a-input placeholder="请输入单据编号" v-decorator.trim="['number']" />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="关联订单"
- data-step="3"
- data-title="关联订单"
- data-intro="采购入库单据可以通过关联订单来选择已录入的订单,选择之后会自动加载订单的内容,然后继续录入仓库等信息完成单据的提交,
- 提交之后原来的采购订单会对应的改变单据状态。另外本系统支持订单多次入库,只需选择订单之后修改对应的商品数量即可"
- >
- <a-input-search
- placeholder="请选择关联订单"
- v-decorator="['linkNumber']"
- @search="onSearchLinkNumber"
- :readOnly="true"
- />
- </a-form-item>
- </a-col>
- </a-row>
- <j-editable-table
- id="billModal"
- :ref="refKeys[0]"
- :loading="materialTable.loading"
- :columns="materialTable.columns"
- :dataSource="materialTable.dataSource"
- :minWidth="minWidth"
- :maxHeight="300"
- :rowNumber="false"
- :rowSelection="rowCanEdit"
- :actionButton="rowCanEdit"
- :dragSortAndNumber="rowCanEdit"
- @valueChange="onValueChange"
- @added="onAdded"
- @deleted="onDeleted"
- @focusChange="getUnitInfo"
- >
- <template #buttonAfter>
- <a-row
- v-if="false"
- :gutter="24"
- style="float: left; padding-bottom: 5px"
- data-step="4"
- data-title="扫码录入"
- data-intro="此功能支持扫码枪扫描商品条码进行录入"
- >
- <a-col v-if="scanStatus" :md="6" :sm="24">
- <a-button @click="scanEnter">扫码录入</a-button>
- </a-col>
- <a-col v-if="!scanStatus" :md="16" :sm="24" style="padding: 0 8px 0 12px">
- <a-input
- placeholder="请扫描商品条码并回车"
- v-model="scanBarCode"
- @pressEnter="scanPressEnter"
- ref="scanBarCode"
- />
- </a-col>
- <a-col v-if="!scanStatus" :md="6" :sm="24" style="padding: 0px 12px 0 0">
- <a-button @click="stopScan">收起扫码</a-button>
- </a-col>
- </a-row>
- <a-row :gutter="24" style="float: left; padding-bottom: 5px">
- <a-col :md="24" :sm="24">
- <a-button style="margin-left: 8px" @click="handleHistoryBillList"
- ><a-icon type="history" />历史单据</a-button
- >
- </a-col>
- </a-row>
- <a-row v-if="rowCanEdit" :gutter="24" style="float: left; padding-bottom: 5px; padding-left: 20px">
- <a-button icon="import" @click="onImport(prefixNo)">导入明细</a-button>
- </a-row>
- </template>
- <template #depotBatchSet>
- <a-icon type="down" @click="handleBatchSetDepot" />
- </template>
- <template #depotAdd>
- <a-divider v-if="quickBtn.depot" style="margin: 4px 0" />
- <div v-if="quickBtn.depot" style="padding: 4px 8px; cursor: pointer" @click="addDepot">
- <a-icon type="plus" /> 新增仓库
- </div>
- </template>
- <template #unit="{ handleChange, handleFocus, value }">
- <a-select
- placeholder="请选择"
- v-decorator="['unit']"
- :dropdownMatchSelectWidth="false"
- showSearch
- :allowClear="false"
- optionFilterProp="children"
- :value="value"
- @change="($event) => handleChange($event)"
- @focus="($event) => handleFocus($event)"
- >
- <a-select-option v-for="(item, index) in unitList" :key="index" :value="item.name">
- {{ item.name }}
- </a-select-option>
- </a-select>
- </template>
- </j-editable-table>
- <a-row class="form-row" :gutter="24">
- <a-col :lg="24" :md="24" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="{ xs: { span: 24 }, sm: { span: 24 } }" label="">
- <a-textarea :rows="1" placeholder="请输入备注" v-decorator="['remark']" style="margin-top: 8px" />
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="24">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="优惠率"
- data-step="5"
- data-title="优惠率"
- data-intro="针对单据明细中商品总金额进行优惠的比例"
- >
- <a-input
- style="width: 80%"
- placeholder="请输入优惠率"
- v-decorator.trim="['discount']"
- suffix="%"
- @change="onChangeDiscount"
- />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="付款优惠"
- data-step="6"
- data-title="付款优惠"
- data-intro="针对单据明细中商品总金额进行优惠的金额"
- >
- <a-input
- placeholder="请输入付款优惠"
- v-decorator.trim="['discountMoney']"
- @change="onChangeDiscountMoney"
- />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="优惠后金额"
- data-step="7"
- data-title="优惠后金额"
- data-intro="针对单据明细中商品总金额进行优惠后的金额"
- >
- <a-input placeholder="请输入优惠后金额" v-decorator.trim="['discountLastMoney']" :readOnly="true" />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="其它费用"
- data-step="8"
- data-title="其它费用"
- data-intro="比如快递费、油费、过路费"
- >
- <a-input placeholder="请输入其它费用" v-decorator.trim="['otherMoney']" @change="onChangeOtherMoney" />
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="24">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="结算账户"
- data-step="9"
- data-title="结算账户"
- data-intro="如果在下拉框中选择多账户,则可以通过多个结算账户进行结算"
- >
- <a-select
- style="width: 80%"
- placeholder="请选择结算账户"
- v-decorator="['accountId', validatorRules.accountId]"
- :dropdownMatchSelectWidth="false"
- allowClear
- @select="selectAccount"
- >
- <div slot="dropdownRender" slot-scope="menu">
- <v-nodes :vnodes="menu" />
- <a-divider style="margin: 4px 0" />
- <div
- v-if="quickBtn.account"
- style="padding: 4px 8px; cursor: pointer"
- @mousedown="(e) => e.preventDefault()"
- @click="addAccount"
- >
- <a-icon type="plus" /> 新增结算账户
- </div>
- </div>
- <a-select-option v-for="(item, index) in accountList" :key="index" :value="item.id">
- {{ item.name }}
- </a-select-option>
- </a-select>
- <a-tooltip title="多账户明细">
- <a-button
- type="default"
- icon="folder"
- style="margin-left: 8px"
- size="small"
- v-show="manyAccountBtnStatus"
- @click="handleManyAccount"
- />
- </a-tooltip>
- </a-form-item>
- </a-col>
- <a-col v-if="depositStatus" :lg="6" :md="12" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="扣除订金">
- <a-input v-decorator.trim="['deposit']" @change="onChangeDeposit" />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次付款">
- <a-input
- placeholder="请输入本次付款"
- v-decorator.trim="['changeAmount', validatorRules.changeAmount]"
- @change="onChangeChangeAmount"
- />
- </a-form-item>
- </a-col>
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="本次欠款"
- data-step="10"
- data-title="本次欠款"
- data-intro="欠款产生的费用,后续可以在付款单进行支付"
- >
- <a-input
- placeholder="请输入本次欠款"
- v-decorator.trim="['debt', validatorRules.price]"
- :readOnly="true"
- />
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="24">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="附件"
- data-step="11"
- data-title="附件"
- data-intro="可以上传与单据相关的图片、文档,支持多个文件"
- >
- <j-upload v-model="fileList" bizPath="bill"></j-upload>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="24">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- label="凭证图片"
- data-step="11"
- data-title="附件"
- data-intro="可以上传与单据相关的图片、文档,支持多个文件"
- >
- <j-image-upload v-model="imageList" bizPath="material" text="上传图片" isMultiple></j-image-upload>
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- </a-spin>
- <many-account-modal ref="manyAccountModalForm" @ok="manyAccountModalFormOk"></many-account-modal>
- <import-item-modal ref="importItemModalForm" @ok="importItemModalFormOk"></import-item-modal>
- <link-bill-list ref="linkBillList" @ok="linkBillListOk"></link-bill-list>
- <vendor-modal ref="vendorModalForm" @ok="vendorModalFormOk"></vendor-modal>
- <depot-modal ref="depotModalForm" @ok="depotModalFormOk"></depot-modal>
- <account-modal ref="accountModalForm" @ok="accountModalFormOk"></account-modal>
- <batch-set-depot ref="batchSetDepotModalForm" @ok="batchSetDepotModalFormOk"></batch-set-depot>
- <history-bill-list ref="historyBillListModalForm"></history-bill-list>
- <workflow-iframe ref="modalWorkflow" @ok="workflowModalFormOk"></workflow-iframe>
- <bill-print-iframe ref="modalPrint"></bill-print-iframe>
- </j-modal>
- </template>
- <script>
- import pick from 'lodash.pick'
- import ManyAccountModal from '../dialog/ManyAccountModal'
- import ImportItemModal from '../dialog/ImportItemModal'
- import LinkBillList from '../dialog/LinkBillList'
- import VendorModal from '../../system/modules/VendorModal'
- import DepotModal from '../../system/modules/DepotModal'
- import AccountModal from '../../system/modules/AccountModal'
- import BatchSetDepot from '../dialog/BatchSetDepot'
- import HistoryBillList from '../dialog/HistoryBillList'
- import WorkflowIframe from '@/components/tools/WorkflowIframe'
- import BillPrintIframe from '../dialog/BillPrintIframe'
- import { FormTypes } from '@/utils/JEditableTableUtil'
- import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
- import { BillModalMixin } from '../mixins/BillModalMixin'
- import { getMpListShort, changeListFmtMinus, handleIntroJs } from '@/utils/util'
- import JUpload from '@/components/jeecg/JUpload'
- import JDate from '@/components/jeecg/JDate'
- import Vue from 'vue'
- import JImageUpload from '@/components/jeecg/JImageUpload.vue'
- export default {
- name: 'PurchaseInModal',
- mixins: [JEditableTableMixin, BillModalMixin],
- components: {
- ManyAccountModal,
- ImportItemModal,
- LinkBillList,
- VendorModal,
- DepotModal,
- AccountModal,
- BatchSetDepot,
- HistoryBillList,
- WorkflowIframe,
- BillPrintIframe,
- JUpload,
- JDate,
- VNodes: {
- functional: true,
- render: (h, ctx) => ctx.props.vnodes,
- },
- JImageUpload,
- },
- data() {
- return {
- title: '操作',
- width: '1600px',
- moreStatus: false,
- // 新增时子表默认添加几行空数据
- addDefaultRowNum: 1,
- visible: false,
- operTimeStr: '',
- prefixNo: 'CGRK',
- depositStatus: false,
- fileList: [],
- imageList: [],
- rowCanEdit: true,
- model: {},
- labelCol: {
- xs: { span: 24 },
- sm: { span: 8 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- refKeys: ['materialDataTable'],
- activeKey: 'materialDataTable',
- materialTable: {
- loading: false,
- dataSource: [],
- columns: [
- // {
- // title: '仓库名称',
- // key: 'depotId',
- // width: '8%',
- // type: FormTypes.select,
- // placeholder: '请选择${title}',
- // options: [],
- // allowSearch: true,
- // disabled: true,
- // validateRules: [{ required: true, message: '${title}不能为空' }],
- // },
- {
- title: '批次号',
- key: 'batchNumber',
- width: '12%',
- type: FormTypes.popupJsh,
- kind: 'material',
- multi: true,
- newBatch: true,
- validateRules: [{ required: true, message: '${title}不能为空' }],
- },
- { title: '名称', key: 'name', width: '7%', type: FormTypes.normal },
- { title: '规格', key: 'standard', width: '6%', type: FormTypes.normal },
- { title: '生产日期', key: 'productionDate', width: '9%', type: FormTypes.normal, disabled: true },
- { title: '保质期', key: 'expiryNum', width: '6%', type: FormTypes.normal },
- { title: '商品条码', key: 'barCode', width: '6%', type: FormTypes.normal },
- { title: '仓库名', key: 'depotId', width: '6%', type: FormTypes.select, disabled: true },
- { title: '仓库货架', key: 'position', width: '6%', type: FormTypes.normal },
- { title: '包装规格', key: 'unitName', width: '6%', type: FormTypes.input },
- { title: '型号', key: 'model', width: '9%', type: FormTypes.normal },
- { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal },
- { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal },
- { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal },
- { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal },
- { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal },
- {
- title: '单位',
- key: 'unit',
- width: '6%',
- type: FormTypes.slot,
- options: [],
- allowClear: false,
- slotName: 'unit',
- },
- { title: '单位id', key: 'unitId', width: '4%', type: FormTypes.hidden },
- { title: '单位列表', key: 'unitList', width: '5%', type: FormTypes.hidden },
- { title: '序列号', key: 'snList', width: '12%', type: FormTypes.popupJsh, kind: 'snAdd', multi: true },
- { title: '有效期', key: 'expirationDate', width: '7%', type: FormTypes.date },
- { title: '多属性', key: 'sku', width: '9%', type: FormTypes.normal },
- { title: '原数量', key: 'preNumber', width: '4%', type: FormTypes.normal },
- { title: '已入库', key: 'finishNumber', width: '4%', type: FormTypes.normal },
- {
- title: '入库数量',
- key: 'operNumber',
- width: '5%',
- type: FormTypes.inputNumber,
- statistics: true,
- validateRules: [{ required: true, message: '${title}不能为空' }],
- },
- { title: '单价', key: 'unitPrice', width: '4%', type: FormTypes.inputNumber },
- { title: '金额', key: 'allPrice', width: '5%', type: FormTypes.inputNumber, statistics: true },
- { title: '税率', key: 'taxRate', width: '4%', type: FormTypes.inputNumber, placeholder: '%' },
- {
- title: '税额',
- key: 'taxMoney',
- width: '5%',
- type: FormTypes.inputNumber,
- readonly: true,
- statistics: true,
- },
- { title: '价税合计', key: 'taxLastMoney', width: '7%', type: FormTypes.inputNumber, statistics: true },
- {
- title: '实际入库数量',
- key: 'actualQuantityInStorage',
- width: '9%',
- type: FormTypes.inputNumber,
- validateRules: [{ required: true, message: '实际入库数量不能为空' }],
- },
- { title: '入库差异', key: 'warehousingVariance', width: '9%', type: FormTypes.input },
- { title: '入库差异原因', key: 'reasonOfDifference', width: '9%', type: FormTypes.input },
- {
- title: '入库人',
- key: 'warehousingUser',
- width: '9%',
- type: FormTypes.input,
- validateRules: [{ required: true, message: '入库人不能为空' }],
- },
- { title: '入库时间', key: 'warehousingTime', width: '9%', type: FormTypes.date },
- { title: '备注', key: 'remark', width: '6%', type: FormTypes.input },
- { title: '关联id', key: 'linkId', width: '5%', type: FormTypes.hidden },
- ],
- },
- confirmLoading: false,
- validatorRules: {
- operTime: {
- rules: [{ required: true, message: '请输入单据日期!' }],
- },
- organId: {
- rules: [{ required: true, message: '请选择供应商!' }],
- },
- accountId: {
- rules: [{ required: true, message: '请选择结算账户!' }],
- },
- changeAmount: {
- rules: [
- { required: true, message: '请输入金额,如果为空请填0!' },
- { pattern: /^(([0-9][0-9]*)|([0]\.\d{0,4}|[0-9][0-9]*\.\d{0,4}))$/, message: '金额格式不正确!' },
- ],
- },
- },
- url: {
- add: '/depotHead/addDepotHeadAndDetail',
- edit: '/depotHead/updateDepotHeadAndDetail',
- detailList: '/depotItem/getDetailList',
- },
- unitList: [],
- }
- },
- created() {},
- methods: {
- //调用完edit()方法之后会自动调用此方法
- editAfter() {
- this.billStatus = '0'
- this.currentSelectDepotId = ''
- this.rowCanEdit = true
- this.materialTable.columns[0].type = FormTypes.popupJsh
- this.changeColumnHide()
- this.changeFormTypes(this.materialTable.columns, 'snList', 0)
- // this.changeFormTypes(this.materialTable.columns, 'batchNumber', 0)
- this.changeFormTypes(this.materialTable.columns, 'expirationDate', 0)
- this.changeFormTypes(this.materialTable.columns, 'preNumber', 0)
- this.changeFormTypes(this.materialTable.columns, 'finishNumber', 0)
- if (this.action === 'add') {
- this.depositStatus = false
- this.addInit(this.prefixNo)
- this.fileList = []
- this.imageList = []
- this.$nextTick(() => {
- handleIntroJs(this.prefixNo, 1)
- })
- } else {
- if (this.model.linkNumber) {
- this.rowCanEdit = false
- this.materialTable.columns[0].type = FormTypes.normal
- }
- this.model.operTime = this.model.operTimeStr
- if (this.model.deposit) {
- this.depositStatus = true
- } else {
- this.depositStatus = false
- this.model.deposit = 0
- }
- this.model.debt = (
- this.model.discountLastMoney +
- this.model.otherMoney -
- this.model.deposit -
- this.model.changeAmount
- ).toFixed(2)
- if (this.model.accountId == null) {
- this.model.accountId = 0
- this.manyAccountBtnStatus = true
- this.accountIdList = this.model.accountIdList
- this.accountMoneyList = this.model.accountMoneyList
- } else {
- this.manyAccountBtnStatus = false
- }
- this.fileList = this.model.fileName
- this.imageList = this.model.voucherPicture
- this.$nextTick(() => {
- this.form.setFieldsValue(
- pick(
- this.model,
- 'organId',
- 'operTime',
- 'number',
- 'linkNumber',
- 'remark',
- 'discount',
- 'discountMoney',
- 'discountLastMoney',
- 'otherMoney',
- 'accountId',
- 'deposit',
- 'changeAmount',
- 'debt'
- )
- )
- })
- // 加载子表数据
- let params = {
- headerId: this.model.id,
- mpList: getMpListShort(Vue.ls.get('materialPropertyList')), //扩展属性
- linkType: 'basic',
- }
- let url = this.readOnly ? this.url.detailList : this.url.detailList
- this.requestSubTableData(url, params, this.materialTable)
- }
- //复制新增单据-初始化单号和日期
- if (this.action === 'copyAdd') {
- this.model.id = ''
- this.model.tenantId = ''
- this.copyAddInit(this.prefixNo)
- }
- this.initSystemConfig()
- this.initSupplier(0)
- this.initDepot()
- this.initAccount(0)
- this.initPlatform()
- this.initQuickBtn()
- },
- //提交单据时整理成formData
- classifyIntoFormData(allValues) {
- let totalPrice = 0
- let billMain = Object.assign(this.model, allValues.formValue)
- let detailArr = allValues.tablesValue[0].values
- billMain.type = '入库'
- billMain.subType = '采购'
- for (let item of detailArr) {
- totalPrice += item.allPrice - 0
- // delete item.unitList
- }
- billMain.totalPrice = 0 - totalPrice
- billMain.changeAmount = 0 - billMain.changeAmount
- if (billMain.accountId === 0) {
- billMain.accountId = ''
- }
- this.accountMoneyList = changeListFmtMinus(this.accountMoneyList)
- billMain.accountIdList = this.accountIdList.length > 0 ? JSON.stringify(this.accountIdList) : ''
- billMain.accountMoneyList = this.accountMoneyList.length > 0 ? JSON.stringify(this.accountMoneyList) : ''
- if (this.fileList && this.fileList.length > 0) {
- billMain.fileName = this.fileList
- } else {
- billMain.fileName = ''
- }
- if (this.imageList && this.imageList.length > 0) {
- billMain.voucherPicture = this.imageList
- } else {
- billMain.voucherPicture = ''
- }
- if (this.model.id) {
- billMain.id = this.model.id
- }
- billMain.status = this.billStatus
- return {
- info: JSON.stringify(billMain),
- rows: JSON.stringify(detailArr),
- }
- },
- handleHistoryBillList() {
- let organId = this.form.getFieldValue('organId')
- this.$refs.historyBillListModalForm.show('入库', '采购', '供应商', organId)
- this.$refs.historyBillListModalForm.disableSubmit = false
- },
- onSearchLinkNumber() {
- this.$refs.linkBillList.show('其它', '采购订单', '供应商', '1,3')
- this.$refs.linkBillList.title = '请选择采购订单'
- },
- linkBillListOk(selectBillDetailRows, linkNumber, organId, discountMoney, deposit, remark, depotId, accountId) {
- let that = this
- this.rowCanEdit = false
- this.materialTable.columns[1].type = FormTypes.normal
- this.changeFormTypes(this.materialTable.columns, 'preNumber', 1)
- this.changeFormTypes(this.materialTable.columns, 'finishNumber', 1)
- if (selectBillDetailRows && selectBillDetailRows.length > 0) {
- let listEx = []
- let allTaxLastMoney = 0
- for (let j = 0; j < selectBillDetailRows.length; j++) {
- let info = selectBillDetailRows[j]
- if (info.finishNumber > 0) {
- info.operNumber = info.preNumber - info.finishNumber
- info.allPrice = info.operNumber * info.unitPrice - 0
- let taxRate = info.taxRate - 0
- info.taxMoney = ((info.allPrice * taxRate) / 100).toFixed(2) - 0
- info.taxLastMoney = (info.allPrice + info.taxMoney).toFixed(2) - 0
- }
- info.linkId = info.id
- allTaxLastMoney += info.taxLastMoney
- listEx.push(info)
- this.changeColumnShow(info)
- }
- this.materialTable.dataSource = listEx
- ///给优惠后金额重新赋值
- allTaxLastMoney = allTaxLastMoney ? allTaxLastMoney : 0
- let discount = 0
- if (allTaxLastMoney !== 0) {
- discount = ((discountMoney / allTaxLastMoney) * 100).toFixed(2) - 0
- }
- let discountLastMoney = (allTaxLastMoney - discountMoney).toFixed(2) - 0
- let changeAmount = discountLastMoney
- if (deposit) {
- this.depositStatus = true
- changeAmount = (discountLastMoney - deposit).toFixed(2) - 0
- }
- this.$nextTick(() => {
- this.form.setFieldsValue({
- organId: organId,
- linkNumber: linkNumber,
- discount: discount,
- discountMoney: discountMoney,
- discountLastMoney: discountLastMoney,
- deposit: deposit,
- changeAmount: changeAmount,
- accountId: accountId,
- remark: remark,
- })
- })
- //判断后进行仓库的切换
- if (depotId) {
- setTimeout(function () {
- that.batchSetDepotModalFormOk(depotId)
- }, 1000)
- }
- }
- },
- getUnitInfo(val) {
- this.unitList = val
- },
- },
- }
- </script>
- <style scoped></style>
|