Browse Source

1233

master
lichong 9 months ago
parent
commit
dfee175969
  1. 9
      api/app/service/dingdan.js
  2. 2
      front/src/main/index.js
  3. 13
      front/src/renderer/src/assets/json/dingdan.json
  4. 5
      front/src/renderer/src/components/dingdanformcomponent.vue
  5. 3
      front/src/renderer/src/components/dingdantablecomponent.vue
  6. 6
      front/src/renderer/src/views/dingdan.vue
  7. BIN
      模版/产品信息(模板).xls
  8. BIN
      模版/销售订单导入准备表.xlsx
  9. BIN
      模版/销售订单导入准备表0.xlsx

9
api/app/service/dingdan.js

@ -40,7 +40,7 @@ class DingdanService extends Service {
let chanpinItemB = await chanpinModel.find({ xiangtiaoxingma: updateItem.tiaoma }) let chanpinItemB = await chanpinModel.find({ xiangtiaoxingma: updateItem.tiaoma })
let chanpinItemC = await chanpinModel.find({ zuidaxiangzhuangtiaoma: updateItem.tiaoma }) let chanpinItemC = await chanpinModel.find({ zuidaxiangzhuangtiaoma: updateItem.tiaoma })
if (chanpinItemA.length || chanpinItemB.length || chanpinItemC.length) { if (chanpinItemA.length || chanpinItemB.length || chanpinItemC.length) {
updateItem = { ...updateItem, isNotSale: false } updateItem = { ...updateItem }
let res = await modelLocal.updateOne({ _id: updateItem._id }, updateItem) let res = await modelLocal.updateOne({ _id: updateItem._id }, updateItem)
returnData.hasError = false returnData.hasError = false
returnData.msg = "数据更新成功" returnData.msg = "数据更新成功"
@ -186,8 +186,11 @@ class DingdanService extends Service {
item["chanpindaima"] = _.get(chanpinItemC, [0, "daima"], "") item["chanpindaima"] = _.get(chanpinItemC, [0, "daima"], "")
item["zuixiaodanweitiaoma"] = _.get(chanpinItemC, [0, "tiaoxingma"], "") item["zuixiaodanweitiaoma"] = _.get(chanpinItemC, [0, "tiaoxingma"], "")
item["xiaoshoushuliang"] = item.xiaoshoushuliang item["xiaoshoushuliang"] = item.xiaoshoushuliang
let zuidadanweixiangzhuangliang = Number((_.get(chanpinItemC, [0, "zuidadanweixiangzhuangliang"], 1) || 1)) let guigexinghao = _.get(chanpinItemC, [0, "guigexinghao"], "")
item["xiugaihouxiaoshoushuliang"] = item.xiaoshoushuliang * zuidadanweixiangzhuangliang let guigexinghaoArr = _.split(guigexinghao, "*")
let jishu = Number(guigexinghaoArr[2]) * Number(guigexinghaoArr[1])
// let zuidadanweixiangzhuangliang = Number((_.get(chanpinItemC, [0, "zuidadanweixiangzhuangliang"], 1) || 1))
item["xiugaihouxiaoshoushuliang"] = item.xiaoshoushuliang * Number(jishu)
item["xiaoshoujine"] = item.xiaoshoujine item["xiaoshoujine"] = item.xiaoshoujine
item["zuigaocaigoujia"] = _.get(chanpinItemC, [0, "zuigaocaigoujia"], 0) item["zuigaocaigoujia"] = _.get(chanpinItemC, [0, "zuigaocaigoujia"], 0)
item["xiangzhuangliang"] = _.get(chanpinItemC, [0, "xiangzhuangliang"], 0) item["xiangzhuangliang"] = _.get(chanpinItemC, [0, "xiangzhuangliang"], 0)

2
front/src/main/index.js

@ -10,7 +10,7 @@ function createWindow() {
mainWindow = new BrowserWindow({ mainWindow = new BrowserWindow({
// fullscreen: true, // fullscreen: true,
// fullscreenable: true, // fullscreenable: true,
width: 1280, width: 1580,
height: 800, height: 800,
// width:1080, // width:1080,
// height:1920, // height:1920,

13
front/src/renderer/src/assets/json/dingdan.json

@ -144,13 +144,6 @@
"formShow": true, "formShow": true,
"exportxiaoshou": true "exportxiaoshou": true
}, },
{
"label": "条码",
"prop": "tiaoma",
"type": "text",
"formShow": true,
"tableShow": true
},
{ {
"label": "品名", "label": "品名",
"prop": "pinming", "prop": "pinming",
@ -197,10 +190,10 @@
"exportxiaoshou": true "exportxiaoshou": true
}, },
{ {
"label": "是否有售卖", "label": "暂无此产品",
"prop": "isNotSale", "prop": "isNotSale",
"type": "number", "type": "boolean",
"formShow": false, "formShow": true,
"tableShow": true "tableShow": true
} }
] ]

5
front/src/renderer/src/components/dingdanformcomponent.vue

@ -6,7 +6,7 @@
<el-input v-model="formData[formItem.prop]" /> <el-input v-model="formData[formItem.prop]" />
</template> </template>
<template v-else-if="formItem.type === 'select'"> <template v-else-if="formItem.type === 'select'">
<el-select v-model="formData[formItem.prop]" :placeholder="`请选择${formItem.label}`" style="width: 240px" > <el-select v-model="formData[formItem.prop]" :placeholder="`请选择${formItem.label}`" style="width: 240px">
<el-option v-for="item in formData[formItem.prop + 'xuanxiang']" :key="item.value" :label="item.label" <el-option v-for="item in formData[formItem.prop + 'xuanxiang']" :key="item.value" :label="item.label"
:value="item.value" /> :value="item.value" />
</el-select> </el-select>
@ -28,6 +28,9 @@
<template v-else-if="formItem.type === 'date'"> <template v-else-if="formItem.type === 'date'">
<el-date-picker v-model="formData[formItem.prop]" type="date" :placeholder="`请选择${formItem.label}`" /> <el-date-picker v-model="formData[formItem.prop]" type="date" :placeholder="`请选择${formItem.label}`" />
</template> </template>
<template v-else-if="formItem.type === 'boolean'">
<el-switch v-model="formData[formItem.prop]" active-text="" inactive-text="" />
</template>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>

3
front/src/renderer/src/components/dingdantablecomponent.vue

@ -21,6 +21,9 @@
<template v-else-if="headerItem.type === 'number'"> <template v-else-if="headerItem.type === 'number'">
<span>{{ scope.row[headerItem.prop] }}</span> <span>{{ scope.row[headerItem.prop] }}</span>
</template> </template>
<template v-else-if="headerItem.type === 'boolean'">
<span>{{ scope.row[headerItem.prop] ? "是" : "否" }}</span>
</template>
<template v-else>{{ scope.row[headerItem.prop] }}</template> <template v-else>{{ scope.row[headerItem.prop] }}</template>
</template> </template>
</el-table-column> </el-table-column>

6
front/src/renderer/src/views/dingdan.vue

@ -37,13 +37,13 @@
<span>刷新</span> <span>刷新</span>
</el-button> </el-button>
<el-button type="primary" @click="clickColor('blue')" color="#a0cfff"> <el-button type="primary" @click="clickColor('blue')" color="#a0cfff">
<span>蓝色</span> <span>未售卖</span>
</el-button> </el-button>
<el-button type="primary" @click="clickColor('red')" color="#fab6b6"> <el-button type="primary" @click="clickColor('red')" color="#fab6b6">
<span>红色</span> <span>低于采购价</span>
</el-button> </el-button>
<el-button type="primary" @click="clickColor('yellow')" color="#f3d19e"> <el-button type="primary" @click="clickColor('yellow')" color="#f3d19e">
<span>黄色</span> <span>多个产品</span>
</el-button> </el-button>
<el-button type="primary" @click="exportxiaoshoudata"> <el-button type="primary" @click="exportxiaoshoudata">
<el-icon> <el-icon>

BIN
模版/产品信息(模板).xls

Binary file not shown.

BIN
模版/销售订单导入准备表.xlsx

Binary file not shown.

BIN
模版/销售订单导入准备表0.xlsx

Binary file not shown.
Loading…
Cancel
Save