sale.js 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586
  1. $(function () {
  2. openWebSocket();
  3. queryAssistantInfo();
  4. });
  5. window.onbeforeunload = function(){
  6. closeWebSocket();
  7. }
  8. function debounce(fn,delay){
  9. console.log("进来了");
  10. var timer=null
  11. return function(){
  12. console.log(timer);
  13. if(timer){
  14. clearTimeout(timer)
  15. }
  16. timer = setTimeout(fn,delay)
  17. }
  18. }
  19. function calculateGoodsPrice(r){
  20. var rMap = r.map;
  21. var barCode = r.goodsDetails.prodBarcode;
  22. var brand = r.goodsDetails.brand;
  23. console.log(rMap);
  24. if(rMap.yhq){
  25. for(var i in rMap.yhq){
  26. vm.coupons.set(i,rMap.yhq[i]);
  27. }
  28. }
  29. // 是否有满减活动
  30. if(rMap.mj){
  31. if(rMap.mj[barCode] && !vm.mj.get(barCode)){
  32. // 该商品是否已经有过满减活动
  33. vm.mj.set(barCode,rMap.mj[barCode]);
  34. }else if(rMap.mj[brand] && !vm.mj.get(brand)){
  35. // 该品牌是否已经有过满减活动
  36. vm.mj.set(brand,rMap.mj[brand]);
  37. }
  38. }
  39. if(rMap.mysy){
  40. // 买的条码, 买的数量,送的条码,送的数量
  41. var mysy = {
  42. buyNum:rMap.mysy.buyNum,
  43. giftBarcode:rMap.mysy.giftBarcode,
  44. sendNum:rMap.mysy.sendNum
  45. };
  46. if(rMap.mysy.brand){
  47. vm.brandGetOneFree.set(rMap.mysy.productBrand,mysy);
  48. }else{
  49. vm.barcodeGetOneFree.set(rMap.mysy.barcode , mysy);
  50. }
  51. }
  52. if(rMap.mz){
  53. if(rMap.mz[barCode] && !vm.mz.get(barCode)){
  54. // 该商品是否已经有过满赠活动
  55. vm.mz.set(barCode,rMap.mz[barCode]);
  56. }else if(rMap.mz[brand] && !vm.mz.get(brand)){
  57. // 该品牌是否已经有过满赠活动
  58. vm.mz.set(brand,rMap.mz[brand]);
  59. }
  60. }
  61. if(rMap.drjbj){
  62. if(!vm.halfPrice.get(rMap.drjbj.barcode)){
  63. vm.halfPrice.set(rMap.drjbj.barcode,1);
  64. }
  65. }
  66. // if(rMap.zhjsp){
  67. // // 遍历该商品所有可能的组合价商品类型
  68. // for(var data in rMap.zhjsp){
  69. // if(!vm.zhjsp.get(data)){
  70. // // 分割组合价商品的条码,并以 条码:0 放入map中
  71. // var barCodeArray = data.toString().split(":");
  72. // var dataMap = new Map();
  73. // console.log(rMap.zhjsp[data]);
  74. // // dataMap.set();
  75. // for(var j = 0 ; j < barCodeArray.length ; j ++){
  76. // dataMap.set(barCodeArray[j],0);
  77. // }
  78. // vm.combinationPrice.set(data,rMap.zhjsp[data][0].combinedPrice)
  79. //
  80. // vm.zhjsp.set(data,dataMap);
  81. // }
  82. // }
  83. //
  84. // }
  85. // calculateGoodsByMj(r.goodsDetails,"add");
  86. calculateGoodsByMysy(r.goodsDetails,"add");
  87. calculateGoodsByMz(r.goodsDetails,"add");
  88. calculateGoodsByHalfPrice(r.goodsDetails,"add");
  89. // calculateGoodsByZhjsp(r);
  90. }
  91. // ==================== 满减==========================
  92. // 满减
  93. function calculateGoodsByMj(goodsDetails,type){
  94. if(vm.mj.get(goodsDetails.prodBarcode)){
  95. fullReduction(goodsDetails,goodsDetails.prodBarcode);
  96. }else if(vm.mj.get(goodsDetails.brand)){
  97. fullReduction(goodsDetails,goodsDetails.brand);
  98. }
  99. }
  100. // 满减的计算内容
  101. function fullReduction(goodsDetails,key){
  102. // 获取满减条件金额
  103. var qualifiedAmount = vm.mj.get(key).qualifiedAmount;
  104. // 获取已累积金额
  105. var money = vm.accumulatedAmount.get(key);
  106. if(isNaN(money)){
  107. money = goodsDetails.retailPrice;
  108. }else{
  109. money = money + goodsDetails.retailPrice;
  110. }
  111. if(money >= qualifiedAmount){
  112. vm.reduceMoney += vm.mj.get(key).deductionAmount; // 达到满减金额,获取扣减的额度
  113. vm.mj.delete(key); // 获取后删除该商品的满减
  114. vm.accumulatedAmount.delete(key); // 删除满减的金额
  115. }else{
  116. vm.accumulatedAmount.set(key,money);
  117. }
  118. }
  119. // ============================= 第二件半价==========================
  120. function calculateGoodsByHalfPrice(goodsDetails,type){
  121. var half = vm.halfPrice.get(goodsDetails.prodBarcode);
  122. if(half){
  123. var discountPrice = goodsDetails.retailPrice / 2;
  124. if(type == "add"){
  125. // 等于一的话,不满足条件
  126. if(half == 1){
  127. vm.halfPrice.set(goodsDetails.prodBarcode,2);
  128. }else if(half == 2){
  129. goodsDetails.actualPaymentAmount = discountPrice;
  130. goodsDetails.discountedPrice = discountPrice;
  131. vm.halfPrice.set(goodsDetails.prodBarcode,1);
  132. }
  133. }else if(type == "minus"){
  134. if(half == 2){
  135. goodsDetails.actualPaymentAmount = goodsDetails.actualPaymentAmount ;
  136. vm.halfPrice.set(goodsDetails.prodBarcode,1);
  137. }else if(half == 1){
  138. goodsDetails.actualPaymentAmount = goodsDetails.actualPaymentAmount - discountPrice;
  139. goodsDetails.discountedPrice = discountPrice;
  140. vm.halfPrice.set(goodsDetails.prodBarcode,2);
  141. }
  142. }
  143. }
  144. }
  145. // ============================= 满赠 ==============================
  146. // 满赠
  147. function calculateGoodsByMz(goodsDetails,type){
  148. // 判断当前支付金额是否满足满赠金额,若满足,直接修改金额为1
  149. var mzGoods = vm.mz.get(goodsDetails.prodBarcode);
  150. if(mzGoods){
  151. var mzPrice = mzGoods.qualifiedAmount;
  152. if(mzPrice < vm.actualPrice && !mzGoods.useMz){
  153. mzGoods.useMz = true;
  154. goodsDetails.actualPaymentAmount = 1;
  155. goodsDetails.discountedPrice = goodsDetails.retailPrice - 1;
  156. }
  157. }
  158. // // 1.满赠的商品是不是自己,遍历满赠商品数组
  159. // isSend(vm.fullGiftCode,goodsDetails,"满赠");
  160. //
  161. // if(vm.mz.get(goodsDetails.prodBarcode)){
  162. // fullGift(goodsDetails,goodsDetails.prodBarcode);
  163. // }else if(vm.mz.get(goodsDetails.brand)){
  164. // fullGift(goodsDetails,goodsDetails.brand);
  165. // }
  166. }
  167. function fullGift(goodsDetails,key){
  168. // 获取满赠条件金额
  169. var qualifiedAmount = vm.mz.get(key).qualifiedAmount;
  170. // 获取已累积金额
  171. var money = vm.accumulatedAmountForFullGift.get(key);
  172. if(isNaN(money)){
  173. money = goodsDetails.retailPrice;
  174. }else{
  175. money = money + goodsDetails.retailPrice;
  176. }
  177. // 达到满赠的要求
  178. if(money >= qualifiedAmount){
  179. // 将满赠的商品放入数组中,重置金额
  180. vm.fullGiftCode.push(vm.mz.get(key).giftBarcode);
  181. vm.mz.delete(key); // 获取后删除该商品的满减
  182. vm.accumulatedAmountForFullGift.delete(key); // 删除满减的金额
  183. // 2.购物车的商品里面是否有满赠的商品
  184. shopCartContain(vm.fullGiftCode,goodsDetails,"满赠");
  185. }else{
  186. vm.accumulatedAmountForFullGift.set(key,money);
  187. }
  188. }
  189. // 买一送一
  190. function calculateGoodsByMysy(goodsDetails,type){
  191. var mysy = vm.barcodeGetOneFree.get(goodsDetails.prodBarcode);
  192. var brandMysy = vm.brandGetOneFree.get(goodsDetails.brand);
  193. if(mysy){
  194. var buyNum = mysy.buyNum;
  195. if(type == "add"){
  196. // 证明是买一送一,并且达到买一送一的条件
  197. if(buyNum == 1 && vm.boughtNum.get(goodsDetails.prodBarcode)){
  198. // 设置赠品的单价
  199. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  200. goodsDetails.actualPaymentAmount = 0;
  201. // goodsDetails.activity = "买1送1";
  202. // 清除该商品买一送一条件
  203. vm.boughtNum.delete(goodsDetails.prodBarcode);
  204. return ;
  205. }
  206. // 如果不是买一送一,而是买n送n,先获取购物车已有该类型商品数量
  207. var boughtNum = vm.boughtNum.get(goodsDetails.prodBarcode);
  208. // 如果没有,置为1
  209. if(!boughtNum){
  210. vm.boughtNum.set(goodsDetails.prodBarcode , 1);
  211. return ;
  212. }
  213. // 走到这里,证明购买过该类型商品,且数量不是买一送一的
  214. // 如果相等,证明达到送的条件
  215. if(buyNum === boughtNum){
  216. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  217. goodsDetails.actualPaymentAmount = 0;
  218. // goodsDetails.activity = "买"+buyNum+"送1";
  219. // 清除该商品买一送一条件
  220. vm.boughtNum.delete(goodsDetails.prodBarcode);
  221. console.log(vm.boughtNum);
  222. }else{
  223. // 如果不相等,已经购买数量+1
  224. vm.boughtNum.set(goodsDetails.prodBarcode , boughtNum+1);
  225. }
  226. }else if (type == "minus"){
  227. // 获取该产品要买n送1 的n
  228. // 获取已经购买的数量
  229. var boughtNum = goodsDetails.sellVolume;
  230. // 减一后,不满足买一送一条件,重新计算金额
  231. // 如果不等于0,要减去价格
  232. var remainder = 0;
  233. if(boughtNum > buyNum+1){
  234. remainder = buyNum - (boughtNum % (buyNum+1)) ;
  235. }else{
  236. remainder = buyNum - ((buyNum+1) %boughtNum ) ;
  237. }
  238. if(boughtNum % (buyNum+1) != 0){
  239. // console.log("我要减去价格,也要减去数量,减去数量=" + goodsDetails.sellVolume);
  240. goodsDetails.actualPaymentAmount = goodsDetails.retailPrice;
  241. goodsDetails.discountedPrice = 0;
  242. // 如果等于0,只用减去数量跟优惠价,并恢复活动
  243. }else{
  244. // console.log("我不用减去价格,只要减去数量");
  245. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  246. goodsDetails.actualPaymentAmount = 0;
  247. }
  248. goodsDetails.sellVolume = 1;
  249. vm.boughtNum.set(goodsDetails.prodBarcode,remainder);
  250. }
  251. }
  252. if(brandMysy){
  253. var buyNum = brandMysy.buyNum;
  254. if(type == "add"){
  255. // 如果不是买一送一,而是买n送n,先获取购物车已有该类型商品数量
  256. var boughtNum = vm.boughtNum.get(goodsDetails.brand);
  257. // 如果没有,置为1
  258. if(!boughtNum){
  259. vm.boughtNum.set(goodsDetails.brand , 1);
  260. return ;
  261. }
  262. // 走到这里,证明购买过该类型商品,且数量不是买一送一的
  263. // 如果相等,证明达到送的条件
  264. if(buyNum === boughtNum + 1){
  265. var mysyNum = vm.freeBardcode.get(brandMysy.giftBarcode);
  266. if(!mysyNum){
  267. mysyNum = 0;
  268. }
  269. vm.freeBardcode.set(brandMysy.giftBarcode,mysyNum + 1);
  270. vm.boughtNum.set(goodsDetails.brand,0);
  271. }else{
  272. // 如果不相等,已经购买数量+1
  273. vm.boughtNum.set(goodsDetails.brand , boughtNum+1);
  274. }
  275. }else if (type == "minus"){
  276. var mysyNum = vm.boughtNum.get(goodsDetails.brand);
  277. if(mysyNum == 0){
  278. if(vm.freeBardcode.get(brandMysy.giftBarcode) == 0){
  279. vm.freeBardcode.set(brandMysy.giftBarcode,-1);
  280. }else{
  281. vm.freeBardcode.set(brandMysy.giftBarcode,vm.freeBardcode.get(brandMysy.giftBarcode) - 1);
  282. }
  283. vm.boughtNum.set(goodsDetails.brand,buyNum - 1);
  284. }else{
  285. vm.boughtNum.set(goodsDetails.brand,mysyNum - 1);
  286. }
  287. // var freeNum = vm.freeBardcode.get(brandMysy.giftBarcode);
  288. // if(freeNum > 0){
  289. // vm.freeBardcode.set(brandMysy.giftBarcode,freeNum - 1);
  290. //
  291. // }
  292. }
  293. }
  294. // 判断当前商品是否为赠品
  295. // isSend(vm.mysy,goodsDetails,"买一送一");
  296. // 判断购物车里面是否有商品为赠品
  297. // shopCartContain(vm.mysy,goodsDetails,"买一送一");
  298. }
  299. // 判断当前商品是否为赠品
  300. function isSend(activity,goodsDetails,activityName){
  301. if(activity.indexOf(goodsDetails.prodBarcode) >= 0){
  302. // 如果符合条件,把赠送的条码给删除(一次性)
  303. var index = activity.indexOf(goodsDetails.prodBarcode);
  304. activity.splice(index,1);
  305. // 设置赠品的单价
  306. goodsDetails.discountedPrice = goodsDetails.retailPrice - 1;
  307. goodsDetails.actualPaymentAmount = 1;
  308. }
  309. }
  310. // 判断购物车里面是否有商品为赠品
  311. function shopCartContain(activity,goodsDetails,activityName){
  312. if(vm.goodsList && vm.goodsList.length > 0 ){
  313. for(var i = 0 ; i < vm.goodsList.length ; i ++){
  314. // 如果有商品为赠品,则把价格置位0并跳出循环
  315. if(activity.indexOf(vm.goodsList[i].prodBarcode) >= 0 && vm.goodsList[i].actualPaymentAmount != 0){
  316. // 如果符合条件,把赠送的条码给删除(一次性)
  317. var index = vm.mysy.indexOf(goodsDetails.prodBarcode);
  318. activity.splice(index,1);
  319. vm.goodsList[i].discountedPrice = vm.goodsList[i].retailPrice;
  320. vm.goodsList[i].actualPaymentAmount = 0;
  321. vm.goodsList[i].activity = activityName;
  322. vm.discountedPrice = vm.discountedPrice + vm.goodsList[i].retailPrice ;
  323. vm.actualPrice = vm.actualPrice - vm.goodsList[i].retailPrice ;
  324. break;
  325. }
  326. }
  327. }
  328. }
  329. // ======================= 组合价商品 ============================
  330. // 组合价商品
  331. function calculateGoodsByZhjsp(r){
  332. var barCode = r.goodsDetails.prodBarcode;
  333. if(r.map.zhjsp){
  334. // 将有组合的商品设置为1 ps:{"flag" => 0, "4005808550739" => 1, "4305615120454" => 0}
  335. vm.zhjsp.forEach(function(value,key,map){
  336. // 将组合价中组合的产品出现的次数+1
  337. value.forEach(function(v, k ,m){
  338. if(k === barCode)
  339. m.set(k,v+1);
  340. });
  341. var flag = 1;
  342. // 判断是否有商品成功组合
  343. value.forEach(function(v, k ,m){
  344. if(v === 0)
  345. flag = 0;
  346. });
  347. if(flag === 1){
  348. var combinationPrice = vm.combinationPrice.get(key);
  349. var barCodeArr = key.toString().split(":");
  350. // 扫码的商品条码 barCode
  351. for(var i = 0 ; i < barCodeArr.length ; i ++){
  352. var oldCode = barCodeArr[i];
  353. if(oldCode === barCode){
  354. continue;
  355. }
  356. if(vm.compareCombinationPrice.get(oldCode) && vm.compareCombinationPrice.get(oldCode) > combinationPrice){
  357. // 获取原组合关系
  358. var relationshipKey = vm.combinationRelationship.get(oldCode);
  359. // 将价格设置回原来的价格
  360. var keyArr = relationshipKey.toString().split(":");
  361. // 遍历原来的组合
  362. for(var j = 0 ; j < keyArr.length ; j ++){
  363. // 遍历购物车中原来的商品,替换价格
  364. for(var k = 0 ; k < vm.goodsList.length ; k ++){
  365. if(vm.goodsList[k].prodBarcode === keyArr[j] && vm.goodsList[k].activity == "组合价"){
  366. vm.discountedPrice = vm.discountedPrice - vm.goodsList[k].discountedPrice ;
  367. vm.actualPrice = vm.actualPrice + vm.goodsList[k].discountedPrice ;
  368. vm.goodsList[k].discountedPrice = 0 ; // 优惠价格
  369. vm.goodsList[k].actualPaymentAmount = vm.goodsList[k].retailPrice; // 实际支付价格
  370. vm.goodsList[k].isCombination = 0;
  371. vm.goodsList[k].activity = "";
  372. vm.compareCombinationPrice.delete(vm.goodsList[k].prodBarcode);
  373. vm.combinationRelationship.delete(vm.goodsList[k].prodBarcode);
  374. }
  375. }
  376. }
  377. }
  378. }
  379. for( var i = 0 ; i < barCodeArr.length ; i ++ ){
  380. // 如果是扫描的产品,直接退出,因为购物车中无该产品
  381. if(barCodeArr[i] == barCode){
  382. r.goodsDetails.isCombination = 1;
  383. r.goodsDetails.discountedPrice = r.goodsDetails.retailPrice - combinationPrice; // 优惠价格
  384. r.goodsDetails.actualPaymentAmount = combinationPrice; // 实际支付价格
  385. r.goodsDetails.activity = "组合价";
  386. vm.compareCombinationPrice.set(barCode,r.goodsDetails.actualPaymentAmount);
  387. vm.combinationRelationship.set(barCode,key);
  388. continue;
  389. }
  390. for(var j = 0 ; j < vm.goodsList.length ; j ++){
  391. if(vm.goodsList[j].prodBarcode === barCodeArr[i] && !vm.goodsList[j].isCombination){
  392. vm.goodsList[j].discountedPrice = vm.goodsList[j].retailPrice ; // 优惠价格
  393. vm.goodsList[j].actualPaymentAmount = 0; // 实际支付价格
  394. vm.goodsList[j].isCombination = 1;
  395. vm.goodsList[j].activity = "组合价";
  396. vm.discountedPrice = vm.discountedPrice + vm.goodsList[j].retailPrice ; // 总的优惠金额
  397. vm.actualPrice = vm.actualPrice - vm.goodsList[j].retailPrice ; // 总的实际支付金额
  398. vm.compareCombinationPrice.set(vm.goodsList[j].prodBarcode,vm.goodsList[j].actualPaymentAmount);
  399. vm.combinationRelationship.set(vm.goodsList[j].prodBarcode,barCode,key);
  400. break;
  401. }
  402. }
  403. }
  404. // 扣减
  405. var updateMap = map.get(key);
  406. updateMap.forEach(function(v, k ,m){
  407. m.set(k,v-1);
  408. });
  409. }
  410. });
  411. }
  412. console.log(vm.compareCombinationPrice);
  413. }
  414. let vm = new Vue({
  415. el: '#rrapp',
  416. data: {
  417. showList: true,
  418. goodsDetail:false,
  419. title: null,
  420. goods:{},
  421. sysNotice: {},
  422. goodsList:[],
  423. orderInfo:[],
  424. userInfo:{},
  425. //user信息绑定集合
  426. userInfoBinding: {},
  427. sysUserInfo:{},
  428. storeName:null,
  429. prodBarcode:null,
  430. sessionId:null,
  431. pickUpCodeList:[],
  432. goodsDetailList:[],
  433. orderEntity:{},
  434. orderProcessRecord:{},
  435. tax:0,
  436. currentOrderNo:null,
  437. pickUpCode:null,
  438. customname:'',
  439. customidcard:'',
  440. machineCode:'',
  441. storeId:null,
  442. index:0,
  443. max:0,
  444. totalPrice:0,
  445. discountedPrice:0,
  446. actualPrice:0,
  447. ruleValidate: {
  448. name: [
  449. {required: true, message: '名称不能为空', trigger: 'blur'}
  450. ]
  451. },
  452. q: {
  453. name: ''
  454. },
  455. firstPrint:false,
  456. // 第二件半价
  457. halfPrice:new Map(),
  458. // 买一送一
  459. mysy: [],
  460. freeBardcode : new Map(),
  461. modifyShopcart:false, // 是否需要修改购物车中商品信息
  462. brandGetOneFree : new Map(),
  463. barcodeGetOneFree: new Map(),
  464. boughtNum: new Map(),
  465. // 组合价
  466. zhjsp: new Map(),
  467. combinationPrice: new Map(), // 组合价商品的组合价
  468. compareCombinationPrice: new Map(), // 用于比较组合价
  469. combinationRelationship: new Map(), // 组合价格的组合关系
  470. // 满减
  471. mj: new Map(),
  472. accumulatedAmount: new Map(), // 累积金额(满减使用的)
  473. reduceMoney:0, // 满减金额
  474. showReduceMoney:0, // 用于展示的满减金额
  475. // 满赠
  476. useMz:false,
  477. mz: new Map(),
  478. accumulatedAmountForFullGift: new Map(), // 累积金额(满赠使用的)
  479. fullGiftCode:[],// 满赠商品条码
  480. // 优惠券
  481. coupons: new Map(),
  482. // 挂起订单集合
  483. pendingOrderMap: new Map(),
  484. // 挂起订单的key 在1~3循环
  485. pendingIndex:1,
  486. pendingOrderKeys:[],
  487. // 存储商品信息
  488. goodsMap:new Map(),
  489. response: "",
  490. parCode : "",
  491. },
  492. methods: {
  493. myDebounce:debounce(function(){
  494. toPayOrder();
  495. },2000),
  496. query: function () {
  497. vm.storeId = sessionStorage.getItem("storeId");;
  498. var thisGoods = {};
  499. $.get("../goods/details/"+vm.prodBarcode+"/"+vm.storeId, function (r) {
  500. if (r.code == 0) {
  501. r.goodsDetails.sellVolume = 1;
  502. vm.goodsMap.set(r.goodsDetails.goodsSn,JSON.parse(JSON.stringify(r.goodsDetails)));
  503. vm.prodBarcode = '';
  504. calculateGoodsPrice(r);
  505. handle(r.goodsDetails,"add");
  506. } else {
  507. alert(r.msg);
  508. }
  509. });
  510. },
  511. add:function(value){
  512. // 增加数量
  513. for(var i = 0 ; i < this.goodsList.length ; i++){
  514. if(this.goodsList[i].id == value){
  515. var goodsDetails = JSON.parse(JSON.stringify(vm.goodsMap.get(this.goodsList[i].goodsSn)));
  516. calculateGoodsByMj(goodsDetails,"add");
  517. calculateGoodsByMysy(goodsDetails,"add");
  518. calculateGoodsByHalfPrice(goodsDetails,"add");
  519. // calculateGoodsByMz(goodsDetails,"add");
  520. handle(goodsDetails,"add");
  521. break;
  522. }
  523. }
  524. },
  525. minus:function(value){
  526. // 减少数量
  527. for(var i = 0 ; i < this.goodsList.length ; i++){
  528. if(this.goodsList[i].id == value){
  529. // 获取当前购物车的数量
  530. var g = JSON.parse(JSON.stringify(this.goodsList[i]));
  531. console.log(g);
  532. var goodsDetails = JSON.parse(JSON.stringify(vm.goodsMap.get(this.goodsList[i].goodsSn)));
  533. if(g.sellVolume === 1){
  534. alert("数量至少为1个");
  535. return ;
  536. }
  537. // 如果不为空,证明减的是买A送B中的B,这时候要还原赠送资格跟B的扣减
  538. var freeMap = vm.freeBardcode.get(goodsDetails.prodBarcode);
  539. if((freeMap || freeMap == 0) && g.actualPaymentAmount == 0){
  540. vm.freeBardcode.set(goodsDetails.prodBarcode,freeMap + 1);
  541. goodsDetails.sellVolume = -1;
  542. goodsDetails.actualPaymentAmount = 0;
  543. goodsDetails.discountedPrice = -goodsDetails.retailPrice;
  544. goodsDetails.goodstaxes = - goodsDetails.goodstaxes;
  545. goodsDetails.retailPrice = - goodsDetails.retailPrice;
  546. }else{
  547. goodsDetails.sellVolume = g.sellVolume;
  548. calculateGoodsByMj(goodsDetails,"minus");
  549. calculateGoodsByMysy(goodsDetails,"minus");
  550. calculateGoodsByHalfPrice(goodsDetails,"minus");
  551. // calculateGoodsByMz(goodsDetails,"minus");
  552. goodsDetails.sellVolume = -1;
  553. goodsDetails.actualPaymentAmount = -goodsDetails.actualPaymentAmount;
  554. goodsDetails.discountedPrice = -goodsDetails.discountedPrice;
  555. goodsDetails.goodstaxes = - goodsDetails.goodstaxes;
  556. goodsDetails.retailPrice = - goodsDetails.retailPrice;
  557. }
  558. handle(goodsDetails,"minus");
  559. break;
  560. }
  561. }
  562. },
  563. deleteItem:function(value){
  564. console.log(value);
  565. // 删除这条记录
  566. for(var i = 0 ; i < this.goodsList.length ; i++){
  567. if(this.goodsList[i].id == value){
  568. if(this.goodsList.length == 1){
  569. vm.goods = {};
  570. vm.goodsDetail = false;
  571. }
  572. if(vm.mz.get(this.goodsList[i].prodBarcode)){
  573. vm.mz.get(this.goodsList[i].prodBarcode).useMz = false ;
  574. }
  575. if(vm.brandGetOneFree.get(this.goodsList[i].brand)){
  576. var giftBarcode = vm.brandGetOneFree.get(this.goodsList[i].brand).giftBarcode;
  577. var muilty = vm.brandGetOneFree.get(this.goodsList[i].brand).buyNum;
  578. var sellNum = this.goodsList[i].sellVolume;;
  579. vm.freeBardcode.set(giftBarcode,sellNum/muilty);
  580. for(var j = 0 ; j < vm.goodsList.length ; j++){
  581. var shopcartGoods = vm.goodsList[j];
  582. var shopcartFree = vm.freeBardcode.get(shopcartGoods.prodBarcode);
  583. if(shopcartFree /*&& shopcartGoods.actualPaymentAmount*/){
  584. shopcartGoods.actualPaymentAmount = shopcartGoods.actualPaymentAmount + (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  585. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice - (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  586. vm.discountedPrice = vm.discountedPrice - (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  587. vm.actualPrice = vm.actualPrice + (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  588. vm.freeBardcode.set(shopcartGoods.prodBarcode, 0);// 重置回0
  589. }
  590. }
  591. }
  592. if(vm.halfPrice.get(this.goodsList[i].prodBarcode)){
  593. vm.halfPrice.set(this.goodsList[i].prodBarcode,1);
  594. }
  595. var goods = this.goodsList[i];
  596. console.log(goods);
  597. console.log(vm.totalPrice);
  598. if(vm.freeBardcode.get(goods.prodBarcode) || vm.freeBardcode.get(goods.prodBarcode) == 0){
  599. var nnum = (((goods.retailPrice * goods.sellVolume) - goods.actualPaymentAmount)/goods.retailPrice);
  600. vm.freeBardcode.set(goods.prodBarcode, nnum);
  601. }
  602. vm.totalPrice = vm.totalPrice - (goods.retailPrice * goods.sellVolume);
  603. vm.discountedPrice = vm.discountedPrice - goods.discountedPrice;
  604. vm.actualPrice = vm.actualPrice - goods.actualPaymentAmount;
  605. vm.boughtNum.delete(goods.prodBarcode);
  606. vm.totalPrice = Math.round(vm.totalPrice * 100) / 100;
  607. vm.discountedPrice = Math.round(vm.discountedPrice * 100) / 100;
  608. vm.actualPrice = Math.round(vm.actualPrice * 100) / 100;
  609. vm.showReduceMoney = Math.round(vm.showReduceMoney * 100) / 100;
  610. this.goodsList.splice(i,1);
  611. break;
  612. }
  613. }
  614. this.index = value;
  615. },
  616. clearGoodsList:function(){
  617. this.goodsList = [];
  618. vm.customClearData();
  619. },
  620. pendingOrder:function(){
  621. if(this.goodsList.length == 0){
  622. alert("购物车中没有商品");
  623. return;
  624. }
  625. console.log(vm.pendingOrderMap.size);
  626. if(vm.pendingOrderMap.size >= 3){
  627. alert("订单挂起最多支持3单");
  628. return;
  629. }
  630. vm.pendingOrderMap.set(vm.pendingIndex,this.goodsList);
  631. vm.pendingOrderKeys.push(vm.pendingIndex);
  632. var newIndex = ++vm.pendingIndex;
  633. vm.pendingIndex = newIndex > 3?1: newIndex;
  634. vm.clearGoodsList();
  635. },
  636. toResumePending:function(){
  637. if(vm.pendingOrderMap.size == 0){
  638. alert("当前没有挂起的订单");
  639. return ;
  640. }
  641. $('#pendignOrderModal').modal('show')
  642. },
  643. resumePending:function(key){
  644. if(vm.pendingOrderMap.size == 0){
  645. alert("当前没有挂起的订单");
  646. return ;
  647. }
  648. if(vm.goodsList.length > 0){
  649. alert("购物车中已有商品,不允许恢复!")
  650. return ;
  651. }
  652. vm.goodsList = vm.pendingOrderMap.get(key);
  653. // 清除恢复的数据
  654. vm.pendingOrderMap.delete(key);
  655. removeByValue(vm.pendingOrderKeys,key);
  656. $('#pendignOrderModal').modal('hide')
  657. },
  658. toOrderSubmit:function(){
  659. if(this.goodsList.length == 0){
  660. alert("请选择商品");
  661. return;
  662. }
  663. $('#myModal').modal('show')
  664. // 每次点击提交订单的时候清空姓名和身份证信息和手机号
  665. // vm.$refs.customName.value = "";
  666. // vm.$refs.customIDCard.value = "";
  667. // vm.$refs.customPhone.value = "";
  668. if(vm.$refs.couponSn)
  669. vm.$refs.couponSn.value = "";
  670. this.userInfo.couponSn = "";
  671. },
  672. submitOrder:function(){
  673. vm.parCode = this.$refs.payCode.currentValue
  674. vm.myDebounce();
  675. },customClearData: function(){
  676. vm.totalPrice = 0;
  677. vm.discountedPrice = 0;
  678. vm.actualPrice = 0;
  679. vm.goods={};
  680. vm.goodsDetail = false;
  681. // 第二件半价
  682. vm.halfPrice = new Map();
  683. // 买一送一
  684. vm.mysy = [];
  685. vm.freeBardcode = new Map();
  686. vm.brandGetOneFree = new Map();
  687. vm.barcodeGetOneFree = new Map();
  688. vm.brandGetOneFree = new Map();
  689. vm.boughtNum = new Map();
  690. // 组合价
  691. vm.zhjsp = new Map();
  692. vm.combinationPrice = new Map(); // 组合价商品的组合价
  693. // 满减
  694. vm.mj = new Map();
  695. vm.accumulatedAmount = new Map();// 累积金额(满减使用的)
  696. vm.reduceMoney = 0; // 满减金额
  697. vm.showReduceMoney = 0; // 用于展示的满减金额
  698. // 满赠
  699. vm.mz = new Map();
  700. vm.accumulatedAmountForFullGift = new Map(); // 累积金额(满赠使用的)
  701. vm.fullGiftCode = [];// 满赠商品条码
  702. // 优惠券
  703. vm.coupons = new Map();
  704. },
  705. queryIDCardInfo: function(){
  706. $.get("../order/queryIDCardInfo/"+vm.$refs.customPhone.value, function (r){
  707. if(r.code === 0){
  708. var data = r.userEntity;
  709. vm.$refs.customName.value = data.username;
  710. vm.$refs.customIDCard.value = data.idNo;
  711. }else{
  712. alert(r.msg);
  713. }
  714. });
  715. },
  716. getIDCardInfo: function(){
  717. $.post("http://127.0.0.1:8000/idcard/read", function (r){
  718. // var dataR = JSON.parse(r);
  719. // console.log(dataR)
  720. if(r.code == "0"){
  721. // if(!r.info){
  722. // alert("请连接设备或设备有问题,请联系管理员!");
  723. // return ;
  724. // }
  725. // var data = JSON.parse(r.info);
  726. // if(data.code=="0"){
  727. vm.$refs.customName.value = r.rows[0].data.name;
  728. vm.$refs.customIDCard.value = r.rows[0].data.id_no;
  729. // }else{
  730. // alert(data.msg);
  731. // return ;
  732. // }
  733. }else if(r.code=="-1"){
  734. alert(r.msg);
  735. return;
  736. }else{
  737. alert("请连接设备或设备有问题,请联系管理员!");
  738. }
  739. });
  740. },
  741. customPhoneBlur:function (){
  742. let customPhone = this.$refs.customPhone.value;
  743. if(customPhone){
  744. for(let key in this.userInfoBinding){
  745. if(customPhone == key){
  746. let userInfoBindingValue = this.userInfoBinding[key];
  747. this.$refs.customName.value = userInfoBindingValue.substring(0, userInfoBindingValue.length-18);
  748. this.$refs.customIDCard.value = userInfoBindingValue.substring(userInfoBindingValue.length-18);
  749. break;
  750. }
  751. }
  752. }
  753. },
  754. submitCustomInfo:function(){
  755. this.userInfo.customName = this.$refs.customName.value ;
  756. this.userInfo.customIDCard = this.$refs.customIDCard.value ;
  757. this.userInfo.customPhone = this.$refs.customPhone.value;
  758. if(this.$refs.couponSn)
  759. this.userInfo.couponSn = this.$refs.couponSn.value;
  760. var idcardReg = /^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$|^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/;
  761. if(!this.userInfo.customName){
  762. alert("姓名不能为空!");
  763. return ;
  764. }
  765. if(!idcardReg.test(this.userInfo.customIDCard)){
  766. alert("请输入正确的身份证号");
  767. return ;
  768. }
  769. if(!(/^1[3456789]\d{9}$/.test(this.userInfo.customPhone))){
  770. alert("手机号码有误,请重填");
  771. return ;
  772. }
  773. //将手机号与姓名身份证号进行绑定,下次填写手机号即可
  774. let userInfoBindingKey = this.userInfo.customPhone;
  775. let userInfoBindingValue = this.userInfo.customName+this.userInfo.customIDCard;
  776. this.userInfoBinding[userInfoBindingKey] = userInfoBindingValue;
  777. if(this.userInfo.couponSn && this.userInfo.couponSn != ""){
  778. var coupon = vm.coupons.get(this.userInfo.couponSn);
  779. if(coupon == null){
  780. alert("请输入正确的优惠券码");
  781. return ;
  782. }
  783. }
  784. $("#Send").attr("data-dismiss","modal");
  785. $('#payModal').modal('show');
  786. $("#payCode").keydown(function(e){
  787. if(e.keyCode==13){
  788. $("#submitOrder").click();
  789. event.preventDefault();
  790. }
  791. });
  792. $('body').on('hidden.bs.modal', '.modal', function () {
  793. $(this).removeData();
  794. });
  795. },
  796. queryOrderDetail:function(orderSn,pickUpCode){
  797. var storeId = sessionStorage.getItem("storeId");;
  798. $.get("../order/orderDetail/"+orderSn, function (r) {
  799. if (r.code == 0) {
  800. vm.orderProcessRecord = r.resultObj.orderProcessRecordEntity;
  801. vm.orderEntity = r.resultObj.orderEntity;
  802. vm.goodsDetailList = r.resultObj.goodsList;
  803. vm.currentOrderNo = r.resultObj.orderEntity.id;
  804. vm.pickUpCode = pickUpCode;
  805. vm.tax = r.resultObj.tax;
  806. vm.response = r.resultObj.response;
  807. if(vm.orderProcessRecord.eleOrderStartTime){
  808. vm.orderProcessRecord.eleOrderStartTime = parsedate(vm.orderProcessRecord.eleOrderStartTime);
  809. }
  810. if(vm.orderProcessRecord.paymentStartTime){
  811. vm.orderProcessRecord.paymentStartTime = parsedate(vm.orderProcessRecord.paymentStartTime);
  812. }
  813. if(vm.orderProcessRecord.waybillStartTime){
  814. vm.orderProcessRecord.waybillStartTime = parsedate(vm.orderProcessRecord.waybillStartTime);
  815. }
  816. if(vm.orderProcessRecord.customsSuccTime){
  817. vm.orderProcessRecord.customsSuccTime = parsedate(vm.orderProcessRecord.customsSuccTime);
  818. }
  819. if(vm.orderProcessRecord.addOrderStartTime){
  820. vm.orderProcessRecord.addOrderStartTime = parsedate(vm.orderProcessRecord.addOrderStartTime);
  821. }
  822. }
  823. });
  824. },
  825. verification:function(){
  826. if(vm.orderProcessRecord.isCustomsSend != 1){
  827. alert("请等待清关完成");
  828. return ;
  829. }
  830. confirm('确认核销吗?', function () {
  831. $.ajax({
  832. type: "POST",
  833. url: "../order/printMsgAndChangeCode",
  834. contentType: "application/json",
  835. data: JSON.stringify({'id':vm.currentOrderNo,'sessionId':vm.sessionId}),
  836. success: function (r) {
  837. if (r.ticket != null) {
  838. // printArea(r.ticket);
  839. var content = getPrintContentOrder(r.ticket);
  840. printArea(content);
  841. }else{
  842. alert("打印小票失败");
  843. }
  844. }
  845. });
  846. })
  847. },
  848. refundOrder:function(){
  849. confirm('确认退款吗?', function () {
  850. $.ajax({
  851. type: "POST",
  852. url: "../order/orderRefund",
  853. contentType: "application/json",
  854. data: JSON.stringify({'orderId':vm.currentOrderNo,'sessionId':vm.sessionId}),
  855. success: function (r) {
  856. if (r.code == 0) {
  857. alert("退款成功")
  858. }else{
  859. alert("退款失败,请联系管理员");
  860. }
  861. }
  862. });
  863. })
  864. },
  865. retrySendOrder:function(){
  866. },
  867. getInfo: function (id) {
  868. $.get("../sys/notice/info/" + id, function (r) {
  869. vm.sysNotice = r.sysNotice;
  870. });
  871. },
  872. reload: function (event) {
  873. vm.showList = false;
  874. vm.showViewList = true;
  875. vm.showSaveSupplierGoods = true;
  876. var page = $("#jqGrid").jqGrid('getGridParam', 'page');
  877. $("#jqGrid").jqGrid('setGridParam', {
  878. postData: {
  879. storeId: vm.q.storeId,
  880. goodsName: vm.q.goodsName,
  881. goodsSn: vm.q.goodsSn,
  882. productSn: vm.q.productSn, category: vm.q.category, categoryTwo: vm.q.categoryTwo, goodsBizType:vm.q.goodsBizType,
  883. thirdPartyMerchCode: vm.q.thirdPartyMerchCode
  884. },
  885. page: page
  886. }).trigger("reloadGrid");
  887. vm.handleReset('formValidate');
  888. },
  889. handleSubmit: function (name) {
  890. handleSubmitValidate(this, name, function () {
  891. vm.saveOrUpdate()
  892. });
  893. },
  894. handleReset: function (name) {
  895. handleResetForm(this, name);
  896. },
  897. logout: function () {
  898. confirm('注:您确定要安全退出本次登录吗?', function () {
  899. dialogLoading(true);
  900. setTimeout(function () {
  901. toUrl('../logout?_' + $.now());
  902. }, 500);
  903. });
  904. }
  905. }
  906. });
  907. function getPrintContent(ticket) {
  908. var content = "<div style=\"width: 250px;font-family: 微软雅黑;font-size: 15px;\">";
  909. // // 打印ogo
  910. // content += "<div style=\"text-align: center;width: 100%;height: 50px;\">";
  911. // // content += "<img src='./../../statics/img/cw_logo.png' />";
  912. // // content += "2222222222";
  913. // content += "<img src='/statics/img/cw_logo.png' style='width: 100%;height: 100%;' />";
  914. // content += "</div>";
  915. //小票头
  916. content += "<div style=\"text-align: center;width: 100%;font-weight:bold;font-size: 15px;\">";
  917. content += ticket.shopName
  918. content += "</div>";
  919. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  920. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  921. /*content += "收银机号:" + ticket.salesNo;
  922. content += "</div>";
  923. content += "<div style=\"width: 100%;\">";*/
  924. content += "收银员:" + ticket.userName;
  925. content += "</div>";
  926. content += "<div style=\"width: 100%;font-size: 30px;margin:15px 0 10px 5px;\">";
  927. content += "取货码:" + ticket.code;
  928. content += "</div>";
  929. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  930. content += "订单编号:" + ticket.orderNo;
  931. content += "</div>";
  932. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  933. content += "打印日期:" + ticket.time;
  934. content += "</div>";
  935. content += "<div style=\"width: 100%;margin:5px 0px;font-size: 13px;\">";
  936. content += "该取货单号只有当天有效"
  937. content += "</div>";
  938. content += "</div>";
  939. return content;
  940. }
  941. var printAreaCount = 0;
  942. function printArea(content) {
  943. var idPrefix = "printArea_";
  944. removePrintArea(idPrefix + printAreaCount);
  945. ++printAreaCount;
  946. var iframeId = idPrefix + printAreaCount;
  947. var iframeStyle = 'width:0px;height:0px;left:0px;top:0px;';
  948. iframe = document.createElement('IFRAME');
  949. $(iframe).attr({
  950. style: iframeStyle,
  951. id: iframeId
  952. });
  953. document.body.appendChild(iframe);
  954. var doc = iframe.contentWindow.document;
  955. // doc.open();
  956. doc.write('<div class="">' + content
  957. + '</div>');
  958. doc.close();
  959. var frameWindow = iframe.contentWindow;
  960. if(!vm.firstPrint){
  961. setTimeout(function() {
  962. // frameWindow.close();
  963. frameWindow.focus();
  964. frameWindow.print();
  965. frameWindow.print();
  966. alert('打印小票完成');
  967. },250);
  968. vm.firstPrint = true;
  969. }else{
  970. // frameWindow.close();
  971. frameWindow.focus();
  972. frameWindow.print();
  973. frameWindow.print();
  974. alert('打印小票完成');
  975. }
  976. }
  977. function printArea2(content) {
  978. var idPrefix = "printArea_";
  979. removePrintArea(idPrefix + printAreaCount);
  980. printAreaCount++;
  981. var iframeId = idPrefix + printAreaCount;
  982. var iframeStyle = 'width:0px;height:0px;left:0px;top:0px;';
  983. iframe = document.createElement('IFRAME');
  984. $(iframe).attr({
  985. style: iframeStyle,
  986. id: iframeId
  987. });
  988. document.body.appendChild(iframe);
  989. var doc = iframe.contentWindow.document;
  990. doc.open();
  991. doc.write('<div class="">' + content
  992. + '</div>');
  993. doc.close();
  994. var frameWindow = iframe.contentWindow;
  995. frameWindow.focus();
  996. frameWindow.print();
  997. frameWindow.print();
  998. frameWindow.close();
  999. }
  1000. var removePrintArea = function (id) {
  1001. $("iframe#" + id).remove();
  1002. };
  1003. var webSocket;
  1004. function openWebSocket() {
  1005. var storeId = sessionStorage.getItem("storeId");
  1006. if ("WebSocket" in window) {
  1007. console.log("当前浏览器支持WebSocket");
  1008. //实现化WebSocket对象
  1009. //指定要连接的服务器地址与端口建立连接
  1010. //注意ws、wss使用不同的端口。我使用自签名的证书测试,
  1011. //无法使用wss,浏览器打开WebSocket时报错
  1012. //ws对应http、wss对应https。
  1013. // webSocket = new WebSocket("ws://183.62.225.124:8080/ws/server/"+storeId);
  1014. // webSocket = new WebSocket("ws://127.0.0.1:8080//ws/server/"+storeId);
  1015. webSocket = new WebSocket("wss://cb.k1net.cn/ws/server/"+storeId);
  1016. if (webSocket.readyState === webSocket.CONNECTING) {
  1017. console.log('1.连接正在打开......');
  1018. }
  1019. // ---------- WebSocket 对象注册事件 ----------
  1020. //连接打开事件
  1021. webSocket.onopen = function () {
  1022. if (webSocket.readyState === webSocket.OPEN) {
  1023. console.log('2.连接已打开');
  1024. }
  1025. console.log('2.向服务端发送测试消息......');
  1026. // webSocket.send("2.client发测试消息:Client sent test msg。");
  1027. };
  1028. //收到消息事件
  1029. webSocket.onmessage = function (msg) {
  1030. var data = Object.assign({}, JSON.parse(msg.data));
  1031. console.log('3.接收到服务端信息......data:'+data);
  1032. vm.sessionId = data.sessionId;
  1033. vm.pickUpCodeList = [];
  1034. if(data.pickUpCodeList.length > 0){
  1035. for(var i = 0 ; i < data.pickUpCodeList.length ; i++){
  1036. console.log(data.pickUpCodeList[i].storeId);
  1037. if(data.pickUpCodeList[i].storeId === storeId){
  1038. vm.pickUpCodeList.push(data.pickUpCodeList[i]);
  1039. }
  1040. }
  1041. }
  1042. // vm.pickUpCodeList = vm.pickUpCodeList.concat(data.pickUpCodeList);
  1043. // console.log(vm.pickUpCodeList);
  1044. // webSocket.send("2.client发测试消息:Client sent test msg。");
  1045. };
  1046. //连接关闭事件
  1047. webSocket.onclose = function () {
  1048. if (!webSocket) {
  1049. console.log('4.Socket连接已关闭');
  1050. }
  1051. };
  1052. //发生了错误事件
  1053. webSocket.onerror = function () {
  1054. console.log("5.Socket发生了错误");
  1055. }
  1056. } else {
  1057. console.log("当前浏览器不支持WebSocket");
  1058. return false;
  1059. }
  1060. }
  1061. function sendMessage() {
  1062. if(webSocket && webSocket.readyState === webSocket.OPEN) {
  1063. webSocket.send("client manual send message.")
  1064. } else {
  1065. console.log('6.未创建WebSocket连接');
  1066. }
  1067. }
  1068. function closeWebSocket() {
  1069. if (webSocket != null) {
  1070. webSocket.close();
  1071. webSocket = null;
  1072. }
  1073. console.log("关闭WebSocket");
  1074. }
  1075. //窗口关闭时,关闭连接
  1076. window.unload = function () {
  1077. webSocket.close();
  1078. };
  1079. function parsedate(value){
  1080. var date = new Date(value);
  1081. var year = date.getFullYear();
  1082. var month = date.getMonth()+1; //月份+1
  1083. var day = date.getDate();
  1084. var hour = date.getHours();
  1085. var minutes = date.getMinutes();
  1086. var second = date.getSeconds();
  1087. return year+"-"+month+"-"+day+" "+hour+":"+minutes +":"+second;
  1088. }
  1089. function getPrintContentOrder(ticket) {
  1090. var content = "<div style=\"width: 250px;font-family: 微软雅黑;font-size: 8px;\">";
  1091. // 打印ogo
  1092. content += "<div style=\"text-align: center;width: 100%;height: 260px;\">";
  1093. content += "<img src='/statics/img/cw_logo2.png' style='width: 100%;height: 100%;' />";
  1094. content += "</div>";
  1095. //小票头
  1096. content += "<div style=\"text-align: center;width: 100%;font-weight:bold;font-size: 13px;\">";
  1097. content += ticket.ticketHead.title;
  1098. content += "</div>";
  1099. /*content += "<div style=\"width: 100%;\">";
  1100. content += "会员:" + ticket.ticketHead.memberId;
  1101. content += "</div>";*/
  1102. content += "<div style=\"width: 100%;font-size: 25px;\">";
  1103. content += "取货码:" + vm.pickUpCode;
  1104. content += "</div>";
  1105. content += "<div style=\"width: 100%;\">";
  1106. content += "订单号:" + ticket.ticketHead.orderId;
  1107. content += "</div>";
  1108. content += "<div style=\"width: 100%;\">";
  1109. content += "交易时间:" + ticket.ticketHead.tradeTime;
  1110. content += "</div>";
  1111. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1112. //商品信息
  1113. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1114. content += "<tr>";
  1115. content += "<td style=\"width: 40%;text-align: left;font-size: 10px;font-weight: bold;\">商品名称</td>";
  1116. content += "<td style=\"width: 17%;text-align: right;font-size: 10px;font-weight: bold;\">单价</td>";
  1117. content += "<td style=\"width: 17%;text-align: right;font-size: 10px;font-weight: bold;\">优惠</td>";
  1118. // content += "<td style=\"width: 16%;text-align: right;font-size: 10px;font-weight: bold;\">税费</td>";
  1119. content += "<td style=\"width: 15%;text-align: right;font-size: 10px;font-weight: bold;\">数量</td>";
  1120. content += "<td style=\"width: 18%;text-align: right;font-size: 10px;font-weight: bold;\">小计</td>";
  1121. content += "</tr>";
  1122. content += "</table>";
  1123. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1124. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1125. for (var i=0;i< ticket.goods.length;i++){
  1126. content += "<tr>";
  1127. content += "<td style=\"width: 40%;text-align: left;font-size: 8px;padding-top: 8px;\">";
  1128. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1129. content += "<tr>";
  1130. content += "<td style=\"text-align: left;font-size: 8px;vertical-align:top;\">#</td>";
  1131. content += "<td style=\"text-align: left;font-size: 8px;\">" + ticket.goods[i].gname + "</td>";
  1132. content += "</tr>";
  1133. content += "</table>";
  1134. content += "</td>";
  1135. content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].uprice + "</td>";
  1136. content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].discountPrice + "</td>";
  1137. // content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].taxation + "</td>";
  1138. content += "<td style=\"width: 15%;text-align: center;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].num + "</td>";
  1139. content += "<td style=\"width: 18%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].subtotal + "</td>";
  1140. content += "</tr>";
  1141. }
  1142. content += "</table>";
  1143. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1144. //收银信息
  1145. content += "<div style=\"width: 100%;\">";
  1146. content += "<span style=\"float: left;width: 50%;text-align: left;\">商品合计:</span>";
  1147. content += "<span style=\"float: left;width: 17%;text-align: left;\">" + ticket.cashInfo.goodsTotal + "件</span>";
  1148. content += "<span style=\"float: right;width: 33%;text-align: right;\">" + ticket.cashInfo.total + "元</span>";
  1149. content += "</div>";
  1150. content += "<div style=\"width: 100%;\">";
  1151. content += "<span style=\"float: left;width: 50%;text-align: left;\">税费合计:</span>";
  1152. content += "<span style=\"float: left;width: 17%;text-align: left;\">" + ticket.cashInfo.goodsTotal + "件</span>";
  1153. content += "<span style=\"float: right;width: 33%;text-align: right;\">" + ticket.cashInfo.taxTotal + "元</span>";
  1154. content += "</div>";
  1155. content += "<div style=\"width: 100%;\">";
  1156. content += "<span style=\"float: left;width: 50%;text-align: left;\">优惠合计:</span>";
  1157. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.oddChange + "元</span>";
  1158. content += "</div>";
  1159. content += "<div style=\"width: 100%;\">";
  1160. content += "<span style=\"float: left;width: 50%;text-align: left;\">实收:</span>";
  1161. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.receipts + "元</span>";
  1162. content += "</div>";
  1163. content += "<div style=\"width: 100%;\">";
  1164. content += "<span style=\"float: left;width: 50%;text-align: left;\">优惠券:</span>";
  1165. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.coupon + "元</span>";
  1166. content += "</div>";
  1167. // content += "<div style=\"width: 100%;\">";
  1168. // content += "<span style=\"float: left;width: 50%;text-align: left;\">运费:</span>";
  1169. // content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.freight + "元</span>";
  1170. // content += "</div>";
  1171. content += "<div style=\"width: 100%;\">";
  1172. content += "<span style=\"float: left;width: 50%;text-align: left;\">支付渠道:</span>";
  1173. // 后期改成从系统中取
  1174. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + "支付宝支付" + "</span>";
  1175. content += "</div>";
  1176. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1177. //海关清单信息
  1178. content += "<div style=\"width: 100%;\">";
  1179. content += "订单号:" + ticket.cusListing.orderId;
  1180. content += "</div>";
  1181. content += "<div style=\"width: 100%;\">";
  1182. content += "运单编号:" + ticket.cusListing.waybillId;
  1183. content += "</div>";
  1184. content += "<div style=\"width: 100%;\">";
  1185. content += "海关清单号:" + ticket.cusListing.invtNo;
  1186. content += "</div>";
  1187. content += "<div style=\"width: 100%;\">";
  1188. content += "收货人:" + ticket.cusListing.consignee;
  1189. content += "</div>";
  1190. content += "<div style=\"width: 100%;\">";
  1191. content += "收货人电话:" + ticket.cusListing.consigneeTel;
  1192. content += "</div>";
  1193. content += "<div style=\"width: 100%;\">";
  1194. content += "始发地: 仓库地址 : 广东省深圳市南山区前海保税港区W104" ;
  1195. content += "</div>";
  1196. content += "<div style=\"width: 100%;\">";
  1197. content += "交货地:" + ticket.cusListing.deliveryAddress;
  1198. content += "</div>";
  1199. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1200. content += "<div style=\"width: 100%;text-align: center;\">";
  1201. content += "购买跨境商品须知:"
  1202. content += "</div>";
  1203. content += "<div style=\"width: 100%;\">";
  1204. content += "1、凡购买跨境商品均不提供发票;<br> 2、单笔限购5000元,年交易限额2.6万元; <br> 3、所有订单经海关放行后方可提货; <br> 4、凭小票领取您的订单商品; <br> 5、非产品质量问题,跨境商品不支持无理由退换货,请及时检查。 "
  1205. content += "</div>";
  1206. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1207. content += "<div style=\"width: 100%;\">";
  1208. // content += ticket.ticketFoot.summary;
  1209. content += "</div>";
  1210. content += "<div style=\"width: 100%;\">";
  1211. // content += "客服电话:" + ticket.ticketFoot.serviceTel;
  1212. content += "</div>";
  1213. content += "<div style=\"width: 100%;\">";
  1214. // content += "网址:" + ticket.ticketFoot.url1;
  1215. content += "</div>";
  1216. content += "<div style=\"width: 100%;\">";
  1217. content += ticket.ticketFoot.welcome;
  1218. content += "</div>";
  1219. content += "<div style=\"width: 100%;\">";
  1220. content += "惠州市惠城区港惠购物中心负一层";
  1221. content += "</div>";
  1222. content += "<div style=\"width: 100%;\">";
  1223. content += "请保管好收银小票。";
  1224. content += "</div>";
  1225. // 打印二维码
  1226. content += "<div style=\"text-align: center;width: 100%;height: 250px;\">";
  1227. content += "<img src='/statics/img/cw_qrcode.png' style='width: 100%;height: 100%;' />";
  1228. content += "</div>";
  1229. content += "<div style=\"width: 100%;text-align: center;\">";
  1230. content += "关注CW大药房客服号,获取更多优惠信息"
  1231. content += "</div>";
  1232. return content;
  1233. }
  1234. function queryAssistantInfo(){
  1235. $.get("../sys/user/info", function (r) {
  1236. if(r.code == 0){
  1237. vm.sysUserInfo = r.user;
  1238. $.get("../store/getStoresByMerch?merchSn="+r.user.merchSn+"&_=1590374349985",function(result){
  1239. if(result.code == 0){
  1240. for(var i = 0 ;i < result.list.length; i++){
  1241. if(result.list[i].id == r.user.storeId){
  1242. vm.storeName = result.list[i].storeName;
  1243. break;
  1244. }
  1245. }
  1246. }
  1247. });
  1248. }
  1249. });
  1250. }
  1251. function removeByValue(arr, val) {
  1252. var index = arr.indexOf(val);
  1253. if (index > -1) {
  1254. arr.splice(index, 1);
  1255. }
  1256. }
  1257. function handle(goodsDetails,operatorType){
  1258. vm.goodsDetail = true;
  1259. // goodsDetails.sellVolume = 1;
  1260. goodsDetails.id = vm.index;
  1261. if(!vm.goodsList[vm.index]){
  1262. vm.index = vm.max;
  1263. }
  1264. vm.max++;
  1265. goodsDetails.goodsDesc = "";
  1266. // 判断当前商品是否是赠品
  1267. var freeMap = vm.freeBardcode.get(goodsDetails.prodBarcode);
  1268. if(freeMap && "minus" != operatorType){
  1269. goodsDetails.actualPaymentAmount = 0;
  1270. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  1271. vm.freeBardcode.set(goodsDetails.prodBarcode,freeMap - 1);
  1272. }else{
  1273. if(!freeMap && freeMap != 0 ){
  1274. // 判断购物车中是否有赠品 这个操作只有是非赠品才能进来
  1275. for(var i = 0 ; i < vm.goodsList.length ; i++){
  1276. var shopcartGoods = vm.goodsList[i];
  1277. var shopcartFree = vm.freeBardcode.get(shopcartGoods.prodBarcode);
  1278. if(shopcartFree /*&& shopcartGoods.actualPaymentAmount*/){
  1279. // if("minus" != operatorType){
  1280. var shopcartSellNum = shopcartGoods.sellVolume;
  1281. if(shopcartFree > shopcartSellNum){
  1282. shopcartGoods.actualPaymentAmount = 0;
  1283. shopcartGoods.discountedPrice = shopcartGoods.retailPrice * shopcartFree;
  1284. vm.discountedPrice = vm.discountedPrice + shopcartGoods.discountedPrice ;
  1285. vm.actualPrice = vm.actualPrice + shopcartGoods.actualPaymentAmount ;
  1286. vm.freeBardcode.set(shopcartGoods.prodBarcode,shopcartFree - 1);//
  1287. }else if(shopcartFree == -1 ){
  1288. // g.actualPaymentAmount == 0){
  1289. shopcartGoods.actualPaymentAmount = shopcartGoods.retailPrice + shopcartGoods.actualPaymentAmount;
  1290. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice - shopcartGoods.retailPrice;
  1291. vm.discountedPrice = vm.discountedPrice + shopcartGoods.discountedPrice ;
  1292. vm.actualPrice = vm.actualPrice + shopcartGoods.actualPaymentAmount ;
  1293. vm.freeBardcode.set(shopcartGoods.prodBarcode,0);// 重置回0
  1294. }else{
  1295. if(shopcartGoods.actualPaymentAmount > 0){
  1296. shopcartGoods.actualPaymentAmount = shopcartGoods.actualPaymentAmount - (shopcartGoods.retailPrice * shopcartFree);
  1297. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice + (shopcartGoods.retailPrice * shopcartFree);
  1298. vm.actualPrice = vm.actualPrice - (shopcartGoods.retailPrice * shopcartFree) ;
  1299. vm.discountedPrice = vm.discountedPrice + (shopcartGoods.retailPrice * shopcartFree) ;
  1300. vm.freeBardcode.set(shopcartGoods.prodBarcode, shopcartFree - 1);// 重置回0
  1301. }
  1302. }
  1303. // }
  1304. }
  1305. }
  1306. }
  1307. }
  1308. goodsDetails.discountedPrice = Math.round(goodsDetails.discountedPrice * 100) / 100;
  1309. goodsDetails.actualPaymentAmount = Math.round(goodsDetails.actualPaymentAmount * 100) / 100;
  1310. var data = Object.assign({}, JSON.parse(JSON.stringify(goodsDetails)));
  1311. var isPush = true;
  1312. // 判断当前商品是否添加过
  1313. for(var i = 0 ; i < vm.goodsList.length ; i++){
  1314. if(vm.goodsList[i].goodsSn == data.goodsSn){
  1315. var goodsDetails = vm.goodsList[i];
  1316. if(data.actualPaymentAmount < 0 && goodsDetails.actualPaymentAmount == 0){
  1317. // goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) - parseFloat(data.goodstaxes)) * 100)/100;
  1318. // goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) - parseFloat(data.discountedPrice)) * 100)/100;
  1319. goodsDetails.actualPaymentAmount = 0;
  1320. }else{
  1321. // 税 goodstaxes,优惠金额 discountedPrice,实际支付 actualPaymentAmount,数量 sellVolume 45636917
  1322. goodsDetails.actualPaymentAmount = Math.round((parseFloat(goodsDetails.actualPaymentAmount) + parseFloat(data.actualPaymentAmount)) * 100)/100;
  1323. }
  1324. goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) + parseFloat(data.discountedPrice)) * 100)/100;
  1325. goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) + parseFloat(data.goodstaxes)) * 100)/100;
  1326. goodsDetails.sellVolume = Math.round((parseFloat(goodsDetails.sellVolume) + parseFloat(data.sellVolume)) * 100)/100;
  1327. goodsDetails.activity = data.activity;
  1328. isPush = false;
  1329. break;
  1330. }
  1331. }
  1332. // for(var i = 0 ; i < vm.goodsList.length ; i++){
  1333. // if(vm.goodsList[i].goodsSn == data.goodsSn){
  1334. // var goodsDetails = vm.goodsList[i];
  1335. // // 税 goodstaxes,优惠金额 discountedPrice,实际支付 actualPaymentAmount,数量 sellVolume 45636917
  1336. // goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) + parseFloat(data.goodstaxes)) * 100)/100;
  1337. // goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) + parseFloat(data.discountedPrice)) * 100)/100;
  1338. // goodsDetails.actualPaymentAmount = Math.round((parseFloat(goodsDetails.actualPaymentAmount) + parseFloat(data.actualPaymentAmount)) * 100)/100;
  1339. // goodsDetails.sellVolume = Math.round((parseFloat(goodsDetails.sellVolume) + parseFloat(data.sellVolume)) * 100)/100;
  1340. // goodsDetails.activity = data.activity;
  1341. // isPush = false;
  1342. // break;
  1343. // }
  1344. // }
  1345. if(isPush){
  1346. vm.goodsList.push(data);
  1347. vm.index = vm.index + 1;
  1348. }
  1349. vm.totalPrice = (vm.totalPrice + data.retailPrice);
  1350. if(vm.reduceMoney > 0){
  1351. vm.discountedPrice = vm.discountedPrice + data.discountedPrice + vm.reduceMoney;
  1352. vm.actualPrice = vm.actualPrice + data.actualPaymentAmount - vm.reduceMoney;
  1353. vm.showReduceMoney = vm.showReduceMoney + vm.reduceMoney;
  1354. vm.reduceMoney = 0;
  1355. }else{
  1356. vm.discountedPrice = vm.discountedPrice + data.discountedPrice ;
  1357. vm.actualPrice = vm.actualPrice + data.actualPaymentAmount ;
  1358. }
  1359. if(data.sellVolume < 0){
  1360. data.sellVolume = - data.sellVolume;
  1361. data.retailPrice = - data.retailPrice;
  1362. data.goodstaxes = -data.goodstaxes;
  1363. }
  1364. vm.goods = data;
  1365. // 处理精度
  1366. vm.totalPrice = Math.round(vm.totalPrice * 100) / 100;
  1367. vm.discountedPrice = Math.round(vm.discountedPrice * 100) / 100;
  1368. vm.actualPrice = Math.round(vm.actualPrice * 100) / 100;
  1369. vm.showReduceMoney = Math.round(vm.showReduceMoney * 100) / 100;
  1370. }
  1371. function toPayOrder(payCode){
  1372. $('#payCode').unbind('keydown').keydown(function(event){});
  1373. vm.machineCode = sessionStorage.getItem("machineCode");
  1374. console.log(vm.machineCode);
  1375. var param = {'userInfo':vm.userInfo,'payCode':vm.parCode,'goodsList':vm.goodsList,'sessionId':vm.sessionId,'machineCode':vm.machineCode};
  1376. console.log(JSON.stringify(param));
  1377. vm.parCode = "";
  1378. $.ajax({
  1379. type: "POST",
  1380. url: "../order/orderConfirm",
  1381. contentType: "application/json",
  1382. data: JSON.stringify(param),
  1383. success: function (r) {
  1384. console.log(r);
  1385. if (r.code == 0) {
  1386. if (r.resultObj != null) {
  1387. $(".form-group input[type=text]").each(function(){
  1388. this.value = '';
  1389. })
  1390. // 打印取货码小票
  1391. var content = getPrintContent(r.resultObj);
  1392. console.log(content);
  1393. printArea2(content);
  1394. vm.goodsList = [];
  1395. vm.customname = '' ;
  1396. vm.customidcard = '';
  1397. vm.customClearData();
  1398. }else{
  1399. // alert("打印小票失败");
  1400. }
  1401. } else {
  1402. alert(r.msg);
  1403. }
  1404. }
  1405. });
  1406. }