Commit e0f38080 by 王昆

gsb

parent a0d3fa5d
const system = require("../../../system");
const Dao = require("../../dao.base");
class OprocessDao extends Dao {
constructor() {
super(Dao.getModelName(OprocessDao));
}
}
module.exports = OprocessDao;
\ No newline at end of file
......@@ -7,6 +7,16 @@ const ServiceBase = require("../../sve.base")
class OorderService extends ServiceBase {
constructor() {
super("order", ServiceBase.getDaoName(OorderService));
this.oorderinforegDao = system.getObject("db.order.oorderinforegDao");
this.oorderdeliverDao = system.getObject("db.order.oorderdeliverDao");
this.oorderprocessDao = system.getObject("db.order.oorderprocessDao");
this.osourceDao = system.getObject("db.common.osourceDao");
this.oproductDao = system.getObject("db.product.oproductDao");
this.oprocessDao = system.getObject("db.product.oprocessDao");
this.oproductprocessDao = system.getObject("db.product.oproductprocessDao");
}
/**
......@@ -28,13 +38,7 @@ class OorderService extends ServiceBase {
order.notes = this.trim(params.notes);
order.contactMobile = this.trim(params.contactMobile);
// 验证sourceId
// 查询产品订单状态
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment