md
This commit is contained in:
parent
00e0ec6440
commit
389584674a
@ -336,11 +336,16 @@
|
||||
})
|
||||
|
||||
let orderSeqMap = new Map();
|
||||
let newOrderList=printDataList.orderList.split(",");
|
||||
for(let i=0; i<newOrderList.length; i++){
|
||||
let billCodeItem=newOrderList[i];
|
||||
orderSeqMap[billCodeItem]=i+1;
|
||||
}
|
||||
// console.log("printPreviewAdv===>",printDataList);
|
||||
|
||||
let j=0;
|
||||
printDataList.forEach(item=>{
|
||||
let billArr = item.orderList.split(",");
|
||||
billArr.forEach(objBillCodeStr=>{
|
||||
orderSeqMap[objBillCodeStr]=j+1;
|
||||
j++;
|
||||
});
|
||||
});
|
||||
|
||||
that.pdfList=[];
|
||||
that.showCounter=0;
|
||||
|
||||
@ -50,8 +50,8 @@ export default {
|
||||
prodCode:null,
|
||||
searchVal:null,
|
||||
props: {
|
||||
checkStrictly: true,
|
||||
emitPath: true,
|
||||
// checkStrictly: true,
|
||||
// emitPath: true,
|
||||
lazy: true,
|
||||
lazyLoad: (node, resolve) => {
|
||||
const nodes = [];
|
||||
|
||||
@ -769,7 +769,7 @@ import WarehouseInNoPicker from '@/views/emis/EmisBaseTools/WarehouseInNoPicker.
|
||||
import PayeePicker from '@/views/emis/EmisBaseTools/PayeePicker.vue';
|
||||
import SalemanPicker from '@/views/emis/EmisBaseTools/SalemanPicker.vue';
|
||||
|
||||
import TransProductCasPicker from '@/views/emis/EmisBaseTools/TransProductCasPicker.vue';
|
||||
import TransProductCasPicker from '@/views/emis/EmisBaseTools/TransProductCasAdvPicker.vue';
|
||||
import feeItemForm from './feeItemForm.vue';
|
||||
|
||||
import TanexPrinterPanel from '@/views/emis/EmisBaseTools/TanexPrinterPanel.vue';
|
||||
|
||||
@ -771,7 +771,11 @@ import WarehouseInNoPicker from '@/views/emis/EmisBaseTools/WarehouseInNoPicker.
|
||||
import PayeePicker from '@/views/emis/EmisBaseTools/PayeePicker.vue';
|
||||
import SalemanPicker from '@/views/emis/EmisBaseTools/SalemanPicker.vue';
|
||||
|
||||
import TransProductCasPicker from '@/views/emis/EmisBaseTools/TransProductCasPicker.vue';
|
||||
import TransProductCasPicker from '@/views/emis/EmisBaseTools/TransProductCasAdvPicker.vue';
|
||||
|
||||
// import TransProductCasPicker from '@/views/emis/EmisBaseTools/TransProductCasPicker.vue';
|
||||
|
||||
|
||||
import feeItemForm from './feeItemForm.vue';
|
||||
|
||||
import TanexPrinterPanel from '@/views/emis/EmisBaseTools/TanexPrinterPanel.vue';
|
||||
@ -1150,12 +1154,12 @@ methods: {
|
||||
orderList.push(this.form.billCode);
|
||||
|
||||
// 客户联
|
||||
// let customerItem ={
|
||||
// "tplCode":"TAN-CM-130",
|
||||
// "printerName":this.$refs.tanexPrinter.getDefaultPrinter(),
|
||||
// "orderList":orderList.toString()
|
||||
// }
|
||||
// printDataList.push(customerItem);
|
||||
let customerItem ={
|
||||
"tplCode":"TAN-CM-130",
|
||||
"printerName":this.$refs.tanexPrinter.getDefaultPrinter(),
|
||||
"orderList":orderList.toString()
|
||||
}
|
||||
printDataList.push(customerItem);
|
||||
|
||||
// 主单
|
||||
let mainBillItem ={
|
||||
@ -2042,7 +2046,7 @@ methods: {
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
<style lang="scss">
|
||||
|
||||
.el-form-item__label {
|
||||
color: #000;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user