|
@@ -25,7 +25,7 @@
|
|
|
<br>
|
|
|
<a-checkbox v-model="printPrice" :checked="printPrice" id="salesQuery-printPrice">售价</a-checkbox>
|
|
|
<a-checkbox v-model="printRemarks" :checked="printRemarks" id="salesQuery-printRemarks">备注</a-checkbox>
|
|
|
- <a-checkbox v-model="printWarehouse" :checked="printWarehouse" id="salesQuery-printWarehouse">仓库仓位</a-checkbox>
|
|
|
+ <!-- <a-checkbox v-model="printWarehouse" :checked="printWarehouse" id="salesQuery-printWarehouse">仓库仓位</a-checkbox> -->
|
|
|
<a-checkbox v-model="printDate" :checked="printDate" id="salesQuery-printDate">打印时间</a-checkbox>
|
|
|
</div>
|
|
|
</PrintPanel>
|
|
@@ -166,7 +166,6 @@ export default {
|
|
|
printPrice: false, // 是否打印价格
|
|
|
printNo: true, // 是否打印销售单号
|
|
|
printDate: true, // 是否打印日期
|
|
|
- printWarehouse: false, // 是否打印仓库
|
|
|
showOutInModal: false, // 出库明细弹框
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|
|
@@ -273,7 +272,6 @@ export default {
|
|
|
remarksShowFlag: this.printRemarks ? 1 : 0,
|
|
|
printNo: this.printNo ? 1 : 0,
|
|
|
priceFlag: this.printPrice ? 1 : 0,
|
|
|
- printWarehouse: this.printWarehouse ? 1 : 0,
|
|
|
printDate: this.printDate ? 1 : 0
|
|
|
}
|
|
|
if (type == 'export') { // 导出
|
|
@@ -314,7 +312,6 @@ export default {
|
|
|
vm.printAllName = localStorage.getItem('printAllName-' + this.$store.state.user.info.orgId) == 'true'
|
|
|
vm.printRemarks = localStorage.getItem('printRemarks-' + this.$store.state.user.info.orgId) == 'true'
|
|
|
vm.printPrice = localStorage.getItem('printPrice-' + this.$store.state.user.info.orgId) == 'true'
|
|
|
- vm.printWarehouse = localStorage.getItem('printWarehouse-' + this.$store.state.user.info.orgId) == 'true'
|
|
|
const printDate = localStorage.getItem('printDate-' + this.$store.state.user.info.orgId)
|
|
|
vm.printDate = printDate ? printDate == 'true' : true
|
|
|
const printNo = localStorage.getItem('printNo-' + this.$store.state.user.info.orgId)
|
|
@@ -343,9 +340,6 @@ export default {
|
|
|
printDate (newValue, oldValue) {
|
|
|
localStorage.setItem('printDate-' + this.$store.state.user.info.orgId, newValue)
|
|
|
},
|
|
|
- printWarehouse (newValue, oldValue) {
|
|
|
- localStorage.setItem('printWarehouse-' + this.$store.state.user.info.orgId, newValue)
|
|
|
- },
|
|
|
printNo (newValue, oldValue) {
|
|
|
localStorage.setItem('printNo-' + this.$store.state.user.info.orgId, newValue)
|
|
|
}
|