123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- <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="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"
- @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]" 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"/>
- <selectComponent v-else-if="item.prop === 'salesCompany'" v-model="form[item.prop]" :configuration="sConfiguration"/>
- <el-input type="age" v-else v-model="form[item.prop]" :disabled="item.disabled?true:false" placeholder="请输入" size="small" 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"
- @row-del="rowDel"
- >
- <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 }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.actualQuantity"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @input="quantityChange(row)"
- ></el-input>
- <span v-else>{{ row.actualQuantity }}</span>
- </template>
- <template slot="priceCategory" slot-scope="{row,index}">
- <span style="margin-left: 12px;padding-top: 2px">{{ row.priceCategoryNames }}</span>
- <el-button v-if="row.$cellEdit" type="text" size="mini" style="float: right" @click="choice(row)">选择</el-button>
- </template>
- <template slot-scope="{row,index}" slot="menu">
- <el-button
- type="text"
- size="small"
- @click="rowCell(row,index)"
- >{{ row.$cellEdit ? '保存' : '修改' }}
- </el-button>
- </template>
- <template slot="menuLeft" slot-scope="{size}">
- <el-button type="primary"
- icon="el-icon-plus"
- size="small"
- @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>
- <el-button type="primary" @click="importGoods" v-if="commodityData !== true && selectKind == -1" :disabled="tableData.length !== 1" >导入</el-button>
- <el-button type="primary" @click="importChoice" v-if="commodityData === true && selectKind == -1"
- :disabled="tableData.length !== 1">导入</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import customerContact from "./config/customerContact.json"
- import {detailInvoiceList,
- submitInvoiceList,
- removeGoodsItem,} from "@/api/importTrade/invoice"
- import {getDeptLazyTree } from "@/api/basicData/basicFeesDesc";
- import commodity from "./config/commodity.json"
- import {corpsbank, getList} from "@/api/basicData/deliveryNotice"
- import upLoadOption from "../../exportTrade/purchaseContract/config/uploadList.json";
- import {getSysNo} from "@/api/importTrade/purchase";
- export default {
- name: "detailsPageEdit",
- props: {
- detailData: {
- type: Object
- }
- },
- data() {
- return {
- form: {},
- disabled: false,
- customerContact: customerContact,
- contactsForm: {},
- contactsData: [],
- selectKind:-1,
- configuration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- sConfiguration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- basicData: {
- column: [
- {
- label: '系统号',
- prop: 'sysNo',
- disabled:true,
- }, {
- label: '合同号',
- prop: 'orderNo',
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '发货日期',
- prop: 'businessDate',
- type:'datetime',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '业务员',
- prop: 'saleman',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '销售公司',
- prop: 'salesCompany',
- type:'component',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '工厂/贸易商名称',
- prop: 'corpId',
- type:'component',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '仓库名称',
- prop: 'storageId',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '发票重量',
- prop: 'invoiceWeight',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '备注',
- prop: 'deliveryRemarks',
- span: 24,
- mock: {
- type: 'county'
- }
- }
- ]
- },
- //上传文件
- upLoadOption: upLoadOption,
- upLoadData:[],
- 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: [],
- }
- },
- created() {
- if (this.detailData.id) {
- let id = this.detailData.id.replace(/\"/g, "")
- detailInvoiceList(id).then(res => {
- this.form = res.data.data;
- this.configuration.dicData = this.form.companyName
- this.sConfiguration.dicData = this.form.salesCompanyNameList
- this.contactsData = this.form.deliveryItemsList
- })
- }else {
- getSysNo("JK-FH").then(res => {
- this.$set(this.form, "sysNo", res.data.data)
- })
- }
- if (this.detailData.form) {
- this.form = JSON.parse(this.detailData.form);
- this.form.id = null
- this.form.orderItemsList.forEach(item =>{
- delete item.id
- })
- this.contactsData = this.form.orderItemsList
- delete this.form.orderItemsList
- getSysNo("JK-FH").then(res => {
- this.$set(this.form, "sysNo", res.data.data)
- })
- }
- },
- methods: {
- //单价
- priceChange(row) {
- if (!row.price) {
- row.price = "";
- row.contractAmount = 0
- } else {
- row.contractAmount = (row.actualQuantity * row.price).toFixed(2);
- }
- },
- //件数
- quantityChange(row) {
- if (!row.actualQuantity) {
- row.actualQuantity = "";
- row.contractAmount = 0
- } else {
- row.contractAmount = (row.actualQuantity * row.price).toFixed(2);
- }
- },
- //选择货物品种
- choice(row){
- this.dialogVisible = true;
- this.selectKind = row.$index;
- },
- //选择货品
- commodityConfirm(){
- if(this.tableData){
- this.contactsData[this.selectKind].priceCategory = this.tableData[0].id;
- this.$set(this.contactsData[this.selectKind],'priceCategoryNames',this.tableData[0].cname)
- this.dialogVisible = !this.dialogVisible
- this.selectKind = -1
- }
- },
- //新增商品信息保存触发
- rowSave(row, done, loading) {
- console.log(row)
- console.log(this.contactsData)
- // this.contactsData.push(row)
- done()
- },
- //点击行可编辑
- handleRowClick(row, event, column) {
- console.log(row.$index)
- },
- //商品编辑
- rowCell(row, index) {
- console.log(row)
- 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 == null) {
- return this.$message.error(`请输入第${i + 1}行的提单号`);
- }
- if (this.contactsData[i].contractNumber == null) {
- return this.$message.error(`请输入第${i + 1}行的合同号`);
- }
- }
- if (valid) {
- let submitDto = {
- ...this.form,
- deliveryItemsList: this.contactsData
- };
- submitInvoiceList(submitDto).then(res => {
- if(res.data.success){
- this.$message.success("操作成功!")
- detailInvoiceList(res.data.data.id).then(res => {
- this.form = res.data.data;
- this.configuration.dicData = this.form.companyName
- this.sConfiguration.dicData = this.form.salesCompanyNameList
- this.contactsData = this.form.deliveryItemsList
- })
- }
- })
- if(status === true){
- this.$emit("goBack");
- }
- } else {
- return 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);
- }
- })
- },
- //点击商品明细选择触发
- commodityChoice(row) {
- this.dialogVisible = !this.dialogVisible
- this.commodityData = true
- this.choiceIndexT = row.$index
- },
- //商品新增触发
- commoditySelection() {
- 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() {
- // this.contactsData = this.contactsData.concat(this.tableData)
- 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() {
- this.$confirm("是否保存当前页面?", "提示", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.editCustomer(true)
- }).catch(() => {
- this.$emit("goBack");
- })
- }
- },
- }
- </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;
- }
- .add-customer-btn-two {
- position: fixed;
- right: 150px;
- top: 115px;
- }
- .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;
- }
- .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;
- }
- }
- }
- </style>
|