|
@@ -0,0 +1,539 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <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="goBack(0)">返回列表
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <div class="add-customer-btn">
|
|
|
+ <el-button size="small" style="margin-right: 8px" :disabled="!form.id"
|
|
|
+ @click="$refs.print.openDialog()">打印账单
|
|
|
+ </el-button>
|
|
|
+ <el-button size="small" style="margin-right: 8px" :disabled="!form.id"
|
|
|
+ @click="$refs.report.openDialog()">报表设计
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="!editDisabled" class="el-button--small-yh" type="success" size="small"
|
|
|
+ :disabled="isSaveBtn || form.orderStatus == '已确认'" @click="submitFee">确认收款
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="!editDisabled" class="el-button--small-yh" type="warning" size="small"
|
|
|
+ :disabled="isSaveBtn || form.orderStatus != '已确认'" @click="revokeFee">撤销收款
|
|
|
+ </el-button>
|
|
|
+ <el-button class="el-button--small-yh" style="margin-left: 6px;" type="primary" size="small"
|
|
|
+ v-if="editDisabled"
|
|
|
+ :disabled="showLock || !(roleName.indexOf('admin') != -1 || roleName.indexOf('允许修改他人业务') != -1 || saberUserInfo.user_id == form.createUser)"
|
|
|
+ @click="inEdit">编 辑
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="!editDisabled" class="el-button--small-yh" style="margin-left: 6px;" type="primary"
|
|
|
+ size="small" :disabled="isSaveBtn" @click="submit">保 存
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 50px">
|
|
|
+ <trade-card title="基础信息">
|
|
|
+ <avue-form :option="optionForm" v-model="form" ref="form">
|
|
|
+ <tempalte slot="remarks">
|
|
|
+ <el-input type="textarea" :rows="2" placeholder="请输入 备注" v-model="form.remarks" :disabled="editDisabled">
|
|
|
+ </el-input>
|
|
|
+ </tempalte>
|
|
|
+ </avue-form>
|
|
|
+ </trade-card>
|
|
|
+ <trade-card title="费用明细">
|
|
|
+ <fee-infosimple feeType="D" :form="form" :disabled="editDisabled" @getDetails="getDetails"></fee-infosimple>
|
|
|
+ </trade-card>
|
|
|
+ <containerTitle title="上传附件"></containerTitle>
|
|
|
+ <c-upload :data="form.filesCenterList" :enumerationValue="76"
|
|
|
+ deleteUrl="/api/blade-los/filescenter/remove" display :disabled="editDisabled"></c-upload>
|
|
|
+ <business-reports :id="form.id" ref="print" businessValue="MYDL-STL" :type="true"></business-reports>
|
|
|
+ <reports :id="form.id" :assemblyForm="form" businessValue="MYDL-STL" ref="report"></reports>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { submit, getDetail, confirmCollectionOfPayments, revokeCollectionOfPayments } from "@/api/tradeAgency/exchangePurchasing";
|
|
|
+import { contrastObj, contrastList } from "@/util/contrastData";
|
|
|
+import feeInfosimple from "@/components/tradeAgency/fee-infosimple";
|
|
|
+import dicSelect from "@/components/dicSelect/main";
|
|
|
+import businessReports from "@/components/tradeAgency/businessReports.vue";
|
|
|
+import reports from "@/components/tradeAgency/reports.vue";
|
|
|
+import { bcurrencyGetExrate } from "@/api/iosBasicData/rateManagement";
|
|
|
+import { dateFormat } from "@/util/date";
|
|
|
+import _ from "lodash";
|
|
|
+export default {
|
|
|
+ name: "detailsPage",
|
|
|
+
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ editDisabled: false,
|
|
|
+ form: {},
|
|
|
+ oldForm: {},
|
|
|
+ optionForm: {
|
|
|
+ menuBtn: false,
|
|
|
+ span: 8,
|
|
|
+ disabled: true,
|
|
|
+ column: [
|
|
|
+ {
|
|
|
+ label: '客户',
|
|
|
+ prop: "corpName",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '业务号',
|
|
|
+ prop: "businessNo",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '合同号',
|
|
|
+ prop: "contractNo",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '提单号',
|
|
|
+ prop: "billNoJoin",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '业务日期',
|
|
|
+ prop: "businessDate",
|
|
|
+ type: "date",
|
|
|
+ format: "yyyy-MM-dd",
|
|
|
+ valueFormat: "yyyy-MM-dd HH:mm:ss",
|
|
|
+ disabled: false,
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ message: " ",
|
|
|
+ trigger: "blur"
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '金额',
|
|
|
+ prop: "goodsValue",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '付汇美元金额',
|
|
|
+ prop: "paymentInUsd",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '当天汇率',
|
|
|
+ prop: "exchangeRate",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '实付金额',
|
|
|
+ prop: "actualAmount",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '邮电费',
|
|
|
+ prop: "postElectricFee",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '手续费',
|
|
|
+ prop: "serviceCharge",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '申报单号',
|
|
|
+ prop: "declarationNumber",
|
|
|
+ disabled: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '国内收货人',
|
|
|
+ prop: "domesticConsigneeCname",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '银行助记码',
|
|
|
+ prop: "domesticBankMnemonicCode",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '银行',
|
|
|
+ prop: "domesticBank",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '币别',
|
|
|
+ prop: "domesticCurrency",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '所属公司',
|
|
|
+ prop: "affiliatedCompanyName",
|
|
|
+ disabled: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '付费方式',
|
|
|
+ prop: "advanceRatio",
|
|
|
+ type: "select",
|
|
|
+ dicUrl: "/api/blade-system/dict-biz/dictionary?code=advance_ratio",
|
|
|
+ props: {
|
|
|
+ label: "dictValue",
|
|
|
+ value: "dictValue"
|
|
|
+ },
|
|
|
+ disabled: false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '备注',
|
|
|
+ prop: "remarks",
|
|
|
+ type: 'textarea',
|
|
|
+ span: 12,
|
|
|
+ disabled: false,
|
|
|
+ minRows: 2,
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ option: {},
|
|
|
+ optionBack: {
|
|
|
+ height: 'auto',
|
|
|
+ calcHeight: 30,
|
|
|
+ menuWidth: 140,
|
|
|
+ border: true,
|
|
|
+ index: true,
|
|
|
+ addBtn: false,
|
|
|
+ viewBtn: false,
|
|
|
+ editBtn: false,
|
|
|
+ delBtn: false,
|
|
|
+ menu: false,
|
|
|
+ refreshBtn: false,
|
|
|
+ align: 'center',
|
|
|
+ column: [
|
|
|
+ {
|
|
|
+ label: "提单号",
|
|
|
+ prop: "billNo",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "箱号",
|
|
|
+ prop: "boxNo",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "铅封号",
|
|
|
+ prop: "leadSealNo",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "开船日期",
|
|
|
+ prop: "etd",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "预计到港",
|
|
|
+ prop: "estimateReachHarbor",
|
|
|
+ width: "120",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "HSCODE",
|
|
|
+ prop: "hsCode",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "厂号",
|
|
|
+ prop: "factoryNumber",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "标签品名",
|
|
|
+ prop: "labelProductName",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "商品类别",
|
|
|
+ prop: "goodsType",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "件数",
|
|
|
+ prop: "quantity",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "净重(kg)",
|
|
|
+ prop: "netWeight",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "单价",
|
|
|
+ prop: "price",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "毛重(kg)",
|
|
|
+ prop: "grossWeight",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "金额",
|
|
|
+ prop: "amount",
|
|
|
+ overHidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "备注",
|
|
|
+ prop: "remarks",
|
|
|
+ overHidden: true
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ showLock: false,
|
|
|
+ roleName: [],
|
|
|
+ saberUserInfo: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ dicSelect,
|
|
|
+ feeInfosimple,
|
|
|
+ businessReports,
|
|
|
+ reports
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ detailData: Object
|
|
|
+ },
|
|
|
+ async created() {
|
|
|
+ this.roleName = localStorage.getItem('roleName').split(',')
|
|
|
+ this.saberUserInfo = JSON.parse(localStorage.getItem("saber-userInfo")).content
|
|
|
+ this.option = await this.getColumnData(this.getColumnName(384), this.optionBack);
|
|
|
+ if (this.detailData.id) {
|
|
|
+ this.showLock = true
|
|
|
+ this.editDisabled = true
|
|
|
+ this.getDetails(this.detailData.id)
|
|
|
+ }
|
|
|
+ if (this.$route.query.billNo) {
|
|
|
+ this.showLock = true
|
|
|
+ this.getDetails(this.$route.query.billNo)
|
|
|
+ }
|
|
|
+ if (this.$route.query.params) {
|
|
|
+ this.showLock = true
|
|
|
+ this.getDetails(this.$route.query.params)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ inLock() {
|
|
|
+ const data = {
|
|
|
+ moduleName: "MYDL-D",
|
|
|
+ tableName: "MYDL-D_Detail",
|
|
|
+ billId: this.form.id,
|
|
|
+ no: localStorage.getItem("browserID"),
|
|
|
+ billNo: this.form.contractNo
|
|
|
+ };
|
|
|
+ this.inDetailsKey(this.$route.name, {
|
|
|
+ moduleName: "MYDL-D",
|
|
|
+ tableName: "MYDL-D_Detail",
|
|
|
+ billId: this.form.id,
|
|
|
+ billNo: this.form.contractNo
|
|
|
+
|
|
|
+ });
|
|
|
+ this.checkLock(data).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.onLock(data).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.showLock = false
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getDetails(id) {
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
+ getDetail({ id: id }).then(res => {
|
|
|
+ if (res.data.data.orderStatus == '已确认') this.optionForm.disabled = true
|
|
|
+ this.form = res.data.data
|
|
|
+ this.oldForm = this.deepClone(res.data.data)
|
|
|
+ this.inLock()
|
|
|
+ // this.form.filesCenterList=[]
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ inEdit() {
|
|
|
+ this.editDisabled = false
|
|
|
+ if (this.form.orderStatus != '已确认') {
|
|
|
+ this.optionForm.disabled = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ submit(type) {
|
|
|
+ this.$refs["form"].validate((valid, done) => {
|
|
|
+ done();
|
|
|
+ if (valid) {
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
+ submit(this.form).then(res => {
|
|
|
+ this.$message.success("保存成功");
|
|
|
+ if (type == 'goBack') {
|
|
|
+ if (this.form.id) {
|
|
|
+ this.unLock({
|
|
|
+ moduleName: "MYDL-D",
|
|
|
+ tableName: "MYDL-D_Detail",
|
|
|
+ billId: this.form.id,
|
|
|
+ billNo: this.form.contractNo
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.$emit("goBack", type);
|
|
|
+ this.$emit('updateKey')
|
|
|
+ }
|
|
|
+ this.getDetails(res.data.data.id)
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close();
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ submitFee() {
|
|
|
+ bcurrencyGetExrate({ date: dateFormat(new Date(), 'yyyy-MM-dd hh:mm:ss'), dc: "D" }).then(res => {
|
|
|
+ res.data.data.forEach(e => {
|
|
|
+ if (e.code == 'USD') {
|
|
|
+ this.$prompt('<br/>请输入当天汇率:', '确定收费', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ inputValue: e.exrate,
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ closeOnClickModal: false,
|
|
|
+ }).then(({ value }) => {
|
|
|
+ let obj = {}
|
|
|
+ obj = {
|
|
|
+ ...this.form,
|
|
|
+ exchangeRate: value
|
|
|
+ }
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
+ confirmCollectionOfPayments(obj).then(res => {
|
|
|
+ this.getDetails(res.data.data.id)
|
|
|
+ this.$message.success("确认成功");
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close();
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ revokeFee() {
|
|
|
+ this.$confirm('撤销收费?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
+ revokeCollectionOfPayments(this.form).then(res => {
|
|
|
+ this.getDetails(res.data.data.id)
|
|
|
+ this.$message.success("撤销成功");
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close();
|
|
|
+ })
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+ //自定义列保存
|
|
|
+ async saveColumn(ref, option, optionBack, code) {
|
|
|
+ const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("保存成功");
|
|
|
+ //关闭窗口
|
|
|
+ this.$refs[ref].$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //自定义列重置
|
|
|
+ async resetColumn(ref, option, optionBack, code) {
|
|
|
+ this[option] = this[optionBack];
|
|
|
+ const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("重置成功");
|
|
|
+ this.$refs[ref].$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ goBack(type) {
|
|
|
+ if (contrastObj(this.form, this.oldForm) || contrastList(this.form.filesCenterList, this.oldForm.filesCenterList)) {
|
|
|
+ this.$confirm("数据发生变化未有提交记录, 是否提交?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.submit('goBack')
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ if (this.form.id) {
|
|
|
+ this.unLock({
|
|
|
+ moduleName: "MYDL-D",
|
|
|
+ tableName: "MYDL-D_Detail",
|
|
|
+ billId: this.form.id,
|
|
|
+ billNo: this.form.contractNo
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.$emit("goBack", type);
|
|
|
+ this.$emit('updateKey')
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ if (this.form.id) {
|
|
|
+ this.unLock({
|
|
|
+ moduleName: "MYDL-D",
|
|
|
+ tableName: "MYDL-D_Detail",
|
|
|
+ billId: this.form.id,
|
|
|
+ billNo: this.form.contractNo
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.$emit("goBack", type);
|
|
|
+ this.$emit('updateKey')
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+::v-deep .el-form-item {
|
|
|
+ margin-bottom: 8px !important;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .el-table .cell {
|
|
|
+ padding: 0 2px !important;
|
|
|
+
|
|
|
+ .el-form-item {
|
|
|
+ margin-bottom: 0px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .avue-crud .el-table .el-form-item__label {
|
|
|
+ left: -1px;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep#out-table .back-one {
|
|
|
+ background: #ecf5ff !important;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep#out-table .back-two {
|
|
|
+ background: #ecf5ff !important;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .el-table--small td,
|
|
|
+.el-table--small th {
|
|
|
+ padding: 2px !important;
|
|
|
+}
|
|
|
+</style>
|