123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- /**
- * Created by Zhong on 2017/8/22.
- */
- import {complementaryGljModel, stdGljModel, gljClassModel} from "./schemas";
- import counter from "../../../public/counter/counter";
- import async from "async";
- import STDGLJLibGLJListModel from "../../common/std/std_glj_lib_glj_list_model";
- class GljDao {
- getGljTypes (gljLibId, callback){
- gljClassModel.find({"repositoryId": gljLibId, "$or": [{"isDeleted": null}, {"isDeleted": false} ]},function(err,data){
- if(data.length) {
- callback(0,data);
- }
- else if(err) callback("获取工料机类型错误!",false);
- })
- }
- getGljItemsByRep(repositoryId,callback){
- gljModel.find({"repositoryId": repositoryId},function(err,data){
- if(err) callback(true, "")
- else callback(false,data);
- })
- }
- getGljItemByType (repositoryId, type, callback){
- gljModel.find({"repositoryId": repositoryId, "gljType": type},function(err,data){
- if(err) callback(true, "")
- else callback(false, data);
- })
- };
- getGljItem (repositoryId, code, callback){
- gljModel.find({"repositoryId": repositoryId, "code": code},function(err,data){
- if(err) callback(true, "")
- else callback(false, data);
- })
- };
- _exist(data, attr){
- return data && data[attr] !== 'undefined' && data[attr];
- }
- sortToNumber(datas){
- for(let i = 0, len = datas.length; i < len; i++){
- let data = datas[i]._doc;
- if(this._exist(data, 'basePrice')){
- data['basePrice'] = parseFloat(data['basePrice']);
- }
- if(this._exist(data, 'component')){
- for(let j = 0, jLen = data['component'].length; j < jLen; j++){
- let comGljObj = data['component'][j]._doc;
- if(this._exist(comGljObj, 'consumeAmt')){
- comGljObj['consumeAmt'] = parseFloat(comGljObj['consumeAmt']);
- }
- }
- }
- }
- }
- //获得用户的补充工料机和用户当前所在编办的标准工料机
- getGljItems (stdGljLibId, userId, compilationId, callback){
- let me = this;
- let rst = {stdGljs: [], complementaryGljs: []};
- async.parallel([
- function (cb) {
- stdGljModel.find({repositoryId: stdGljLibId}, function (err, stdGljs) {
- if(err){
- cb(err);
- }
- else{
- me.sortToNumber(stdGljs);
- rst.stdGljs = stdGljs;
- cb(null);
- }
- });
- },
- function (cb) {
- complementaryGljModel.find({userId: userId, compilationId: compilationId}, function (err, complementaryGljs) {
- if(err){
- cb(err);
- }
- else{
- me.sortToNumber(complementaryGljs);
- rst.complementaryGljs = complementaryGljs;
- cb(null);
- }
- });
- }
- ], function (err) {
- if(err){
- callback(err, null);
- }
- else{
- callback(0, rst);
- }
- })
- };
- getGljItemsByCode (repositoryId, codes, callback){
- gljModel.find({"repositoryId": repositoryId,"code": {"$in": codes}},function(err,data){
- if(err) callback(true, "")
- else callback(false, data);
- })
- };
- updateComponent(userId, updateArr, callback){
- let parallelFucs = [];
- for(let i = 0; i < updateArr.length; i++){
- parallelFucs.push((function(obj){
- return function (cb) {
- if(typeof obj.component === 'undefined'){
- obj.component = [];
- }
- complementaryGljModel.update({userId: userId, ID: obj.ID}, obj, function (err, result) {
- if(err){
- cb(err);
- }
- else{
- cb(null, obj);
- }
- })
- }
- })(updateArr[i]));
- }
- async.parallel(parallelFucs, function (err, result) {
- if(err){
- callback(err, '更新组成物错误!', null);
- }
- else{
- callback(0, '成功!', result);
- }
- });
- }
- //-oprtor
- mixUpdateGljItems (userId, compilationId, updateItems, addItems, rIds, callback) {
- if (updateItems.length == 0 && rIds.length == 0) {
- GljDao.addGljItems(userId, compilationId, addItems, callback);
- }
- else if(rIds.length > 0 && updateItems.length > 0){
- async.parallel([
- function (cb) {
- GljDao.removeGljItems(rIds, cb);
- },
- function (cb) {
- GljDao.updateGljItems(userId, compilationId, updateItems, cb);
- }
- ], function (err) {
- if(err){
- callback(true, "Fail to update and delete", false)
- }
- else{
- callback(false, "Save successfully", false);
- }
- })
- }
- else if (rIds.length > 0 && updateItems.length === 0) {
- GljDao.removeGljItems(rIds, callback);
- }
- else if(updateItems.length > 0 || addItems.length > 0){
- GljDao.updateGljItems(userId, compilationId, updateItems, function(err, results){
- if (err) {
- callback(true, "Fail to update", false);
- } else {
- if (addItems && addItems.length > 0) {
- GljDao.addGljItems(userId, compilationId, addItems, callback);
- } else {
- callback(false, "Save successfully", results);
- }
- }
- });
- }
- }
- /*mixUpdateGljItems (repId, lastOpr, updateItems, addItems, rIds, callback) {
- if (updateItems.length == 0 && rIds.length == 0) {
- GljDao.addGljItems(repId, lastOpr, addItems, callback);
- } else if (rIds.length > 0) {
- GljDao.removeGljItems(repId, lastOpr, rIds, function(err, message, docs) {
- });
- }else{
- GljDao.updateGljItems(repId, lastOpr, updateItems, function(err, results){
- if (err) {
- callback(true, "Fail to update", false);
- } else {
- if (addItems && addItems.length > 0) {
- GljDao.addGljItems(repId, lastOpr, addItems, callback);
- } else {
- callback(false, "Save successfully", results);
- }
- }
- });
- }
- };*/
- static removeGljItems (rIds, callback) {
- if (rIds && rIds.length > 0) {
- complementaryGljModel.collection.remove({ID: {$in: rIds}}, null, function(err, docs){
- if (err) {
- callback(true, "Fail to remove", false);
- } else {
- callback(false, "Remove successfully", docs);
- }
- })
- } else {
- callback(false, "No records were deleted!", null);
- }
- }
- static addGljItems (userId, compilationId, items, callback) {
- if (items && items.length > 0) {
- counter.counterDAO.getIDAfterCount(counter.moduleName.GLJ, items.length, function(err, result){
- var maxId = result.value.sequence_value;
- var arr = [];
- for (var i = 0; i < items.length; i++) {
- var obj = new complementaryGljModel(items[i]);
- obj.ID = (maxId - (items.length - 1) + i);
- obj.userId = userId;
- obj.compilationId = compilationId;
- arr.push(obj);
- }
- complementaryGljModel.collection.insert(arr, null, function(err, docs){
- if (err) {
- callback(true, "Fail to add", false);
- } else {
- callback(false, "Add successfully", docs);
- }
- });
- });
- } else {
- callback(true, "No source", false);
- }
- }
- static updateGljItems(userId, compilationId, items, callback) {
- var functions = [];
- for (var i=0; i < items.length; i++) {
- functions.push((function(doc) {
- return function(cb) {
- var filter = {};
- if (doc.ID) {
- filter.ID = doc.ID;
- } else {
- filter.userId = userId;
- filter.compilationId = compilationId;
- filter.code = doc.code;
- }
- complementaryGljModel.update(filter, doc, cb);
- };
- })(items[i]));
- }
- async.parallel(functions, function(err, results) {
- callback(err, results);
- });
- }
- /**
- * 获取组成物数据
- *
- * @param {Number} gljId
- * @return {Promise}
- */
- async getComponent(gljId) {
- let result = [];
- let libGljData = await complementaryGljModel.find({ID: gljId});
- if (libGljData === null || libGljData.component.length <= 0) {
- return result;
- }
- // 标准工料机库
- let componentIdListStd = [];
- // 补充工料机库
- let componentIdListCpt = [];
- let componentConsume = {};
- // 整理数据
- for (let component of libGljData.component) {
- if (component.isStd) {
- componentIdListStd.push(component.ID);
- } else {
- componentIdListCpt.push(component.ID);
- }
- let isStdFlag = component.isStd ? 'std' : 'cpt';
- componentConsume[component.ID + '_' + isStdFlag] = component.consumeAmt;
- }
- // 查找标准库数据
- let condition = {};
- let componentStdGljData = [];
- if (componentIdListStd.length > 0) {
- let gljListModel = new STDGLJLibGLJListModel();
- condition = {ID: {$in: componentIdListStd}};
- componentStdGljData = await gljListModel.findDataByCondition(condition, null, false);
- }
- // 查找补充库数据
- let componentCptGljData = [];
- if (componentIdListCpt.length > 0) {
- condition = {ID: {$in: componentIdListCpt}};
- componentCptGljData = await complementaryGljModel.find(condition);
- }
- if (componentCptGljData === null && componentStdGljData === null) {
- return result;
- }
- // 整理数据
- if (componentStdGljData.length > 0) {
- componentStdGljData = JSON.stringify(componentStdGljData);
- componentStdGljData = JSON.parse(componentStdGljData);
- for(let gljData of componentStdGljData) {
- gljData.connectCode = libGljData.code;
- gljData.consumption = componentConsume[gljData.ID + '_std'];
- result.push(gljData);
- }
- }
- if (componentCptGljData.length > 0) {
- componentCptGljData = JSON.stringify(componentCptGljData);
- componentCptGljData = JSON.parse(componentCptGljData);
- for(let gljData of componentCptGljData) {
- gljData.connectCode = libGljData.code;
- gljData.consumption = componentConsume[gljData.ID + '_cpt'];
- result.push(gljData);
- }
- }
- return result;
- }
- }
- export default GljDao;
|