You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

9 months ago
'use strict';
const Service = require('egg').Service;
const _ = require("lodash");
class ExportDataService extends Service {
async index(params) {
let { ctx } = this
let modelLocal = ctx.model[params.model]
let subType = params.subType
9 months ago
let whereOther = params["$where"]
let paramsLocal = _.omit(params, ["subType", "url", "model", "$where"])
let paramsLocalInfoAgg = { ...paramsLocal, isExit: 1 }
9 months ago
let msgObj = {
exportS6: "成功导出S6订单",
exportxiaoshou: "成功导出销售订单",
}
9 months ago
if (whereOther === "this.zuigaocaigoujia > this.xiaoshoujine") {
paramsLocalInfoAgg["$expr"] = {
"$gt": ["$zuigaocaigoujia", "$xiaoshoujine"]
}
} else if (whereOther === "this.pinmingxuanxiang.length>1") {
paramsLocalInfoAgg["$expr"] = {
"$gt": [{ "$size": "$pinmingxuanxiang" }, 1]
}
}
let res = await modelLocal.aggregate([{
$match: paramsLocalInfoAgg,
}, { $sort: { update_at: -1 } }]).exec()
let returnData = { hasError: false, msg: msgObj[subType], subType, list: res }
9 months ago
return returnData
}
}
module.exports = ExportDataService;