Commit a79d96a7 authored by lanbaoming's avatar lanbaoming

2024-06-10提交

parent c901bd59
...@@ -787,7 +787,6 @@ import { getToken } from "@/utils/auth"; ...@@ -787,7 +787,6 @@ import { getToken } from "@/utils/auth";
import { listSimpleDepts } from "@/api/system/dept"; import { listSimpleDepts } from "@/api/system/dept";
import { getCustomer } from "@/api/ecw/customer"; import { getCustomer } from "@/api/ecw/customer";
import { getExchangeRatePage } from "@/api/ecw/exchangeRate"; import { getExchangeRatePage } from "@/api/ecw/exchangeRate";
import { import {
getReceiptInfoByIds, getReceiptInfoByIds,
getInvoicingItem, getInvoicingItem,
...@@ -1012,7 +1011,6 @@ export default { ...@@ -1012,7 +1011,6 @@ export default {
} }
this.$set(this.form, "receiptAccountList", res.data); this.$set(this.form, "receiptAccountList", res.data);
// 收款总计 // 收款总计
let num; let num;
let amountList = []; let amountList = [];
this.currencyList.forEach((item, index) => { this.currencyList.forEach((item, index) => {
...@@ -1065,7 +1063,6 @@ export default { ...@@ -1065,7 +1063,6 @@ export default {
}); });
}); });
} }
this.getList(); this.getList();
}, },
methods: { methods: {
......
...@@ -576,6 +576,7 @@ ...@@ -576,6 +576,7 @@
<print-warehouse-receipt v-if="showWarehouseReceipt" :order-id="order.orderId" @close="showWarehouseReceipt=false" /> <print-warehouse-receipt v-if="showWarehouseReceipt" :order-id="order.orderId" @close="showWarehouseReceipt=false" />
<!--查看提货单 lanbm 2024-06-03--> <!--查看提货单 lanbm 2024-06-03-->
<print-lading-bill v-if="showLadingBill" :order-id="order.orderId" :transport-type="order.transportId" @close="showLadingBill=false" /> <print-lading-bill v-if="showLadingBill" :order-id="order.orderId" :transport-type="order.transportId" @close="showLadingBill=false" />
<!--入仓记录 lanbm 2024-06-10 add-->
<warehouse-detail :order="order" :orderItemId="showWarehouseInItemId" :type="type" @openPackHistory="openPackHistory" v-if="showWarehouseInItemId" @close="showWarehouseInItemId=null" /> <warehouse-detail :order="order" :orderItemId="showWarehouseInItemId" :type="type" @openPackHistory="openPackHistory" v-if="showWarehouseInItemId" @close="showWarehouseInItemId=null" />
<el-dialog :title="$t('付款人')" :visible.sync="showDarweeDialog" v-if="order && order.customDraweeVOList"> <el-dialog :title="$t('付款人')" :visible.sync="showDarweeDialog" v-if="order && order.customDraweeVOList">
<el-table :data="order.customDraweeVOList" v-if="order.drawee==3" > <el-table :data="order.customDraweeVOList" v-if="order.drawee==3" >
......
...@@ -698,6 +698,13 @@ ...@@ -698,6 +698,13 @@
style="width: 400px" style="width: 400px"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<!--lanbm 2024-06-10 添加的落款信息配置信息 -->
<el-form-item :label="$t('落款左边信息')">
<textarea v-model="lineform.lkLeft" style="width: 400px" rows="8" > </textarea>
</el-form-item>
<el-form-item :label="$t('落款右边信息')">
<textarea v-model="lineform.lkRight" style="width: 400px" rows="8"> </textarea>
</el-form-item>
</template> </template>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
...@@ -898,7 +905,6 @@ export default { ...@@ -898,7 +905,6 @@ export default {
selectDeptList: [], selectDeptList: [],
//需要绑定部门的仓库id //需要绑定部门的仓库id
deptWarhouse: null, deptWarhouse: null,
//洲际列表 //洲际列表
continentsList: [], continentsList: [],
//国家列表 //国家列表
...@@ -931,13 +937,9 @@ export default { ...@@ -931,13 +937,9 @@ export default {
open: false, open: false,
templateOpen: false, templateOpen: false,
dateRangeCreateTime: [], dateRangeCreateTime: [],
serviceOpen: false, serviceOpen: false,
isUpdate: false, isUpdate: false,
nodeList: [], nodeList: [],
routeLoadig: false, routeLoadig: false,
showRouteList: false, showRouteList: false,
routeList: [], routeList: [],
...@@ -996,6 +998,8 @@ export default { ...@@ -996,6 +998,8 @@ export default {
minPrice: 0, minPrice: 0,
tempTitleZh: "", tempTitleZh: "",
tempTitleEn: "", tempTitleEn: "",
lkLeft: "",
lkRight: "", //lanbm 2024-06-10 添加的落款配置信息
recipientInfo: { recipientInfo: {
companyAddress: "", companyAddress: "",
companyAddressEn: "", companyAddressEn: "",
...@@ -1458,6 +1462,7 @@ export default { ...@@ -1458,6 +1462,7 @@ export default {
}, },
submitLineForm() { submitLineForm() {
//ecw_warehouse_line
let otherService = this.lineform.otherService; let otherService = this.lineform.otherService;
// 如果不存在送货上门,则过滤提货异常 // 如果不存在送货上门,则过滤提货异常
if (!otherService.includes("2")) { if (!otherService.includes("2")) {
...@@ -1475,6 +1480,8 @@ export default { ...@@ -1475,6 +1480,8 @@ export default {
recipientInfo: this.lineform.recipientInfo, recipientInfo: this.lineform.recipientInfo,
tempTitleZh: this.lineform.tempTitleZh, tempTitleZh: this.lineform.tempTitleZh,
tempTitleEn: this.lineform.tempTitleEn, tempTitleEn: this.lineform.tempTitleEn,
lkLeft:this.lineform.lkLeft,
lkRight:this.lineform.lkRight,//lanbm 2024-06-10 add
}).then((res) => { }).then((res) => {
this.$modal.msgSuccess(this.$t("操作成功")); this.$modal.msgSuccess(this.$t("操作成功"));
this.getRouteList(); this.getRouteList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment