unit_price_model.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /**
  2. * 单价业务模型
  3. *
  4. * @author CaiAoLin
  5. * @date 2017/6/30
  6. * @version
  7. */
  8. import mongoose from "mongoose";
  9. import BaseModel from "../../common/base/base_model"
  10. import GLJTypeConst from "../../common/const/glj_type_const"
  11. import CounterModel from "./counter_model"
  12. import MixRatioModel from "./mix_ratio_model";
  13. import _ from "lodash";
  14. const scMathUtil = require('../../../public/scMathUtil').getUtil();
  15. let collectionName = 'unit_price';
  16. let decimal_facade = require('../../main/facade/decimal_facade');
  17. let gljListModel = mongoose.model("glj_list");
  18. class UnitPriceModel extends BaseModel {
  19. /**
  20. * 构造函数
  21. *
  22. * @return {void}
  23. */
  24. constructor() {
  25. let parent = super();
  26. parent.model = mongoose.model(collectionName);
  27. parent.init();
  28. }
  29. /**
  30. * 根据单价文件id获取单价数据
  31. *
  32. * @param {Number} fileId
  33. * @return {Promise}
  34. */
  35. async getDataByFileId(fileId) {
  36. fileId = parseInt(fileId);
  37. if (isNaN(fileId) || fileId <= 0) {
  38. return null;
  39. }
  40. let unitPriceList = await this.db.model.find({unit_price_file_id: fileId});
  41. if (unitPriceList.length <= 0) {
  42. return null;
  43. }
  44. // 整理数据
  45. let result = {};
  46. for(let tmp of unitPriceList) {
  47. let index = this.getIndex(tmp,['code','name','specs','unit','type'])
  48. result[index] = tmp;
  49. }
  50. return result;
  51. }
  52. /**
  53. * 设置场景
  54. *
  55. * @param {string} scene
  56. * @return {void}
  57. */
  58. setScene(scene = '') {
  59. switch (scene) {
  60. // 新增数据的验证规则
  61. case 'add':
  62. this.model.schema.path('base_price').required(true);
  63. this.model.schema.path('market_price').required(true);
  64. this.model.schema.path('name').required(true);
  65. this.model.schema.path('code').required(true);
  66. // this.model.schema.path('unit').required(true);
  67. this.model.schema.path('type').required(true);
  68. this.model.schema.path('unit_price_file_id').required(true);
  69. }
  70. }
  71. /**
  72. * 新增单价数据
  73. *
  74. * @param {Object} data
  75. * @param {Number} unitPriceFileId
  76. * @param {Number} gljCount
  77. * @return {Promise} 返回数据以及是否新增
  78. */
  79. async addUnitPrice(data, unitPriceFileId,operation='add', gljCount = 0) {
  80. if (data.original_code===undefined||data.code === undefined || data.project_id === undefined || data.name === undefined
  81. || data.market_price === undefined) {
  82. return [null, false];
  83. }
  84. // 先查找是否有原始code相同的记录
  85. let unitPriceData = await this.db.model.find({original_code: data.original_code, unit_price_file_id: unitPriceFileId}).sort('code').exec();
  86. // 如果有记录,判断是否存在一样的名称,单位...等,有则直接返回数据
  87. let unitPrice=null;
  88. if(operation=='add'){//新增操作时,要把code也一起判断,是否完全一样。(新增的时候有可能存在编码一样,但是名称规格等不一样的情况,这种情况的话编码不用改变)
  89. unitPrice = this.isPropertyInclude(unitPriceData,['code','name','specs','unit','type'],data);
  90. }else {//修改操作时,code不用加入判断,因为code是需要改变的
  91. unitPrice = this.isPropertyInclude(unitPriceData,['name','specs','unit','type'],data);
  92. }
  93. if(unitPrice){
  94. return [unitPrice, false];
  95. }
  96. // 如果不存在基价单价,则在数据源中获取
  97. if (data.base_price === undefined) {
  98. let firstUnitPrice = unitPriceData[0] !== undefined ? unitPriceData[0] : [];
  99. data.base_price = firstUnitPrice.base_price !== undefined ? firstUnitPrice.base_price : 0;
  100. data.type = firstUnitPrice.type !== undefined ? firstUnitPrice.type : 0;
  101. }
  102. let insertData = {
  103. code: data.code,
  104. base_price: data.base_price,
  105. market_price: data.market_price,
  106. unit_price_file_id: unitPriceFileId,
  107. name: data.name,
  108. specs:data.specs,
  109. original_code:data.original_code,
  110. unit:data.unit,
  111. type: data.type,
  112. short_name: data.shortName !== undefined ? data.shortName : '',
  113. glj_id: data.glj_id,
  114. is_add:0
  115. };
  116. if(data.from=='cpt') insertData.is_add=1; //如果是来自补充工料机,则都添加新增标记
  117. if(operation=='add' && insertData.code != insertData.original_code) insertData.is_add=1;//添加的时候如果是复制整块来的,可能在源项目中是新增的工料机,这里也要添上
  118. if (unitPriceData&&unitPriceData.length>0&&operation!='add') {// 如果原始编码能找到,但不存在一样的编号,名称,单位.型号等,更改code和添加新增标记,新增的时候除外。新增的情况下能到这一步说明有存在编码一致但其它属性不一致的情况,所以不用更改编码
  119. //insertData.code = data.original_code+"-"+unitPriceData.length;
  120. insertData.code = data.original_code+"-"+this.getLastNumber(data.original_code,unitPriceData);
  121. insertData.is_add=1;
  122. }
  123. let addPriceResult = await this.add(insertData);
  124. return [addPriceResult, true];
  125. }
  126. getLastNumber(original_code,unitPriceData){
  127. let codeArray = _.map(unitPriceData,'code');
  128. let last = 1;
  129. while (true){
  130. if(_.includes(codeArray,original_code+"-"+last)){
  131. last +=1
  132. }else {
  133. break;
  134. }
  135. }
  136. return last;
  137. }
  138. /**
  139. * 新增记录
  140. *
  141. * @param {object} data
  142. * @return {Promise}
  143. */
  144. async add(data) {
  145. let counterModel = new CounterModel();
  146. if (data instanceof Array) {
  147. // 如果是批量新增
  148. for(let tmp in data) {
  149. data[tmp].id = await counterModel.getId(collectionName);
  150. }
  151. } else {
  152. data.id = await counterModel.getId(collectionName);
  153. }
  154. this.setScene('add');
  155. return this.db.model.create(data);
  156. }
  157. /**
  158. * 判断数据中是否包含某个市场价格的记录
  159. *
  160. * @param {Array} data
  161. * @param {Number} price
  162. * @return {Number}
  163. */
  164. isPriceIncluded(data, price) {
  165. let index = -1;
  166. if (data.length <= 0) {
  167. return index;
  168. }
  169. for(let tmp in data) {
  170. if (data[tmp].market_price === price) {
  171. index = tmp;
  172. break;
  173. }
  174. }
  175. return index;
  176. }
  177. isPropertyInclude(data,pops,obj){
  178. let condition={},me = this;
  179. if (data.length <= 0) {
  180. return null;
  181. }
  182. if(pops instanceof Array){
  183. return _.find(data,function (d) {
  184. return me.getIndex(d,pops) == me.getIndex(obj,pops)
  185. });
  186. }else {
  187. condition[pops]=obj[pops];
  188. return _.find(data,condition);
  189. }
  190. }
  191. /**
  192. * 更新市场单价
  193. *
  194. * @param {Object} condition
  195. * @param {Object} updateData
  196. * @param {String} extend
  197. * @return {Promise}
  198. */
  199. async updatePrice(condition, updateData, extend = '') {
  200. if (Object.keys(condition).length <= 0 || Object.keys(updateData).length <= 0) {
  201. return false;
  202. }
  203. // 首先查找相应的数据判断工料机类型
  204. let unitPriceData = await this.findDataByCondition(condition);
  205. if (!unitPriceData) {
  206. throw '找不到对应的单价数据';
  207. }
  208. /* // 基价单价的计算-----先不考虑同步
  209. switch (unitPriceData.type) {
  210. // 主材、设备自动赋值基价单价=市场单价
  211. case GLJTypeConst.MAIN_MATERIAL:
  212. case GLJTypeConst.EQUIPMENT:
  213. updateData.base_price = updateData.market_price;
  214. break;
  215. }*/
  216. // 额外更新数据
  217. if (extend !== '') {
  218. extend = JSON.parse(extend);
  219. let indexList = ['code','name','specs','unit','type'];
  220. for (let conKey in extend) {
  221. let extendUpdateData = {
  222. market_price: extend[conKey].market_price,
  223. };
  224. let tmpCondition = {
  225. unit_price_file_id: unitPriceData.unit_price_file_id,
  226. };
  227. let keyList = conKey.split("|-|");
  228. for(let i = 1;i<keyList.length;i++){
  229. if(keyList[i]!='null'){
  230. tmpCondition[indexList[i]]=keyList[i];
  231. }
  232. }
  233. let extendResult = await this.db.update(tmpCondition, extendUpdateData);
  234. if (!extendResult) {
  235. throw '更新额外数据,编码为' + code + '的数据失败!';
  236. }
  237. }
  238. }
  239. let result = await this.db.update(condition, updateData);
  240. return result.ok !== undefined && result.ok === 1;
  241. }
  242. async updateUnitPrice(data){
  243. //查找并更新单价
  244. let doc={},newValueMap={};
  245. doc[data.field]=data.newval;
  246. newValueMap[data.id]=doc;
  247. let unitPrice = await this.db.findAndModify({id:data.id,unit_price_file_id:data.unit_price_file_id},doc);
  248. if(!unitPrice){
  249. throw "没有找到对应的单价";
  250. }
  251. let rList= this.checkAndUpdateParent(unitPrice,data.field,data.project_id,newValueMap);
  252. return rList;
  253. }
  254. async checkAndUpdateParent(unitPrice,field,project_id,newValueMap,batchUpdate=false){//检查是否属于某个工料机的组成物,如果是,并且不是批量更新的情况下,直接更新,如果是批量更新,返回更新任务
  255. //查找是否是属于某个项目工料机的组成物
  256. let mixRatioModel = new MixRatioModel();
  257. let condition = {unit_price_file_id:unitPrice.unit_price_file_id, code:unitPrice.code,name: unitPrice.name, specs: unitPrice.specs,unit:unitPrice.unit,type:unitPrice.type};
  258. let mixRatioList = await mixRatioModel.findDataByCondition(condition, null, false);
  259. let connectKeyMap={};
  260. //找到则计算项目工料机组成物的价格并更新
  261. let rList= [];
  262. if(mixRatioList&&mixRatioList.length>0){
  263. for(let m of mixRatioList){
  264. if(!connectKeyMap.hasOwnProperty(m.connect_key)){//为了去重复,组成物会与其它项目同步,所以有可能重复。
  265. rList.push(await this.updateParentUnitPrice(m,field,project_id,newValueMap,batchUpdate));
  266. connectKeyMap[m.connect_key]=true;
  267. }
  268. }
  269. }
  270. return rList;
  271. }
  272. async batchUpdatePrices(data){//批量更新
  273. let tasks = [];
  274. let parentTask = [];
  275. let newValueMap = {};
  276. for(let d of data){//第一次循环生成更新提交的记录,并生成一个新值的映射表,为更新父节点使用
  277. let condition = {id:d.unit_price.id,unit_price_file_id:d.unit_price.unit_price_file_id};
  278. let doc = {};
  279. doc[d.field]=d.newval;
  280. newValueMap[d.unit_price.id] = doc;
  281. tasks.push(this.generateUpdateTask(condition,doc));
  282. }
  283. for(let d of data){//第二次更新父节点
  284. let rList = await this.checkAndUpdateParent(d.unit_price,d.field,d.project_id,newValueMap,true);
  285. parentTask = parentTask.concat(rList);
  286. }
  287. tasks = tasks.concat(parentTask);
  288. tasks.length>0?this.model.bulkWrite(tasks):'';
  289. return parentTask;
  290. }
  291. async updateParentUnitPrice(mixRatio,fieid,project_id,newValueMap,batchUpdate){//batchUpdate 批量更新标记,如果true,只生成task
  292. let decimalObject =await decimal_facade.getProjectDecimal(project_id);
  293. let quantity_decimal = (decimalObject&&decimalObject.glj&&decimalObject.glj.quantity)?decimalObject.glj.quantity:3;
  294. let price_decimal = (decimalObject&&decimalObject.glj&&decimalObject.glj.unitPrice)?decimalObject.glj.unitPrice:2;
  295. //查找该工料机所有组成物
  296. let indexList = ['code','name','specs','unit','type'];
  297. let mixRatioModel = new MixRatioModel();
  298. let mixRatioMap = await mixRatioModel.findDataByCondition({unit_price_file_id:mixRatio.unit_price_file_id,connect_key:mixRatio.connect_key}, null, false,indexList);
  299. //查找对应的价格
  300. let codeList = [];
  301. let nameList = [];
  302. let specsList= [];
  303. let typeList = [];
  304. let unitList = [];
  305. for(let mk in mixRatioMap){
  306. codeList.push(mixRatioMap[mk].code);
  307. nameList.push(mixRatioMap[mk].name);
  308. specsList.push(mixRatioMap[mk].specs);
  309. typeList.push(mixRatioMap[mk].type);
  310. unitList.push(mixRatioMap[mk].unit);
  311. }
  312. let condition = {unit_price_file_id: mixRatio.unit_price_file_id,code: {"$in": codeList}, name: {"$in": nameList},specs:{"$in": specsList},type:{"$in": typeList},unit:{"$in": unitList}};
  313. let priceMap = await this.findDataByCondition(condition, {_id: 0}, false, indexList);
  314. let sumPrice=0;
  315. for(let pk in priceMap){
  316. let price = scMathUtil.roundForObj(priceMap[pk][fieid],price_decimal);
  317. let consumption = scMathUtil.roundForObj(mixRatioMap[pk].consumption,quantity_decimal);
  318. if(newValueMap[priceMap[pk].id]){//是需要更新的记录,取当前新的值
  319. price = scMathUtil.roundForObj(newValueMap[priceMap[pk].id][fieid],price_decimal);
  320. }
  321. sumPrice +=scMathUtil.roundForObj(price*consumption,price_decimal);
  322. }
  323. sumPrice= scMathUtil.roundForObj(sumPrice,price_decimal);
  324. if(sumPrice<=0){
  325. return null;
  326. }
  327. //更新父价格
  328. let keyList = mixRatio.connect_key.split("|-|");
  329. let pcondition = {
  330. unit_price_file_id:mixRatio.unit_price_file_id,
  331. code:keyList[0]
  332. };
  333. for(let i = 1;i<keyList.length;i++){
  334. if(keyList[i]!='null'){
  335. pcondition[indexList[i]]=keyList[i];
  336. }
  337. }
  338. let doc={};
  339. doc[fieid]=sumPrice;
  340. if(batchUpdate == true){
  341. return this.generateUpdateTask(pcondition,doc);
  342. }else {
  343. let uprice = await this.db.findAndModify(pcondition,doc,{new: true});
  344. //uprice[fieid]=sumPrice;
  345. return uprice;
  346. }
  347. }
  348. generateUpdateTask(condition,doc) {
  349. let task = {
  350. updateOne:{
  351. filter:condition,
  352. update:doc
  353. }
  354. };
  355. return task
  356. }
  357. /**
  358. * 复制单价文件数据
  359. *
  360. * @param {Number} currentUnitPriceId
  361. * @param {Number} changeUnitPriceId
  362. * @return {Promise}
  363. */
  364. async copyNotExist(currentUnitPriceId, changeUnitPriceId,projectId) {
  365. let result = false;
  366. // 首先查找原单价文件id下的数据
  367. let currentUnitList = await this.findDataByCondition({unit_price_file_id: currentUnitPriceId}, null, false);
  368. if (currentUnitList === null) {
  369. return result;
  370. }
  371. // 过滤mongoose格式
  372. currentUnitList = JSON.stringify(currentUnitList);
  373. currentUnitList = JSON.parse(currentUnitList);
  374. let gljList = await gljListModel.find({'project_id':projectId});
  375. let gljMap = {};//用来记录glj的映射表,本项目有使用的工料机才需要copy过去
  376. for(let g of gljList){
  377. let g_index = this.getIndex(g,['code','name','specs','unit','type']);
  378. gljMap[g_index] = g;
  379. }
  380. let codeList = [];
  381. let nameList =[];
  382. for (let tmp of currentUnitList) {
  383. if (codeList.indexOf(tmp.code) >= 0) {
  384. continue;
  385. }
  386. codeList.push(tmp.code);
  387. if(nameList.indexOf(tmp.name)>=0){
  388. continue
  389. }
  390. nameList.push(tmp.name);
  391. }
  392. // 查找即将更替的单价文件是否存在对应的工料机数据 -- (这里只根据code和名称初步过滤,因为其它的几项更改的概率不大,在下一步的比较中再精确匹配)
  393. let condition = {unit_price_file_id: changeUnitPriceId, code: {"$in": codeList},name:{"$in": nameList}};
  394. let targetUnitList = await this.findDataByCondition(condition, null, false, ['code','name','specs','unit','type']);
  395. // 如果没有重叠的数据则原有的数据都复制一份
  396. let insertData = [];
  397. for (let tmp of currentUnitList) {
  398. let t_index = this.getIndex(tmp,['code','name','specs','unit','type']);
  399. if (targetUnitList !== null && targetUnitList[t_index] !== undefined) {
  400. continue;
  401. }
  402. if(gljMap[t_index]){//如果本项目有用到才复制
  403. delete tmp._id; // 删除原有id信息
  404. delete tmp.id;
  405. tmp.unit_price_file_id = changeUnitPriceId;
  406. insertData.push(tmp);
  407. }
  408. }
  409. let uResult = insertData.length > 0 ? this.add(insertData) : true;
  410. let mixRatioModel = new MixRatioModel();
  411. let mResult = await mixRatioModel.copyNotExist(currentUnitPriceId, changeUnitPriceId,gljMap);//复制组成物
  412. return uResult&&mResult;
  413. }
  414. }
  415. export default UnitPriceModel;