-
+
@@ -30,6 +30,15 @@
刷新
+
+ 蓝色
+
+
+ 红色
+
+
+ 黄色
+
@@ -225,7 +234,6 @@ export default {
},
//监听导出数据变化
exportData() {
- let that = this
window.electron.ipcRenderer.on('Dingdan', (eve, str) => {
if (str.hasError) {
ElMessage({
@@ -261,6 +269,15 @@ export default {
}
this.updateSeach(params)
},
+ //按照颜色过滤
+ async clickColor(color) {
+ let params = {
+ blue: { isNotSale: true },
+ red: { $where: "this.zuigaocaigoujia > this.xiaoshoujine" },
+ yellow: { $where: "this.pinmingxuanxiang.length>1" }
+ }
+ await this.updateSeach(params[color])
+ },
//选中数据
selectChange(selection) {
this.selectionData = _.cloneDeep(selection)
@@ -386,7 +403,6 @@ export default {
},
//导出销售订单
exportxiaoshoudata() {
-
let params = {
subType: "exportxiaoshou",
url: "/api/exportDingdanInfo",
@@ -425,7 +441,7 @@ export default {
}
lilstLocal.push(listItem)
}
- lilstLocal.push({ "销售金额": allMoney })
+ lilstLocal.push({ "销售金额": `总计:${allMoney}` })
let jsonWorkSheet = this.$XLSX.utils.json_to_sheet(lilstLocal);
let workBook = {
SheetNames: ["sheet1"],
@@ -439,6 +455,34 @@ export default {
dealexportS6(list) {
let lilstLocal = []
let allMoney = 0
+ let allObj = {
+ "厂编": "",
+ "货号": "",
+ "Q7平台经销商": "",
+ "业务员": "",
+ "业务类型": "",
+ "主表备注": "",
+ "仓库": "",
+ "付款方式": "",
+ "单价": "",
+ "单据单位": "",
+ "单据单位单价": "",
+ "单据单位数量": "",
+ "单据类型": "",
+ "发货地址": "",
+ "备注": "",
+ "客户收货日期": "",
+ "客户订单号": "",
+ "店号": "",
+ "批号": "",
+ "数量": "",
+ "是否赠品": "",
+ "理货员": "",
+ "销售单号": "",
+ "销售日期": "",
+ "预计开票日": "",
+ "预订货编号": "",
+ }
for (let i = 0; i < list.length; i++) {
let item = list[i];
let listItem = {}
@@ -447,9 +491,9 @@ export default {
let headerItem = this.exportS6[j];
listItem[headerItem.label] = item[headerItem.prop]
}
- lilstLocal.push(listItem)
+ lilstLocal.push({ ...allObj, ...listItem })
}
- lilstLocal.push({ "单据单位数量": allMoney })
+ lilstLocal.push({ "单据单位数量": `总计:${allMoney}` })
let jsonWorkSheet = this.$XLSX.utils.json_to_sheet(lilstLocal);
let workBook = {
SheetNames: ["sheet1"],
diff --git a/start.bat b/start.bat
new file mode 100644
index 0000000..ddd4198
--- /dev/null
+++ b/start.bat
@@ -0,0 +1,4 @@
+@echo off
+cd E:\jscode\code\chanpininfo\release
+npm start
+exit
\ No newline at end of file
diff --git a/模版/S6直营销售单导入模板.xls b/模版/S6直营销售单导入模板.xls
index 8860020..3c2ad3b 100644
Binary files a/模版/S6直营销售单导入模板.xls and b/模版/S6直营销售单导入模板.xls differ
diff --git a/模版/产品信息(模板).xls b/模版/产品信息(模板).xls
index 2334592..1808242 100644
Binary files a/模版/产品信息(模板).xls and b/模版/产品信息(模板).xls differ
diff --git a/模版/客户编码文档(1).xls b/模版/客户编码文档(1).xls
index 8b2eb82..a5fb2d9 100644
Binary files a/模版/客户编码文档(1).xls and b/模版/客户编码文档(1).xls differ
diff --git a/模版/销售订单导入准备表(1).xlsx b/模版/销售订单导入准备表(1).xlsx
index 30fb774..de9ee78 100644
Binary files a/模版/销售订单导入准备表(1).xlsx and b/模版/销售订单导入准备表(1).xlsx differ