给零售单据增加三联打印功能

This commit is contained in:
季圣华
2022-09-16 00:43:58 +08:00
parent b36475bc6d
commit a3e58fe757

View File

@@ -1394,7 +1394,8 @@
initPlatform() {
getPlatformConfigByKey({"platformKey": "bill_print_flag"}).then((res)=> {
if (res && res.code === 200) {
if(this.billType === '采购订单'||this.billType === '采购入库'||this.billType === '采购退货库'||
if(this.billType === '零售出库'||this.billType === '零售退货库'||
this.billType === '采购订单'||this.billType === '采购入库'||this.billType === '采购退货出库'||
this.billType === '销售订单'||this.billType === '销售出库'||this.billType === '销售退货入库') {
this.billPrintFlag = res.data.platformValue==='1'?true:false
}