|
@@ -31,7 +31,7 @@
|
|
<div style="padding:10px 0">
|
|
<div style="padding:10px 0">
|
|
<a-checkbox v-model="printPrice" :checked="printPrice" id="salesQuery-printPrice">售价</a-checkbox>
|
|
<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="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>
|
|
<a-checkbox v-model="printDate" :checked="printDate" id="salesQuery-printDate">打印时间</a-checkbox>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -393,7 +393,7 @@ export default {
|
|
printRemarks: false, // 是否打印备注
|
|
printRemarks: false, // 是否打印备注
|
|
printNo: true, // 是否打印销售单号
|
|
printNo: true, // 是否打印销售单号
|
|
printDate: false, // 是否打印日期
|
|
printDate: false, // 是否打印日期
|
|
- printWarehouse: false, // 是否打印仓库
|
|
|
|
|
|
+ // printWarehouse: false, // 是否打印仓库
|
|
printPrice: false, // 是否打印价格
|
|
printPrice: false, // 是否打印价格
|
|
// 加载数据方法 必须为 Promise 对象
|
|
// 加载数据方法 必须为 Promise 对象
|
|
loadData: parameter => {
|
|
loadData: parameter => {
|
|
@@ -501,7 +501,7 @@ export default {
|
|
remarksShowFlag: this.printRemarks ? 1 : 0,
|
|
remarksShowFlag: this.printRemarks ? 1 : 0,
|
|
printNo: this.printNo ? 1 : 0,
|
|
printNo: this.printNo ? 1 : 0,
|
|
priceFlag: this.printPrice ? 1 : 0,
|
|
priceFlag: this.printPrice ? 1 : 0,
|
|
- printWarehouse: this.printWarehouse ? 1 : 0,
|
|
|
|
|
|
+ // printWarehouse: this.printWarehouse ? 1 : 0,
|
|
printDate: this.printDate ? 1 : 0
|
|
printDate: this.printDate ? 1 : 0
|
|
}
|
|
}
|
|
if (type == 'export') { // 导出
|
|
if (type == 'export') { // 导出
|