sale.js 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. $(function () {
  2. addressInit('cmbProvince', 'cmbCity', 'cmbArea', '---请选择---', '---请选择---', '---请选择---');
  3. $('.sendShow').hide();
  4. openWebSocket();
  5. queryAssistantInfo();
  6. var cwQrcode = new Image();
  7. var cwLogo2 = new Image();
  8. cwQrcode.src = "http://8.135.102.238:8080/statics/img/cw_qrcode.png";
  9. cwLogo2.src = "http://8.135.102.238:8080/statics/img/cw_logo2.png";
  10. vm.queryGoods();
  11. });
  12. window.onbeforeunload = function(){
  13. closeWebSocket();
  14. }
  15. // addressInit('Select1', 'Select2', 'Select3');
  16. function debounce(fn,delay){
  17. var timer=null
  18. return function(){
  19. console.log(timer);
  20. if(timer){
  21. clearTimeout(timer)
  22. }
  23. timer = setTimeout(fn,delay)
  24. }
  25. }
  26. function calculateGoodsPrice(r){
  27. var rMap = r.map;
  28. var barCode = r.goodsDetails.prodBarcode;
  29. var brand = r.goodsDetails.brand;
  30. console.log(rMap);
  31. if(rMap.yhq){
  32. for(var i in rMap.yhq){
  33. vm.coupons.set(i,rMap.yhq[i]);
  34. }
  35. }
  36. // 是否有满减活动
  37. if(rMap.mj){
  38. if(rMap.mj[barCode] && !vm.mj.get(barCode)){
  39. // 该商品是否已经有过满减活动
  40. vm.mj.set(barCode,rMap.mj[barCode]);
  41. }else if(rMap.mj[brand] && !vm.mj.get(brand)){
  42. // 该品牌是否已经有过满减活动
  43. vm.mj.set(brand,rMap.mj[brand]);
  44. }
  45. }
  46. if(rMap.mysy){
  47. // 买的条码, 买的数量,送的条码,送的数量
  48. var mysy = {
  49. buyNum:rMap.mysy.buyNum,
  50. giftBarcode:rMap.mysy.giftBarcode,
  51. sendNum:rMap.mysy.sendNum
  52. };
  53. if(rMap.mysy.brand){
  54. vm.brandGetOneFree.set(rMap.mysy.productBrand,mysy);
  55. }else{
  56. vm.barcodeGetOneFree.set(rMap.mysy.barcode , mysy);
  57. }
  58. }
  59. if(rMap.mz){
  60. if(rMap.mz[barCode] && !vm.mz.get(barCode)){
  61. // 该商品是否已经有过满赠活动
  62. vm.mz.set(barCode,rMap.mz[barCode]);
  63. }else if(rMap.mz[brand] && !vm.mz.get(brand)){
  64. // 该品牌是否已经有过满赠活动
  65. vm.mz.set(brand,rMap.mz[brand]);
  66. }
  67. }
  68. if(rMap.drjbj){
  69. if(!vm.halfPrice.get(rMap.drjbj.barcode)){
  70. vm.halfPrice.set(rMap.drjbj.barcode,1);
  71. }
  72. }
  73. // if(rMap.zhjsp){
  74. // // 遍历该商品所有可能的组合价商品类型
  75. // for(var data in rMap.zhjsp){
  76. // if(!vm.zhjsp.get(data)){
  77. // // 分割组合价商品的条码,并以 条码:0 放入map中
  78. // var barCodeArray = data.toString().split(":");
  79. // var dataMap = new Map();
  80. // console.log(rMap.zhjsp[data]);
  81. // // dataMap.set();
  82. // for(var j = 0 ; j < barCodeArray.length ; j ++){
  83. // dataMap.set(barCodeArray[j],0);
  84. // }
  85. // vm.combinationPrice.set(data,rMap.zhjsp[data][0].combinedPrice)
  86. //
  87. // vm.zhjsp.set(data,dataMap);
  88. // }
  89. // }
  90. //
  91. // }
  92. // calculateGoodsByMj(r.goodsDetails,"add");
  93. calculateGoodsByMysy(r.goodsDetails,"add");
  94. calculateGoodsByMz(r.goodsDetails,"add");
  95. calculateGoodsByHalfPrice(r.goodsDetails,"add");
  96. // calculateGoodsByZhjsp(r);
  97. }
  98. // ==================== 满减==========================
  99. // 满减
  100. function calculateGoodsByMj(goodsDetails,type){
  101. if(vm.mj.get(goodsDetails.prodBarcode)){
  102. fullReduction(goodsDetails,goodsDetails.prodBarcode);
  103. }else if(vm.mj.get(goodsDetails.brand)){
  104. fullReduction(goodsDetails,goodsDetails.brand);
  105. }
  106. }
  107. // 满减的计算内容
  108. function fullReduction(goodsDetails,key){
  109. // 获取满减条件金额
  110. var qualifiedAmount = vm.mj.get(key).qualifiedAmount;
  111. // 获取已累积金额
  112. var money = vm.accumulatedAmount.get(key);
  113. if(isNaN(money)){
  114. money = goodsDetails.retailPrice;
  115. }else{
  116. money = money + goodsDetails.retailPrice;
  117. }
  118. if(money >= qualifiedAmount){
  119. vm.reduceMoney += vm.mj.get(key).deductionAmount; // 达到满减金额,获取扣减的额度
  120. vm.mj.delete(key); // 获取后删除该商品的满减
  121. vm.accumulatedAmount.delete(key); // 删除满减的金额
  122. }else{
  123. vm.accumulatedAmount.set(key,money);
  124. }
  125. }
  126. // ============================= 第二件半价==========================
  127. function calculateGoodsByHalfPrice(goodsDetails,type){
  128. var half = vm.halfPrice.get(goodsDetails.prodBarcode);
  129. if(half){
  130. var discountPrice = goodsDetails.retailPrice / 2;
  131. if(type == "add"){
  132. // 等于一的话,不满足条件
  133. if(half == 1){
  134. vm.halfPrice.set(goodsDetails.prodBarcode,2);
  135. }else if(half == 2){
  136. goodsDetails.actualPaymentAmount = discountPrice;
  137. goodsDetails.discountedPrice = discountPrice;
  138. vm.halfPrice.set(goodsDetails.prodBarcode,1);
  139. }
  140. }else if(type == "minus"){
  141. if(half == 2){
  142. goodsDetails.actualPaymentAmount = goodsDetails.actualPaymentAmount ;
  143. vm.halfPrice.set(goodsDetails.prodBarcode,1);
  144. }else if(half == 1){
  145. goodsDetails.actualPaymentAmount = goodsDetails.actualPaymentAmount - discountPrice;
  146. goodsDetails.discountedPrice = discountPrice;
  147. vm.halfPrice.set(goodsDetails.prodBarcode,2);
  148. }
  149. }
  150. }
  151. }
  152. // ============================= 满赠 ==============================
  153. // 满赠
  154. function calculateGoodsByMz(goodsDetails,type){
  155. // 判断当前支付金额是否满足满赠金额,若满足,直接修改金额为1
  156. var mzGoods = vm.mz.get(goodsDetails.prodBarcode);
  157. if(mzGoods){
  158. var mzPrice = mzGoods.qualifiedAmount;
  159. if(mzPrice < vm.actualPrice && !mzGoods.useMz){
  160. mzGoods.useMz = true;
  161. goodsDetails.actualPaymentAmount = 1;
  162. goodsDetails.discountedPrice = goodsDetails.retailPrice - 1;
  163. }
  164. }
  165. // // 1.满赠的商品是不是自己,遍历满赠商品数组
  166. // isSend(vm.fullGiftCode,goodsDetails,"满赠");
  167. //
  168. // if(vm.mz.get(goodsDetails.prodBarcode)){
  169. // fullGift(goodsDetails,goodsDetails.prodBarcode);
  170. // }else if(vm.mz.get(goodsDetails.brand)){
  171. // fullGift(goodsDetails,goodsDetails.brand);
  172. // }
  173. }
  174. function fullGift(goodsDetails,key){
  175. // 获取满赠条件金额
  176. var qualifiedAmount = vm.mz.get(key).qualifiedAmount;
  177. // 获取已累积金额
  178. var money = vm.accumulatedAmountForFullGift.get(key);
  179. if(isNaN(money)){
  180. money = goodsDetails.retailPrice;
  181. }else{
  182. money = money + goodsDetails.retailPrice;
  183. }
  184. // 达到满赠的要求
  185. if(money >= qualifiedAmount){
  186. // 将满赠的商品放入数组中,重置金额
  187. vm.fullGiftCode.push(vm.mz.get(key).giftBarcode);
  188. vm.mz.delete(key); // 获取后删除该商品的满减
  189. vm.accumulatedAmountForFullGift.delete(key); // 删除满减的金额
  190. // 2.购物车的商品里面是否有满赠的商品
  191. shopCartContain(vm.fullGiftCode,goodsDetails,"满赠");
  192. }else{
  193. vm.accumulatedAmountForFullGift.set(key,money);
  194. }
  195. }
  196. // 买一送一
  197. function calculateGoodsByMysy(goodsDetails,type){
  198. var mysy = vm.barcodeGetOneFree.get(goodsDetails.prodBarcode);
  199. var brandMysy = vm.brandGetOneFree.get(goodsDetails.brand);
  200. if(mysy){
  201. var buyNum = mysy.buyNum;
  202. if(type == "add"){
  203. // 证明是买一送一,并且达到买一送一的条件
  204. if(buyNum == 1 && vm.boughtNum.get(goodsDetails.prodBarcode)){
  205. // 设置赠品的单价
  206. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  207. goodsDetails.actualPaymentAmount = 0;
  208. // goodsDetails.activity = "买1送1";
  209. // 清除该商品买一送一条件
  210. vm.boughtNum.delete(goodsDetails.prodBarcode);
  211. return ;
  212. }
  213. // 如果不是买一送一,而是买n送n,先获取购物车已有该类型商品数量
  214. var boughtNum = vm.boughtNum.get(goodsDetails.prodBarcode);
  215. // 如果没有,置为1
  216. if(!boughtNum){
  217. vm.boughtNum.set(goodsDetails.prodBarcode , 1);
  218. return ;
  219. }
  220. // 走到这里,证明购买过该类型商品,且数量不是买一送一的
  221. // 如果相等,证明达到送的条件
  222. if(buyNum === boughtNum){
  223. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  224. goodsDetails.actualPaymentAmount = 0;
  225. // goodsDetails.activity = "买"+buyNum+"送1";
  226. // 清除该商品买一送一条件
  227. vm.boughtNum.delete(goodsDetails.prodBarcode);
  228. console.log(vm.boughtNum);
  229. }else{
  230. // 如果不相等,已经购买数量+1
  231. vm.boughtNum.set(goodsDetails.prodBarcode , boughtNum+1);
  232. }
  233. }else if (type == "minus"){
  234. // 获取该产品要买n送1 的n
  235. // 获取已经购买的数量
  236. var boughtNum = goodsDetails.sellVolume;
  237. // 减一后,不满足买一送一条件,重新计算金额
  238. // 如果不等于0,要减去价格
  239. var remainder = 0;
  240. if(boughtNum > buyNum+1){
  241. remainder = buyNum - (boughtNum % (buyNum+1)) ;
  242. }else{
  243. remainder = buyNum - ((buyNum+1) %boughtNum ) ;
  244. }
  245. if(boughtNum % (buyNum+1) != 0){
  246. // console.log("我要减去价格,也要减去数量,减去数量=" + goodsDetails.sellVolume);
  247. goodsDetails.actualPaymentAmount = goodsDetails.retailPrice;
  248. goodsDetails.discountedPrice = 0;
  249. // 如果等于0,只用减去数量跟优惠价,并恢复活动
  250. }else{
  251. // console.log("我不用减去价格,只要减去数量");
  252. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  253. goodsDetails.actualPaymentAmount = 0;
  254. }
  255. goodsDetails.sellVolume = 1;
  256. vm.boughtNum.set(goodsDetails.prodBarcode,remainder);
  257. }
  258. }
  259. if(brandMysy){
  260. var buyNum = brandMysy.buyNum;
  261. if(type == "add"){
  262. // 如果不是买一送一,而是买n送n,先获取购物车已有该类型商品数量
  263. var boughtNum = vm.boughtNum.get(goodsDetails.brand);
  264. // 如果没有,置为1
  265. if(!boughtNum){
  266. vm.boughtNum.set(goodsDetails.brand , 1);
  267. return ;
  268. }
  269. // 走到这里,证明购买过该类型商品,且数量不是买一送一的
  270. // 如果相等,证明达到送的条件
  271. if(buyNum === boughtNum + 1){
  272. var mysyNum = vm.freeBardcode.get(brandMysy.giftBarcode);
  273. if(!mysyNum){
  274. mysyNum = 0;
  275. }
  276. vm.freeBardcode.set(brandMysy.giftBarcode,mysyNum + 1);
  277. vm.boughtNum.set(goodsDetails.brand,0);
  278. }else{
  279. // 如果不相等,已经购买数量+1
  280. vm.boughtNum.set(goodsDetails.brand , boughtNum+1);
  281. }
  282. }else if (type == "minus"){
  283. var mysyNum = vm.boughtNum.get(goodsDetails.brand);
  284. if(mysyNum == 0){
  285. if(vm.freeBardcode.get(brandMysy.giftBarcode) == 0){
  286. vm.freeBardcode.set(brandMysy.giftBarcode,-1);
  287. }else{
  288. vm.freeBardcode.set(brandMysy.giftBarcode,vm.freeBardcode.get(brandMysy.giftBarcode) - 1);
  289. }
  290. vm.boughtNum.set(goodsDetails.brand,buyNum - 1);
  291. }else{
  292. vm.boughtNum.set(goodsDetails.brand,mysyNum - 1);
  293. }
  294. // var freeNum = vm.freeBardcode.get(brandMysy.giftBarcode);
  295. // if(freeNum > 0){
  296. // vm.freeBardcode.set(brandMysy.giftBarcode,freeNum - 1);
  297. //
  298. // }
  299. }
  300. }
  301. // 判断当前商品是否为赠品
  302. // isSend(vm.mysy,goodsDetails,"买一送一");
  303. // 判断购物车里面是否有商品为赠品
  304. // shopCartContain(vm.mysy,goodsDetails,"买一送一");
  305. }
  306. // 判断当前商品是否为赠品
  307. function isSend(activity,goodsDetails,activityName){
  308. if(activity.indexOf(goodsDetails.prodBarcode) >= 0){
  309. // 如果符合条件,把赠送的条码给删除(一次性)
  310. var index = activity.indexOf(goodsDetails.prodBarcode);
  311. activity.splice(index,1);
  312. // 设置赠品的单价
  313. goodsDetails.discountedPrice = goodsDetails.retailPrice - 1;
  314. goodsDetails.actualPaymentAmount = 1;
  315. }
  316. }
  317. // 判断购物车里面是否有商品为赠品
  318. function shopCartContain(activity,goodsDetails,activityName){
  319. if(vm.goodsList && vm.goodsList.length > 0 ){
  320. for(var i = 0 ; i < vm.goodsList.length ; i ++){
  321. // 如果有商品为赠品,则把价格置位0并跳出循环
  322. if(activity.indexOf(vm.goodsList[i].prodBarcode) >= 0 && vm.goodsList[i].actualPaymentAmount != 0){
  323. // 如果符合条件,把赠送的条码给删除(一次性)
  324. var index = vm.mysy.indexOf(goodsDetails.prodBarcode);
  325. activity.splice(index,1);
  326. vm.goodsList[i].discountedPrice = vm.goodsList[i].retailPrice;
  327. vm.goodsList[i].actualPaymentAmount = 0;
  328. vm.goodsList[i].activity = activityName;
  329. vm.discountedPrice = vm.discountedPrice + vm.goodsList[i].retailPrice ;
  330. vm.actualPrice = vm.actualPrice - vm.goodsList[i].retailPrice ;
  331. break;
  332. }
  333. }
  334. }
  335. }
  336. // ======================= 组合价商品 ============================
  337. // 组合价商品
  338. function calculateGoodsByZhjsp(r){
  339. var barCode = r.goodsDetails.prodBarcode;
  340. if(r.map.zhjsp){
  341. // 将有组合的商品设置为1 ps:{"flag" => 0, "4005808550739" => 1, "4305615120454" => 0}
  342. vm.zhjsp.forEach(function(value,key,map){
  343. // 将组合价中组合的产品出现的次数+1
  344. value.forEach(function(v, k ,m){
  345. if(k === barCode)
  346. m.set(k,v+1);
  347. });
  348. var flag = 1;
  349. // 判断是否有商品成功组合
  350. value.forEach(function(v, k ,m){
  351. if(v === 0)
  352. flag = 0;
  353. });
  354. if(flag === 1){
  355. var combinationPrice = vm.combinationPrice.get(key);
  356. var barCodeArr = key.toString().split(":");
  357. // 扫码的商品条码 barCode
  358. for(var i = 0 ; i < barCodeArr.length ; i ++){
  359. var oldCode = barCodeArr[i];
  360. if(oldCode === barCode){
  361. continue;
  362. }
  363. if(vm.compareCombinationPrice.get(oldCode) && vm.compareCombinationPrice.get(oldCode) > combinationPrice){
  364. // 获取原组合关系
  365. var relationshipKey = vm.combinationRelationship.get(oldCode);
  366. // 将价格设置回原来的价格
  367. var keyArr = relationshipKey.toString().split(":");
  368. // 遍历原来的组合
  369. for(var j = 0 ; j < keyArr.length ; j ++){
  370. // 遍历购物车中原来的商品,替换价格
  371. for(var k = 0 ; k < vm.goodsList.length ; k ++){
  372. if(vm.goodsList[k].prodBarcode === keyArr[j] && vm.goodsList[k].activity == "组合价"){
  373. vm.discountedPrice = vm.discountedPrice - vm.goodsList[k].discountedPrice ;
  374. vm.actualPrice = vm.actualPrice + vm.goodsList[k].discountedPrice ;
  375. vm.goodsList[k].discountedPrice = 0 ; // 优惠价格
  376. vm.goodsList[k].actualPaymentAmount = vm.goodsList[k].retailPrice; // 实际支付价格
  377. vm.goodsList[k].isCombination = 0;
  378. vm.goodsList[k].activity = "";
  379. vm.compareCombinationPrice.delete(vm.goodsList[k].prodBarcode);
  380. vm.combinationRelationship.delete(vm.goodsList[k].prodBarcode);
  381. }
  382. }
  383. }
  384. }
  385. }
  386. for( var i = 0 ; i < barCodeArr.length ; i ++ ){
  387. // 如果是扫描的产品,直接退出,因为购物车中无该产品
  388. if(barCodeArr[i] == barCode){
  389. r.goodsDetails.isCombination = 1;
  390. r.goodsDetails.discountedPrice = r.goodsDetails.retailPrice - combinationPrice; // 优惠价格
  391. r.goodsDetails.actualPaymentAmount = combinationPrice; // 实际支付价格
  392. r.goodsDetails.activity = "组合价";
  393. vm.compareCombinationPrice.set(barCode,r.goodsDetails.actualPaymentAmount);
  394. vm.combinationRelationship.set(barCode,key);
  395. continue;
  396. }
  397. for(var j = 0 ; j < vm.goodsList.length ; j ++){
  398. if(vm.goodsList[j].prodBarcode === barCodeArr[i] && !vm.goodsList[j].isCombination){
  399. vm.goodsList[j].discountedPrice = vm.goodsList[j].retailPrice ; // 优惠价格
  400. vm.goodsList[j].actualPaymentAmount = 0; // 实际支付价格
  401. vm.goodsList[j].isCombination = 1;
  402. vm.goodsList[j].activity = "组合价";
  403. vm.discountedPrice = vm.discountedPrice + vm.goodsList[j].retailPrice ; // 总的优惠金额
  404. vm.actualPrice = vm.actualPrice - vm.goodsList[j].retailPrice ; // 总的实际支付金额
  405. vm.compareCombinationPrice.set(vm.goodsList[j].prodBarcode,vm.goodsList[j].actualPaymentAmount);
  406. vm.combinationRelationship.set(vm.goodsList[j].prodBarcode,barCode,key);
  407. break;
  408. }
  409. }
  410. }
  411. // 扣减
  412. var updateMap = map.get(key);
  413. updateMap.forEach(function(v, k ,m){
  414. m.set(k,v-1);
  415. });
  416. }
  417. });
  418. }
  419. console.log(vm.compareCombinationPrice);
  420. }
  421. const delay = (function () {
  422. let timer = 0;
  423. return function (callback, ms) {
  424. clearTimeout(timer);
  425. timer = setTimeout(callback.ms)
  426. }
  427. });
  428. let vm = new Vue({
  429. el: '#rrapp',
  430. data: {
  431. showList: true,
  432. goodsDetail:false,
  433. title: null,
  434. goods:{},
  435. orderSn:"",
  436. orderSn1:"",
  437. sysNotice: {},
  438. goodsList:[],
  439. orderInfo:[],
  440. userInfo:{},
  441. //user信息绑定集合
  442. userInfoBinding: {},
  443. sysUserInfo:{},
  444. storeName:null,
  445. prodBarcode:null,
  446. sessionId:null,
  447. pickUpCodeList:[],
  448. goodsDetailList:[],
  449. goodsSkuDetailList:[],
  450. orderEntity:{},
  451. orderProcessRecord:{},
  452. tax:0,
  453. currentOrderNo:null,
  454. pickUpCode:null,
  455. customname:'',
  456. customidcard:'',
  457. status:'',
  458. machineCode:'',
  459. storeId:null,
  460. index:0,
  461. max:0,
  462. totalPrice:0,
  463. discountedPrice:0,
  464. actualPrice:0,
  465. ruleValidate: {
  466. name: [
  467. {required: true, message: '名称不能为空', trigger: 'blur'}
  468. ]
  469. },
  470. q: {
  471. name: ''
  472. },
  473. firstPrint:false,
  474. // 第二件半价
  475. halfPrice:new Map(),
  476. // 买一送一
  477. mysy: [],
  478. freeBardcode : new Map(),
  479. modifyShopcart:false, // 是否需要修改购物车中商品信息
  480. brandGetOneFree : new Map(),
  481. barcodeGetOneFree: new Map(),
  482. boughtNum: new Map(),
  483. // 组合价
  484. zhjsp: new Map(),
  485. combinationPrice: new Map(), // 组合价商品的组合价
  486. compareCombinationPrice: new Map(), // 用于比较组合价
  487. combinationRelationship: new Map(), // 组合价格的组合关系
  488. // 满减
  489. mj: new Map(),
  490. accumulatedAmount: new Map(), // 累积金额(满减使用的)
  491. reduceMoney:0, // 满减金额
  492. showReduceMoney:0, // 用于展示的满减金额
  493. // 满赠
  494. useMz:false,
  495. mz: new Map(),
  496. accumulatedAmountForFullGift: new Map(), // 累积金额(满赠使用的)
  497. fullGiftCode:[],// 满赠商品条码
  498. // 优惠券
  499. coupons: new Map(),
  500. // 挂起订单集合
  501. pendingOrderMap: new Map(),
  502. // 挂起订单的key 在1~3循环
  503. pendingIndex:1,
  504. pendingOrderKeys:[],
  505. // 存储商品信息
  506. goodsMap:new Map(),
  507. response: "",
  508. // 支付码
  509. parCode : "",
  510. // 总件数
  511. totalCount:0,
  512. searchGoodsList: [],
  513. timer: null,
  514. searchGoods: [],
  515. // 卡回执标志
  516. delayResponse:false,
  517. canRefund:true,
  518. openSku:false,
  519. // 保存商品详情的list
  520. calGoodsList : []
  521. },
  522. watch: {
  523. prodBarcode (){
  524. if(vm.timer){
  525. clearTimeout(vm.timer);
  526. }
  527. if(!vm.prodBarcode){
  528. this.searchGoodsList = [];
  529. return ;
  530. }
  531. vm.timer = null;
  532. vm.timer = setTimeout(() => {
  533. vm.queryGoods();
  534. }, 1000*15);
  535. let result = [];
  536. for(let i=0; i<vm.searchGoods.length; i++){
  537. if(vm.searchGoods[i].name.indexOf(vm.prodBarcode) > -1){
  538. if(result.length <= 9){
  539. result.push(vm.searchGoods[i]);
  540. }else{
  541. break;
  542. }
  543. }
  544. }
  545. vm.searchGoodsList = result;
  546. }
  547. },
  548. methods: {
  549. // 支付完成,请求后端进行下单
  550. myDebounce:debounce(function(){
  551. toPayOrder();
  552. },2000),
  553. // 退款开始
  554. debounceRefund:debounce(function(){
  555. toRefund();
  556. },2000),
  557. queryGoods: function(){
  558. vm.storeId = sessionStorage.getItem("storeId");
  559. $.get("../goods/queryGoodsName?storeId="+vm.storeId+"&goodsName=", function (r) {
  560. if (r.code == 0) {
  561. vm.searchGoods = r.goodsList;
  562. } else {
  563. alert(r.msg);
  564. }
  565. });
  566. },
  567. searchQuery: function (prodBarcode){
  568. vm.prodBarcode = prodBarcode;
  569. vm.query();
  570. },
  571. queryOrderStatus:function(){
  572. $.get("../order/queryOrderStatus/"+vm.orderSn, function (r) {
  573. alert(r.msg);
  574. });
  575. },
  576. queryInveResponse:function(){
  577. $.get("../order/queryInveResponse/"+vm.orderSn1, function(r){
  578. console.log(r.resultMessage);
  579. let resultString = "";
  580. if(r.resultMessage != null && r.resultMessage.length > 0){
  581. for(let i = 0 ; i < r.resultMessage.length; i ++){
  582. resultString += i+':'+r.resultMessage[i] + '\r\n';
  583. }
  584. }
  585. alert(resultString);
  586. }) ;
  587. },
  588. query: function () {
  589. vm.storeId = sessionStorage.getItem("storeId");
  590. var thisGoods = {};
  591. var overflowLi = this.$refs.overflowLi;
  592. $.get("../goods/selectSkuDetails/"+vm.prodBarcode+"/"+vm.storeId, function (r) {
  593. if (r.code == 0) {
  594. if(r.goodsDetails.length>1) {
  595. r.goodsDetails.sellVolume = 1;
  596. vm.openSku = true;
  597. vm.goodsSkuDetailList = JSON.parse(JSON.stringify(r.goodsDetails));
  598. //此时必须异步执行滚动条滑动至底部
  599. setTimeout(()=>{
  600. overflowLi.scrollTop = overflowLi.scrollHeight;
  601. },0)
  602. }else{
  603. vm.saveOld();
  604. }
  605. } else {
  606. alert(r.msg);
  607. }
  608. });
  609. },
  610. //同条码多sku情况
  611. saveNew:function(value){
  612. vm.storeId = sessionStorage.getItem("storeId");
  613. var overflowLi = this.$refs.overflowLi;
  614. // confirm('确定吗?', function () {
  615. $.get("../goods/details/"+vm.prodBarcode+"/"+vm.storeId+"/"+value, function (r) {
  616. if (r.code == 0) {
  617. r.goodsDetails.sellVolume = 1;
  618. vm.goodsMap.set(r.goodsDetails.goodsSn,JSON.parse(JSON.stringify(r.goodsDetails)));
  619. vm.prodBarcode = '';
  620. calculateGoodsPrice(r);
  621. handle(r.goodsDetails,"add");
  622. vm.openSku = false;
  623. var data = Object.assign({}, JSON.parse(JSON.stringify(r.goodsDetails)));
  624. console.log("商品详情===>" + JSON.stringify(data));
  625. vm.calGoodsList.push(data);
  626. //此时必须异步执行滚动条滑动至底部
  627. setTimeout(()=>{
  628. overflowLi.scrollTop = overflowLi.scrollHeight;
  629. },0)
  630. } else {
  631. alert(r.msg);
  632. }
  633. });
  634. // })
  635. },
  636. //非同条码
  637. saveOld:function(){
  638. vm.storeId = sessionStorage.getItem("storeId");
  639. var overflowLi = this.$refs.overflowLi;
  640. $.get("../goods/detailsOld/"+vm.prodBarcode+"/"+vm.storeId, function (r) {
  641. if (r.code == 0) {
  642. r.goodsDetails.sellVolume = 1;
  643. vm.goodsMap.set(r.goodsDetails.goodsSn,JSON.parse(JSON.stringify(r.goodsDetails)));
  644. vm.prodBarcode = '';
  645. calculateGoodsPrice(r);
  646. handle(r.goodsDetails,"add");
  647. vm.openSku = false;
  648. var data = Object.assign({}, JSON.parse(JSON.stringify(r.goodsDetails)));
  649. console.log("商品详情===>" + JSON.stringify(data));
  650. vm.calGoodsList.push(data);
  651. //此时必须异步执行滚动条滑动至底部
  652. setTimeout(()=>{
  653. overflowLi.scrollTop = overflowLi.scrollHeight;
  654. },0)
  655. } else {
  656. alert(r.msg);
  657. }
  658. });
  659. },
  660. cancelNew: function(){
  661. vm.openSku=false;
  662. },
  663. add:function(value){
  664. // 增加数量
  665. for(var i = 0 ; i < this.goodsList.length ; i++){
  666. if(this.goodsList[i].id == value){
  667. // var goodsDetails = JSON.parse(JSON.stringify(vm.goodsMap.get(this.goodsList[i].goodsSn)));
  668. let goodsDetails = JSON.parse(JSON.stringify(vm.goodsList[i]));
  669. console.log("加法 goods detail =====>" + JSON.stringify(goodsDetails));
  670. /*calculateGoodsByMj(goodsDetails,"add");
  671. calculateGoodsByMysy(goodsDetails,"add");
  672. calculateGoodsByHalfPrice(goodsDetails,"add");*/
  673. // calculateGoodsByMz(goodsDetails,"add");
  674. handleSellVolume(goodsDetails, "add");
  675. // handle(goodsDetails,"add");
  676. break;
  677. }
  678. }
  679. },
  680. minus:function(value){
  681. // 减少数量
  682. for(var i = 0 ; i < this.goodsList.length ; i++){
  683. if(this.goodsList[i].id == value){
  684. // 获取当前购物车的数量
  685. let goodsDetails = JSON.parse(JSON.stringify(vm.goodsList[i]));
  686. console.log("减法 goods detail =====>" + JSON.stringify(goodsDetails));
  687. if(goodsDetails.sellVolume === 1){
  688. alert("数量至少为1个");
  689. return ;
  690. }
  691. // 如果不为空,证明减的是买A送B中的B,这时候要还原赠送资格跟B的扣减
  692. /*var freeMap = vm.freeBardcode.get(goodsDetails.prodBarcode);
  693. if((freeMap || freeMap == 0) && g.actualPaymentAmount == 0){
  694. vm.freeBardcode.set(goodsDetails.prodBarcode,freeMap + 1);
  695. goodsDetails.sellVolume = -1;
  696. goodsDetails.actualPaymentAmount = 0;
  697. goodsDetails.discountedPrice = -goodsDetails.retailPrice;
  698. goodsDetails.goodstaxes = - goodsDetails.goodstaxes;
  699. goodsDetails.retailPrice = - goodsDetails.retailPrice;
  700. }else{
  701. goodsDetails.sellVolume = g.sellVolume;
  702. calculateGoodsByMj(goodsDetails,"minus");
  703. calculateGoodsByMysy(goodsDetails,"minus");
  704. calculateGoodsByHalfPrice(goodsDetails,"minus");
  705. // calculateGoodsByMz(goodsDetails,"minus");
  706. goodsDetails.sellVolume = -1;
  707. goodsDetails.actualPaymentAmount = -goodsDetails.actualPaymentAmount;
  708. goodsDetails.discountedPrice = -goodsDetails.discountedPrice;
  709. goodsDetails.goodstaxes = - goodsDetails.goodstaxes;
  710. goodsDetails.retailPrice = - goodsDetails.retailPrice;
  711. }*/
  712. handleSellVolume(goodsDetails, "minus");
  713. // handle(goodsDetails,"minus");
  714. break;
  715. }
  716. }
  717. },
  718. selectItem:function(value) {
  719. console.log(value);
  720. },
  721. deleteItem:function(value){
  722. console.log(value);
  723. // 删除这条记录
  724. for(var i = 0 ; i < this.goodsList.length ; i++){
  725. if(this.goodsList[i].id == value){
  726. if(this.goodsList.length == 1){
  727. vm.goods = {};
  728. vm.goodsDetail = false;
  729. }
  730. if(vm.mz.get(this.goodsList[i].prodBarcode)){
  731. vm.mz.get(this.goodsList[i].prodBarcode).useMz = false ;
  732. }
  733. if(vm.brandGetOneFree.get(this.goodsList[i].brand)){
  734. var giftBarcode = vm.brandGetOneFree.get(this.goodsList[i].brand).giftBarcode;
  735. var muilty = vm.brandGetOneFree.get(this.goodsList[i].brand).buyNum;
  736. var sellNum = this.goodsList[i].sellVolume;;
  737. vm.freeBardcode.set(giftBarcode,sellNum/muilty);
  738. for(var j = 0 ; j < vm.goodsList.length ; j++){
  739. var shopcartGoods = vm.goodsList[j];
  740. var shopcartFree = vm.freeBardcode.get(shopcartGoods.prodBarcode);
  741. if(shopcartFree /*&& shopcartGoods.actualPaymentAmount*/){
  742. shopcartGoods.actualPaymentAmount = shopcartGoods.actualPaymentAmount + (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  743. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice - (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  744. vm.discountedPrice = vm.discountedPrice - (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  745. vm.actualPrice = vm.actualPrice + (shopcartGoods.retailPrice * shopcartGoods.sellVolume);
  746. vm.freeBardcode.set(shopcartGoods.prodBarcode, 0);// 重置回0
  747. }
  748. }
  749. }
  750. if(vm.halfPrice.get(this.goodsList[i].prodBarcode)){
  751. vm.halfPrice.set(this.goodsList[i].prodBarcode,1);
  752. }
  753. var goods = this.goodsList[i];
  754. console.log(goods);
  755. console.log(vm.totalPrice);
  756. if(vm.freeBardcode.get(goods.prodBarcode) || vm.freeBardcode.get(goods.prodBarcode) == 0){
  757. var nnum = (((goods.retailPrice * goods.sellVolume) - goods.actualPaymentAmount)/goods.retailPrice);
  758. vm.freeBardcode.set(goods.prodBarcode, nnum);
  759. }
  760. vm.totalPrice = vm.totalPrice - (goods.retailPrice * goods.sellVolume);
  761. vm.totalCount = vm.totalCount - (goods.sellVolume);
  762. vm.discountedPrice = vm.discountedPrice - goods.discountedPrice;
  763. vm.actualPrice = vm.actualPrice - goods.actualPaymentAmount;
  764. vm.boughtNum.delete(goods.prodBarcode);
  765. vm.totalPrice = Math.round(vm.totalPrice * 100) / 100;
  766. vm.discountedPrice = Math.round(vm.discountedPrice * 100) / 100;
  767. vm.actualPrice = Math.round(vm.actualPrice * 100) / 100;
  768. vm.showReduceMoney = Math.round(vm.showReduceMoney * 100) / 100;
  769. this.goodsList.splice(i,1);
  770. break;
  771. }
  772. }
  773. this.index = value;
  774. },
  775. clearGoodsList:function(){
  776. confirm('确认清空吗?', function () {
  777. alert("清空成功");
  778. })
  779. },
  780. pendingOrder:function(){
  781. if(this.goodsList.length == 0){
  782. alert("购物车中没有商品");
  783. return;
  784. }
  785. console.log(vm.pendingOrderMap.size);
  786. if(vm.pendingOrderMap.size >= 3){
  787. alert("订单挂起最多支持3单");
  788. return;
  789. }
  790. var pendingObject = {
  791. 'goodsList':this.goodsList,
  792. 'totalPrice':vm.totalPrice,
  793. 'totalCount':vm.totalCount,
  794. 'discountedPrice':vm.discountedPrice,
  795. 'actualPrice':vm.actualPrice
  796. }
  797. vm.pendingOrderMap.set(vm.pendingIndex,pendingObject);
  798. vm.pendingOrderKeys.push(vm.pendingIndex);
  799. var newIndex = ++vm.pendingIndex;
  800. vm.pendingIndex = newIndex > 3?1: newIndex;
  801. vm.goodsList = [];
  802. vm.customClearData();
  803. },
  804. toResumePending:function(){
  805. if(vm.pendingOrderMap.size == 0){
  806. alert("当前没有挂起的订单");
  807. return ;
  808. }
  809. $('#pendignOrderModal').modal('show')
  810. },
  811. resumePending:function(key){
  812. if(vm.pendingOrderMap.size == 0){
  813. alert("当前没有挂起的订单");
  814. return ;
  815. }
  816. if(vm.goodsList.length > 0){
  817. alert("购物车中已有商品,不允许恢复!")
  818. return ;
  819. }
  820. var pendingObject = vm.pendingOrderMap.get(key);
  821. console.log(pendingObject);
  822. vm.goodsList = pendingObject.goodsList;
  823. vm.totalPrice = pendingObject.totalPrice;
  824. vm.totalCount = pendingObject.totalCount;
  825. vm.discountedPrice = pendingObject.discountedPrice;
  826. vm.actualPrice = pendingObject.actualPrice;
  827. // 清除恢复的数据
  828. vm.pendingOrderMap.delete(key);
  829. removeByValue(vm.pendingOrderKeys,key);
  830. $('#pendignOrderModal').modal('hide')
  831. },
  832. toOrderSubmit:function(){
  833. if(this.goodsList.length == 0){
  834. alert("请选择商品");
  835. return;
  836. }
  837. $('#myModal').modal('show')
  838. // 每次点击提交订单的时候清空姓名和身份证信息和手机号
  839. vm.$refs.customName.value = "";
  840. vm.$refs.customIDCard.value = "";
  841. vm.$refs.customPhone.value = "";
  842. vm.$refs.couponBarCode.value = "";
  843. if(vm.$refs.couponSn)
  844. vm.$refs.couponSn.value = "";
  845. this.userInfo.couponSn = "";
  846. },
  847. // 点击计算优惠价按钮,弹出输入框
  848. calculateOrderPrice : function () {
  849. if (this.calGoodsList.length == 0) {
  850. alert("请选择商品");
  851. return;
  852. }
  853. $("#calculateOrderPriceDialog").modal('show');
  854. },
  855. // 计算优惠价格,返回订单详情数据
  856. calculateOrderPriceSubmit : function () {
  857. console.log("11111");
  858. console.log("点击计算=====>" + JSON.stringify(vm.goodsList));
  859. var couponBarCode = vm.$refs.couponBarCode;
  860. if (couponBarCode === null || couponBarCode === '') {
  861. alert("无会员码,不能参加积分抵扣活动!\n计算中...");
  862. }
  863. calculateOrderPrice();
  864. },
  865. // 提交订单
  866. submitOrder:function(){
  867. vm.parCode = this.$refs.payCode.currentValue
  868. vm.myDebounce();
  869. },customClearData: function(){
  870. vm.totalPrice = 0;
  871. vm.totalCount = 0;
  872. vm.discountedPrice = 0;
  873. vm.actualPrice = 0;
  874. vm.goods={};
  875. vm.goodsDetail = false;
  876. // 第二件半价
  877. vm.halfPrice = new Map();
  878. // 买一送一
  879. vm.mysy = [];
  880. vm.freeBardcode = new Map();
  881. vm.brandGetOneFree = new Map();
  882. vm.barcodeGetOneFree = new Map();
  883. vm.brandGetOneFree = new Map();
  884. vm.boughtNum = new Map();
  885. // 组合价
  886. vm.zhjsp = new Map();
  887. vm.combinationPrice = new Map(); // 组合价商品的组合价
  888. // 满减
  889. vm.mj = new Map();
  890. vm.accumulatedAmount = new Map();// 累积金额(满减使用的)
  891. vm.reduceMoney = 0; // 满减金额
  892. vm.showReduceMoney = 0; // 用于展示的满减金额
  893. // 满赠
  894. vm.mz = new Map();
  895. vm.accumulatedAmountForFullGift = new Map(); // 累积金额(满赠使用的)
  896. vm.fullGiftCode = [];// 满赠商品条码
  897. // 优惠券
  898. vm.coupons = new Map();
  899. },
  900. queryIDCardInfo: function(){
  901. $.get("../order/queryIDCardInfo/"+vm.$refs.customPhone.value, function (r){
  902. if(r.code === 0){
  903. var data = r.userEntity;
  904. vm.$refs.customName.value = data.username;
  905. vm.$refs.customIDCard.value = data.idNo;
  906. }else{
  907. alert(r.msg);
  908. }
  909. });
  910. },
  911. sendDiva: function(){
  912. // document.getElementsByClassName('sendShow').style.display='none';
  913. $('.sendShow').hide();
  914. },
  915. sendDivb: function(){
  916. // document.getElementsByClassName('sendShow').style.display='block';
  917. $('.sendShow').show();
  918. },
  919. getIDCardInfo: function(){
  920. $.post("http://127.0.0.1:8000/idcard/read", function (r){
  921. if(r.code == "0"){
  922. vm.$refs.customName.value = r.rows[0].data.name;
  923. vm.$refs.customIDCard.value = r.rows[0].data.id_no;
  924. }else if(r.code=="-1"){
  925. alert(r.msg);
  926. return;
  927. }else{
  928. alert("请连接设备或设备有问题,请联系管理员!");
  929. }
  930. });
  931. },
  932. customPhoneBlur:function (){
  933. let customPhone = this.$refs.customPhone.value;
  934. if(customPhone){
  935. for(let key in this.userInfoBinding){
  936. if(customPhone == key){
  937. let userInfoBindingValue = this.userInfoBinding[key];
  938. this.$refs.customName.value = userInfoBindingValue.substring(0, userInfoBindingValue.length-18);
  939. this.$refs.customIDCard.value = userInfoBindingValue.substring(userInfoBindingValue.length-18);
  940. break;
  941. }
  942. }
  943. }
  944. },
  945. // 填写并验证顾客信息
  946. submitCustomInfo:function(){
  947. this.userInfo.customName = this.$refs.customName.value ;
  948. this.userInfo.customIDCard = this.$refs.customIDCard.value ;
  949. this.userInfo.customPhone = this.$refs.customPhone.value;
  950. this.userInfo.couponBarCode = this.$refs.couponBarCode.value;
  951. var status = $('input:radio:checked').val();
  952. var cmbCity = $('#cmbCity').val();
  953. var cmbProvince = $('#cmbProvince').val();
  954. var cmbArea = $('#cmbArea').val();
  955. var addrUser = $('#addrUser').val();
  956. // console.log('城市三级联动的值:'+cmbProvince+'|'+cmbCity+'|'+cmbArea+'|'+addrUser);
  957. if (status == 0) {
  958. if (cmbCity =="请选择"){
  959. alert("请选择省!");
  960. return ;
  961. }
  962. if (cmbProvince =="请选择"){
  963. alert("请选择市!");
  964. return ;
  965. }
  966. if (cmbArea =="请选择"){
  967. alert("请选择区!");
  968. return ;
  969. }
  970. if (addrUser == "") {
  971. alert("请填写详细地址!");
  972. return ;
  973. }
  974. }
  975. if(this.$refs.couponSn)
  976. this.userInfo.couponSn = this.$refs.couponSn.value;
  977. 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)$/;
  978. if(!this.userInfo.customName){
  979. alert("姓名不能为空!");
  980. return ;
  981. }
  982. if(!idcardReg.test(this.userInfo.customIDCard)){
  983. alert("请输入正确的身份证号");
  984. return ;
  985. }
  986. if(!(/^1[3456789]\d{9}$/.test(this.userInfo.customPhone))){
  987. alert("手机号码有误,请重填");
  988. return ;
  989. }
  990. //将手机号与姓名身份证号进行绑定,下次填写手机号即可
  991. let userInfoBindingKey = this.userInfo.customPhone;
  992. let userInfoBindingValue = this.userInfo.customName+this.userInfo.customIDCard;
  993. this.userInfoBinding[userInfoBindingKey] = userInfoBindingValue;
  994. if(this.userInfo.couponSn && this.userInfo.couponSn != ""){
  995. var coupon = vm.coupons.get(this.userInfo.couponSn);
  996. if(coupon == null){
  997. alert("请输入正确的优惠券码");
  998. return ;
  999. }
  1000. }
  1001. $("#Send").attr("data-dismiss","modal");
  1002. $('#payModal').modal('show');
  1003. $("#payCode").keydown(function(e){
  1004. if(e.keyCode==13){
  1005. $("#submitOrder").click();
  1006. event.preventDefault();
  1007. }
  1008. });
  1009. $('body').on('hidden.bs.modal', '.modal', function () {
  1010. $(this).removeData();
  1011. });
  1012. },
  1013. queryOrderDetail:function(orderSn,pickUpCode){
  1014. var storeId = sessionStorage.getItem("storeId");
  1015. $.get("../order/orderDetail/"+orderSn, function (r) {
  1016. if (r.code == 0) {
  1017. vm.orderProcessRecord = r.resultObj.orderProcessRecordEntity;
  1018. vm.orderEntity = r.resultObj.orderEntity;
  1019. vm.goodsDetailList = r.resultObj.goodsList;
  1020. vm.currentOrderNo = r.resultObj.orderEntity.id;
  1021. vm.pickUpCode = pickUpCode;
  1022. vm.tax = r.resultObj.tax;
  1023. vm.response = r.resultObj.response;
  1024. if(vm.orderProcessRecord.eleOrderStartTime){
  1025. vm.orderProcessRecord.eleOrderStartTime = parsedate(vm.orderProcessRecord.eleOrderStartTime);
  1026. }
  1027. if(vm.orderProcessRecord.paymentStartTime){
  1028. vm.orderProcessRecord.paymentStartTime = parsedate(vm.orderProcessRecord.paymentStartTime);
  1029. }
  1030. if(vm.orderProcessRecord.waybillStartTime){
  1031. vm.orderProcessRecord.waybillStartTime = parsedate(vm.orderProcessRecord.waybillStartTime);
  1032. }
  1033. if(vm.orderProcessRecord.customsSuccTime){
  1034. vm.orderProcessRecord.customsSuccTime = parsedate(vm.orderProcessRecord.customsSuccTime);
  1035. }
  1036. if(vm.orderProcessRecord.addOrderStartTime){
  1037. vm.orderProcessRecord.addOrderStartTime = parsedate(vm.orderProcessRecord.addOrderStartTime);
  1038. }
  1039. }
  1040. });
  1041. },
  1042. resendNotice:function(){
  1043. confirm('确认重发重置吗?', function () {
  1044. $.get("../order/resendOrderToCCNET/"+vm.orderEntity.orderSn+"/notice", function (r) {
  1045. alert(r.msg);
  1046. });
  1047. })
  1048. },
  1049. resendWaybill:function(){
  1050. confirm('确认重发运单吗?', function () {
  1051. $.get("../order/resendOrderToCCNET/"+vm.orderEntity.orderSn+"/waybill", function (r) {
  1052. alert(r.msg);
  1053. });
  1054. })
  1055. },
  1056. resendPayment:function(){
  1057. confirm('确认重发支付单吗?', function () {
  1058. $.get("../order/resendOrderToCCNET/"+vm.orderEntity.orderSn+"/payment", function (r) {
  1059. alert(r.msg);
  1060. });
  1061. })
  1062. },
  1063. resendOrder:function(){
  1064. confirm('确认重发订单吗?', function () {
  1065. $.get("../order/resendOrderHkMall/"+vm.orderEntity.orderSn, function (r) {
  1066. if(r.code == "0"){
  1067. alert(r.msg);
  1068. } else {
  1069. alert(r.msg);
  1070. }
  1071. });
  1072. })
  1073. },
  1074. forceSendToOms:function(){
  1075. confirm('确认强制推送清关吗?', function () {
  1076. $.get("../order/resendOrderToCCNET/"+vm.orderEntity.orderSn+"/forceSend", function (r) {
  1077. alert(r.msg);
  1078. });
  1079. })
  1080. },
  1081. resendorder:function(){
  1082. confirm('确认重发订单吗?', function () {
  1083. $.get("../order/resendOrderToCCNET/"+vm.orderEntity.orderSn+"/resendOrder", function (r) {
  1084. alert(r.msg);
  1085. });
  1086. })
  1087. },
  1088. verification:function(){
  1089. if(vm.orderProcessRecord.isCustomsSend != 1){
  1090. alert("请等待清关完成");
  1091. return ;
  1092. }
  1093. confirm('确认核销吗?', function () {
  1094. $.ajax({
  1095. type: "POST",
  1096. url: "../order/printMsgAndChangeCode",
  1097. contentType: "application/json",
  1098. data: JSON.stringify({'id':vm.currentOrderNo,'sessionId':vm.sessionId}),
  1099. success: function (r) {
  1100. if (r.ticket != null) {
  1101. // printArea(r.ticket);
  1102. console.log("核销打印前,订单号: " + vm.currentOrderNo);
  1103. var content = getPrintContentOrder(r.ticket, printArea);
  1104. console.log("核销打印后,小票码: " + vm.pickUpCode + ",订单号: " + r.ticket.ticketHead.orderId);
  1105. }else{
  1106. alert("打印小票失败");
  1107. }
  1108. }
  1109. });
  1110. })
  1111. },
  1112. verEwbtion:function(){
  1113. confirm('确认打印快递单吗?', function () {
  1114. $.ajax({
  1115. type: "POST",
  1116. url: "../order/printMsgChangeEwb",
  1117. contentType: "application/json",
  1118. data: JSON.stringify({'id':vm.currentOrderNo,'sessionId':vm.sessionId}),
  1119. success: function (r) {
  1120. if (r.ticket != null) {
  1121. var content = getPrintContentOrder(r.ticket, printArea);
  1122. }else{
  1123. alert("打印快递单失败");
  1124. }
  1125. }
  1126. });
  1127. })
  1128. },
  1129. // 退款方法
  1130. refundOrder:function(){
  1131. vm.debounceRefund();
  1132. },
  1133. //确认提货
  1134. confirmDelivery: function(){
  1135. confirm('确认提货吗?', function () {
  1136. $.get("../pickupcode/confirmDelivery/"+vm.orderEntity.orderSn, function (r) {
  1137. alert(r.msg);
  1138. });
  1139. })
  1140. },
  1141. retrySendOrder:function(){
  1142. },
  1143. getInfo: function (id) {
  1144. $.get("../sys/notice/info/" + id, function (r) {
  1145. vm.sysNotice = r.sysNotice;
  1146. });
  1147. },
  1148. reload: function (event) {
  1149. vm.showList = false;
  1150. vm.showViewList = true;
  1151. vm.showSaveSupplierGoods = true;
  1152. var page = $("#jqGrid").jqGrid('getGridParam', 'page');
  1153. $("#jqGrid").jqGrid('setGridParam', {
  1154. postData: {
  1155. storeId: vm.q.storeId,
  1156. goodsName: vm.q.goodsName,
  1157. goodsSn: vm.q.goodsSn,
  1158. productSn: vm.q.productSn, category: vm.q.category, categoryTwo: vm.q.categoryTwo, goodsBizType:vm.q.goodsBizType,
  1159. thirdPartyMerchCode: vm.q.thirdPartyMerchCode
  1160. },
  1161. page: page
  1162. }).trigger("reloadGrid");
  1163. vm.handleReset('formValidate');
  1164. },
  1165. handleSubmit: function (name) {
  1166. handleSubmitValidate(this, name, function () {
  1167. vm.saveOrUpdate()
  1168. });
  1169. },
  1170. handleReset: function (name) {
  1171. handleResetForm(this, name);
  1172. },
  1173. logout: function () {
  1174. confirm('注:您确定要安全退出本次登录吗?', function () {
  1175. dialogLoading(true);
  1176. setTimeout(function () {
  1177. toUrl('../logout?_' + $.now());
  1178. }, 500);
  1179. });
  1180. }
  1181. }
  1182. });
  1183. function getPrintContent(ticket) {
  1184. var content = "<div style=\"width: 300px;font-family: 微软雅黑;font-size: 15px;\">";
  1185. // // 打印ogo
  1186. // content += "<div style=\"text-align: center;width: 100%;height: 50px;\">";
  1187. // // content += "<img src='./../../statics/img/cw_logo.png' />";
  1188. // // content += "2222222222";
  1189. // content += "<img src='/statics/img/cw_logo.png' style='width: 100%;height: 100%;' />";
  1190. // content += "</div>";
  1191. //小票头
  1192. content += "<div style=\"text-align: center;width: 100%;font-weight:bold;font-size: 15px;\">";
  1193. content += ticket.shopName
  1194. content += "</div>";
  1195. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1196. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  1197. /*content += "收银机号:" + ticket.salesNo;
  1198. content += "</div>";
  1199. content += "<div style=\"width: 100%;\">";*/
  1200. content += "收银员:" + ticket.userName;
  1201. content += "</div>";
  1202. content += "<div style=\"text-align: center;width: 100%;font-size: 30px;margin:15px 0 10px 5px;\">";
  1203. content += "小票码" ;
  1204. content += "</div>";
  1205. content += "<div style=\"text-align: center;width: 100%;font-size: 50px;margin:15px 0 10px 5px;\">";
  1206. content += ticket.code;
  1207. content += "</div>";
  1208. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  1209. content += "订单编号:" + ticket.orderNo;
  1210. content += "</div>";
  1211. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  1212. content += "手机号:" + ticket.phone;
  1213. content += "</div>";
  1214. content += "<div style=\"width: 100%;margin:5px 0px;\">";
  1215. content += "打印日期:" + ticket.time;
  1216. content += "</div>";
  1217. content += "<div style=\"width: 100%;margin:5px 0px;font-size: 13px;\">";
  1218. content += "该取货单号只有当天有效!"
  1219. content += "</div>";
  1220. content += "<div style=\"width: 100%;margin:5px 0px;font-size: 13px;\">";
  1221. content += "请妥善保管好小票,以免造成个人信息泄露!"
  1222. content += "</div>";
  1223. content += "</div>";
  1224. return content;
  1225. }
  1226. var printAreaCount = 0;
  1227. var printArea = function printArea(content) {
  1228. var idPrefix = "printArea_";
  1229. removePrintArea(idPrefix + printAreaCount);
  1230. ++printAreaCount;
  1231. var iframeId = idPrefix + printAreaCount;
  1232. var iframeStyle = 'width:0px;height:0px;left:0px;top:0px;';
  1233. iframe = document.createElement('IFRAME');
  1234. $(iframe).attr({
  1235. style: iframeStyle,
  1236. id: iframeId
  1237. });
  1238. document.body.appendChild(iframe);
  1239. var doc = iframe.contentWindow.document;
  1240. // doc.open();
  1241. doc.write('<div class="">' + content
  1242. + '</div>');
  1243. doc.close();
  1244. var frameWindow = iframe.contentWindow;
  1245. $(iframe).load(function(){
  1246. frameWindow.focus();
  1247. frameWindow.print();
  1248. alert('打印小票完成');
  1249. });
  1250. }
  1251. function printArea2(content) {
  1252. var idPrefix = "printArea_";
  1253. removePrintArea(idPrefix + printAreaCount);
  1254. printAreaCount++;
  1255. var iframeId = idPrefix + printAreaCount;
  1256. var iframeStyle = 'width:0px;height:0px;left:0px;top:0px;';
  1257. iframe = document.createElement('IFRAME');
  1258. $(iframe).attr({
  1259. style: iframeStyle,
  1260. id: iframeId
  1261. });
  1262. document.body.appendChild(iframe);
  1263. var doc = iframe.contentWindow.document;
  1264. doc.open();
  1265. doc.write('<div class="">' + content
  1266. + '</div>');
  1267. doc.close();
  1268. var frameWindow = iframe.contentWindow;
  1269. frameWindow.focus();
  1270. frameWindow.print();
  1271. frameWindow.print();
  1272. frameWindow.close();
  1273. }
  1274. var removePrintArea = function (id) {
  1275. $("iframe#" + id).remove();
  1276. };
  1277. var webSocket;
  1278. function openWebSocket() {
  1279. var storeId = sessionStorage.getItem("storeId");
  1280. if ("WebSocket" in window) {
  1281. console.log("当前浏览器支持WebSocket");
  1282. //实现化WebSocket对象
  1283. //指定要连接的服务器地址与端口建立连接
  1284. //注意ws、wss使用不同的端口。我使用自签名的证书测试,
  1285. //无法使用wss,浏览器打开WebSocket时报错
  1286. //ws对应http、wss对应https。
  1287. //kmall测试环境
  1288. //webSocket = new WebSocket("ws://183.62.225.124:8080/ws/server/"+storeId);
  1289. //kmall正式环境
  1290. //webSocket = new WebSocket("ws://8.135.102.238:8080/ws/server/"+storeId);
  1291. //kmall本地环境
  1292. webSocket = new WebSocket("ws://127.0.0.1:8089/ws/server/"+storeId);
  1293. // webSocket = new WebSocket("wss://cb.k1net.cn/ws/server/"+storeId);
  1294. if (webSocket.readyState === webSocket.CONNECTING) {
  1295. console.log('1.连接正在打开......');
  1296. }
  1297. // ---------- WebSocket 对象注册事件 ----------
  1298. //连接打开事件
  1299. webSocket.onopen = function () {
  1300. if (webSocket.readyState === webSocket.OPEN) {
  1301. console.log('2.连接已打开');
  1302. }
  1303. console.log('2.向服务端发送测试消息......');
  1304. // webSocket.send("2.client发测试消息:Client sent test msg。");
  1305. };
  1306. //收到消息事件
  1307. webSocket.onmessage = function (msg) {
  1308. var data = Object.assign({}, JSON.parse(msg.data));
  1309. console.log('3.接收到服务端信息......data:'+data);
  1310. vm.sessionId = data.sessionId;
  1311. vm.pickUpCodeList = [];
  1312. if(data.pickUpCodeList.length > 0){
  1313. for(var i = 0 ; i < data.pickUpCodeList.length ; i++){
  1314. // console.log(data.pickUpCodeList[i].storeId);
  1315. if(data.pickUpCodeList[i].storeId === storeId){
  1316. vm.pickUpCodeList.push(data.pickUpCodeList[i]);
  1317. }
  1318. }
  1319. }
  1320. vm.delayResponse = data.delayResponse;
  1321. };
  1322. //连接关闭事件
  1323. webSocket.onclose = function () {
  1324. if (!webSocket) {
  1325. console.log('4.Socket连接已关闭');
  1326. }
  1327. };
  1328. //发生了错误事件
  1329. webSocket.onerror = function () {
  1330. console.log("5.Socket发生了错误");
  1331. }
  1332. } else {
  1333. console.log("当前浏览器不支持WebSocket");
  1334. return false;
  1335. }
  1336. }
  1337. function sendMessage() {
  1338. if(webSocket && webSocket.readyState === webSocket.OPEN) {
  1339. webSocket.send("client manual send message.")
  1340. } else {
  1341. console.log('6.未创建WebSocket连接');
  1342. }
  1343. }
  1344. function closeWebSocket() {
  1345. if (webSocket != null) {
  1346. webSocket.close();
  1347. webSocket = null;
  1348. }
  1349. console.log("关闭WebSocket");
  1350. }
  1351. //窗口关闭时,关闭连接
  1352. window.unload = function () {
  1353. webSocket.close();
  1354. };
  1355. function parsedate(value){
  1356. var date = new Date(value);
  1357. var year = date.getFullYear();
  1358. var month = date.getMonth()+1; //月份+1
  1359. var day = date.getDate();
  1360. var hour = date.getHours();
  1361. var minutes = date.getMinutes();
  1362. var second = date.getSeconds();
  1363. return year+"-"+month+"-"+day+" "+hour+":"+minutes +":"+second;
  1364. }
  1365. function getPrintContentOrder(ticket, callback) {
  1366. var content = "<div style=\"width: 270px;font-family: 微软雅黑;font-size: 8px;\">";
  1367. // 打印ogo
  1368. content += "<div style=\"text-align: center;width: 100%;height: 260px;\">";
  1369. content += "<img src='/statics/img/cw_logo2.png' style='width: 100%;height: 100%;' />";
  1370. content += "</div>";
  1371. //小票头
  1372. content += "<div style=\"text-align: center;width: 100%;font-weight:bold;font-size: 13px;\">";
  1373. content += ticket.ticketHead.title;
  1374. content += "</div>";
  1375. /*content += "<div style=\"width: 100%;\">";
  1376. content += "会员:" + ticket.ticketHead.memberId;
  1377. content += "</div>";*/
  1378. content += "<div style=\"width: 100%;font-size: 25px;\">";
  1379. content += "小票码:" + vm.pickUpCode;
  1380. content += "</div>";
  1381. content += "<div style=\"width: 100%;\">";
  1382. content += "订单号:" + ticket.ticketHead.orderId;
  1383. content += "</div>";
  1384. content += "<div style=\"width: 100%;\">";
  1385. content += "交易时间:" + ticket.ticketHead.tradeTime;
  1386. content += "</div>";
  1387. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">-------------------------------------------------------</div>";
  1388. //商品信息
  1389. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1390. content += "<tr>";
  1391. content += "<td style=\"width: 40%;text-align: left;font-size: 10px;font-weight: bold;\">商品名称</td>";
  1392. content += "<td style=\"width: 17%;text-align: right;font-size: 10px;font-weight: bold;\">单价</td>";
  1393. content += "<td style=\"width: 17%;text-align: right;font-size: 10px;font-weight: bold;\">优惠</td>";
  1394. // content += "<td style=\"width: 16%;text-align: right;font-size: 10px;font-weight: bold;\">税费</td>";
  1395. content += "<td style=\"width: 15%;text-align: right;font-size: 10px;font-weight: bold;\">数量</td>";
  1396. content += "<td style=\"width: 18%;text-align: right;font-size: 10px;font-weight: bold;\">小计</td>";
  1397. content += "</tr>";
  1398. content += "</table>";
  1399. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">-------------------------------------------------------</div>";
  1400. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1401. for (var i=0;i< ticket.goods.length;i++){
  1402. content += "<tr>";
  1403. content += "<td style=\"width: 40%;text-align: left;font-size: 8px;padding-top: 8px;\">";
  1404. content += "<table style=\"width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
  1405. content += "<tr>";
  1406. content += "<td style=\"text-align: left;font-size: 8px;vertical-align:top;\">#</td>";
  1407. content += "<td style=\"text-align: left;font-size: 8px;\">" + ticket.goods[i].gname + "</td>";
  1408. content += "</tr>";
  1409. content += "</table>";
  1410. content += "</td>";
  1411. content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].uprice + "</td>";
  1412. content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].discountPrice + "</td>";
  1413. // content += "<td style=\"width: 17%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].taxation + "</td>";
  1414. content += "<td style=\"width: 15%;text-align: center;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].num + "</td>";
  1415. content += "<td style=\"width: 18%;text-align: right;font-size: 8px;vertical-align:bottom;padding-top: 8px;\">" + ticket.goods[i].subtotal + "</td>";
  1416. content += "</tr>";
  1417. }
  1418. content += "</table>";
  1419. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1420. //收银信息
  1421. content += "<div style=\"width: 100%;\">";
  1422. content += "<span style=\"float: left;width: 50%;text-align: left;\">商品合计:</span>";
  1423. content += "<span style=\"float: left;width: 17%;text-align: left;\">" + ticket.cashInfo.goodsTotal + "件</span>";
  1424. content += "<span style=\"float: right;width: 33%;text-align: right;\">" + ticket.cashInfo.total + "元</span>";
  1425. content += "</div>";
  1426. content += "<div style=\"width: 100%;\">";
  1427. content += "<span style=\"float: left;width: 50%;text-align: left;\">税费合计:</span>";
  1428. content += "<span style=\"float: left;width: 17%;text-align: left;\">" + ticket.cashInfo.goodsTotal + "件</span>";
  1429. content += "<span style=\"float: right;width: 33%;text-align: right;\">" + ticket.cashInfo.taxTotal + "元</span>";
  1430. content += "</div>";
  1431. content += "<div style=\"width: 100%;\">";
  1432. content += "<span style=\"float: left;width: 50%;text-align: left;\">优惠合计:</span>";
  1433. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.oddChange + "元</span>";
  1434. content += "</div>";
  1435. content += "<div style=\"width: 100%;\">";
  1436. content += "<span style=\"float: left;width: 50%;text-align: left;\">实收:</span>";
  1437. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.receipts + "元</span>";
  1438. content += "</div>";
  1439. content += "<div style=\"width: 100%;\">";
  1440. content += "<span style=\"float: left;width: 50%;text-align: left;\">优惠券:</span>";
  1441. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.coupon + "元</span>";
  1442. content += "</div>";
  1443. // content += "<div style=\"width: 100%;\">";
  1444. // content += "<span style=\"float: left;width: 50%;text-align: left;\">运费:</span>";
  1445. // content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.freight + "元</span>";
  1446. // content += "</div>";
  1447. content += "<div style=\"width: 100%;\">";
  1448. content += "<span style=\"float: left;width: 50%;text-align: left;\">支付渠道:</span>";
  1449. // 后期改成从系统中取
  1450. content += "<span style=\"float: right;width: 50%;text-align: right;\">" + ticket.cashInfo.paymentMode + "</span>";
  1451. content += "</div>";
  1452. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1453. //海关清单信息
  1454. // content += "<div style=\"width: 100%;\">";
  1455. // content += "订单号:" + ticket.cusListing.orderId;
  1456. // content += "</div>";
  1457. // content += "<div style=\"width: 100%;\">";
  1458. // content += "运单编号:" + ticket.cusListing.waybillId;
  1459. // content += "</div>";
  1460. content += "<div style=\"width: 100%;\">";
  1461. content += "海关清单号:" + ticket.cusListing.invtNo;
  1462. content += "</div>";
  1463. // content += "<div style=\"width: 100%;\">";
  1464. // content += "收货人:" + ticket.cusListing.consignee;
  1465. // content += "</div>";
  1466. // content += "<div style=\"width: 100%;\">";
  1467. // content += "收货人电话:" + ticket.cusListing.consigneeTel;
  1468. // content += "</div>";
  1469. // content += "<div style=\"width: 100%;\">";
  1470. // content += "始发地: 仓库地址 : 广东省深圳市南山区前海保税港区W104" ;
  1471. // content += "</div>";
  1472. // content += "<div style=\"width: 100%;\">";
  1473. // content += "交货地:" + ticket.cusListing.deliveryAddress;
  1474. // content += "</div>";
  1475. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1476. content += "<div style=\"width: 100%;text-align: center;\">";
  1477. content += "购买跨境商品须知:"
  1478. content += "</div>";
  1479. content += "<div style=\"width: 100%;\">";
  1480. content += "1、凡购买跨境商品均不提供发票;<br> 2、单笔限购5000元,年交易限额2.6万元; <br> 3、所有订单经海关放行后方可提货; <br> 4、凭小票领取您的订单商品; <br> 5、非产品质量问题,跨境商品不支持无理由退换货,请及时检查。 "
  1481. content += "</div>";
  1482. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1483. content += "<div style=\"width: 100%;\">";
  1484. // content += ticket.ticketFoot.summary;
  1485. content += "</div>";
  1486. content += "<div style=\"width: 100%;\">";
  1487. // content += "客服电话:" + ticket.ticketFoot.serviceTel;
  1488. content += "</div>";
  1489. content += "<div style=\"width: 100%;\">";
  1490. // content += "网址:" + ticket.ticketFoot.url1;
  1491. content += "</div>";
  1492. content += "<div style=\"width: 100%;\">";
  1493. content += "欢迎再次惠顾 --服务电话:" + ticket.ticketMailInfo.shopTel;
  1494. content += "</div>";
  1495. if(ticket.cusListing.deliveryAddress.indexOf("港惠") != -1){
  1496. content += "<div style=\"width: 100%;\">";
  1497. content += "惠州市惠城区港惠购物中心负一层";
  1498. content += "</div>";
  1499. }else if(ticket.cusListing.deliveryAddress.indexOf("永旺") != -1){
  1500. content += "<div style=\"width: 100%;\">";
  1501. content += "惠州市惠城区东湖西路东湖8区裙楼永旺惠州购物中心二楼CW大药房";
  1502. content += "</div>";
  1503. }else{
  1504. content += "<div style=\"width: 100%;\">";
  1505. content += "惠州市惠城区港惠购物中心负一层";
  1506. content += "</div>";
  1507. }
  1508. content += "<div style=\"width: 100%;\">";
  1509. content += "请保管好收银小票。";
  1510. content += "</div>";
  1511. // 打印二维码
  1512. content += "<div style=\"text-align: center;width: 100%;height: 250px;\">";
  1513. content += `<img src='${ticket.ticketMailInfo.storeImgUrl}' style='width: 100%;height: 100%;' />`;
  1514. content += "</div>";
  1515. content += "<div style=\"width: 100%;text-align: center;\">";
  1516. content += "关注CW大药房客服号,获取更多优惠信息"
  1517. content += "</div>";
  1518. content += "<div style=\"width: 100%;overflow:hidden;white-space: nowrap;\">--------------------------------------------------</div>";
  1519. content += "<div style=\"width: 100%;height: 50px;\"></div>";
  1520. // var strategies = {
  1521. // "best": function(data){
  1522. // return render_of_best(data);
  1523. // },
  1524. // "yto": function(data){
  1525. // return render_of_yto(data);
  1526. // }
  1527. // };
  1528. //
  1529. // var renderMailInfo = function(exprCode, data){
  1530. // return strategies[exprCode](data);
  1531. // };
  1532. //
  1533. // renderMailInfo('best', ticket);
  1534. // 面单打印
  1535. content += `
  1536. <div style="width: 100%; height: 82px; border: 1px solid black;">
  1537. <div style="width: 100%;height: 78px; overflow: hidden">
  1538. <img src='${ticket.ticketMailInfo.exprLogoUrl}' style='max-width:180px;' />
  1539. </div>
  1540. </div>
  1541. <!-- 面单条码 -->
  1542. <div style="width: 100%;height: 98px; border-width: 0 1px 1px 1px; border-style: solid; border-color: black;">
  1543. <div style="width: 200px; height: 88px;">
  1544. <img src='data:image/png;base64,${ticket.ticketMailInfo.exprNoBase64Img}' style='max-width:199px;' />
  1545. </div>
  1546. </div>
  1547. <div style="width: 100%; border-width: 0 1px 1px 1px; border-style: solid; border-color: black;">
  1548. <div style="padding: 5px 10px 5px 10px">
  1549. <div style="width: 65px; display: inline; font-weight: bolder;">
  1550. 收件人
  1551. </div>
  1552. <div style="width: 100px; display: inline;">
  1553. <span style="font-weight: bold">${ticket.cusListing.consignee}</span> <span style="font-weight: bold">${ticket.cusListing.consigneeTel}</span>
  1554. </div>
  1555. <div style="width: 100%">
  1556. ${ticket.ticketMailInfo.consigneeProvince} ${ticket.ticketMailInfo.consigneeCity} ${ticket.ticketMailInfo.consigneeDistrict} ${ticket.ticketMailInfo.consigneeAddress}
  1557. </div>
  1558. </div>
  1559. </div>
  1560. <div style="width: 100%; border-width: 0 1px 1px 1px; border-style: solid; border-color: black;">
  1561. <div style="padding: 5px 10px 5px 10px">
  1562. <div style="width: 65px; display: inline; font-weight: bolder">
  1563. 发件人
  1564. </div>
  1565. <div style="width: 100px; display: inline;">
  1566. <span style="font-weight: bold">${ticket.ticketMailInfo.shopTel}</span> <span style="font-weight: bold">CW澳洲大药房</span>
  1567. </div>
  1568. <div style="width: 100%">
  1569. 仓库地址:${ticket.ticketMailInfo.senderProvince} ${ticket.ticketMailInfo.senderCity} ${ticket.ticketMailInfo.senderDistrict} ${ticket.ticketMailInfo.senderAddress}
  1570. </div>
  1571. </div>
  1572. </div>
  1573. `;
  1574. let box = "<div style='width: 100%; position: relative;'>";
  1575. for (let i = 0;i < ticket.goods.length; i++){
  1576. let topBorder = 0, bottomBorder = 0;
  1577. // if (i === 0) {
  1578. // topBorder = "1px";
  1579. // }
  1580. if (i === ticket.goods.length - 1) {
  1581. bottomBorder = "1px";
  1582. }
  1583. let paddingBottom = "5px";
  1584. if (i === ticket.goods.length - 1) {
  1585. paddingBottom = "35px";
  1586. }
  1587. box += `
  1588. <div
  1589. style="width: 100%; border-width: ${topBorder} 1px ${bottomBorder} 1px; border-style: solid; border-color: black; font-weight: bold;">
  1590. <div style="text-align: left;width: 70%; line-height: 1.5; padding: 5px 10px ${paddingBottom} 10px ">
  1591. ${ticket.goods[i].gname} *${ticket.goods[i].num}
  1592. </div>
  1593. </div>`;
  1594. }
  1595. let markBox = `<div style="position: absolute; bottom: 5px; right: 5px; font-weight: bold; font-size: 10pt; color: #9b9b9b">已验视</div>`;
  1596. box += markBox;
  1597. box += "</div>";
  1598. content += box;
  1599. if (typeof callback === "function") {
  1600. callback(content);
  1601. }
  1602. return content;
  1603. }
  1604. function queryAssistantInfo(){
  1605. $.get("../sys/user/info", function (r) {
  1606. if(r.code == 0){
  1607. vm.sysUserInfo = r.user;
  1608. $.get("../store/getStoresByMerch?merchSn="+r.user.merchSn+"&_=1590374349985",function(result){
  1609. if(result.code == 0){
  1610. for(var i = 0 ;i < result.list.length; i++){
  1611. if(result.list[i].id == r.user.storeId){
  1612. vm.storeName = result.list[i].storeName;
  1613. break;
  1614. }
  1615. }
  1616. }
  1617. });
  1618. }
  1619. });
  1620. }
  1621. function removeByValue(arr, val) {
  1622. var index = arr.indexOf(val);
  1623. if (index > -1) {
  1624. arr.splice(index, 1);
  1625. }
  1626. }
  1627. function handle(goodsDetails,operatorType){
  1628. vm.goodsDetail = true;
  1629. // goodsDetails.sellVolume = 1;
  1630. console.log("goodsDetails=====>" + JSON.stringify(goodsDetails));
  1631. goodsDetails.id = vm.index;
  1632. console.log("vm.index====>" + vm.index);
  1633. if(!vm.goodsList[vm.index]){
  1634. vm.index = vm.max;
  1635. }
  1636. console.log("vm.goodsList[vm.index]=====>" + vm.goodsList[vm.index]);
  1637. vm.max++;
  1638. goodsDetails.goodsDesc = "";
  1639. // 判断当前商品是否是赠品
  1640. /*var freeMap = vm.freeBardcode.get(goodsDetails.prodBarcode);
  1641. if(freeMap && "minus" != operatorType){
  1642. goodsDetails.actualPaymentAmount = 0;
  1643. goodsDetails.discountedPrice = goodsDetails.retailPrice;
  1644. vm.freeBardcode.set(goodsDetails.prodBarcode,freeMap - 1);
  1645. }else{
  1646. if(!freeMap && freeMap != 0 ){
  1647. // 判断购物车中是否有赠品 这个操作只有是非赠品才能进来
  1648. for(var i = 0 ; i < vm.goodsList.length ; i++){
  1649. var shopcartGoods = vm.goodsList[i];
  1650. var shopcartFree = vm.freeBardcode.get(shopcartGoods.prodBarcode);
  1651. if(shopcartFree /!*&& shopcartGoods.actualPaymentAmount*!/){
  1652. // if("minus" != operatorType){
  1653. var shopcartSellNum = shopcartGoods.sellVolume;
  1654. if(shopcartFree > shopcartSellNum){
  1655. shopcartGoods.actualPaymentAmount = 0;
  1656. shopcartGoods.discountedPrice = shopcartGoods.retailPrice * shopcartFree;
  1657. vm.discountedPrice = vm.discountedPrice + shopcartGoods.discountedPrice ;
  1658. vm.actualPrice = vm.actualPrice + shopcartGoods.actualPaymentAmount ;
  1659. vm.freeBardcode.set(shopcartGoods.prodBarcode,shopcartFree - 1);//
  1660. }else if(shopcartFree == -1 ){
  1661. // g.actualPaymentAmount == 0){
  1662. shopcartGoods.actualPaymentAmount = shopcartGoods.retailPrice + shopcartGoods.actualPaymentAmount;
  1663. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice - shopcartGoods.retailPrice;
  1664. vm.discountedPrice = vm.discountedPrice + shopcartGoods.discountedPrice ;
  1665. vm.actualPrice = vm.actualPrice + shopcartGoods.actualPaymentAmount ;
  1666. vm.freeBardcode.set(shopcartGoods.prodBarcode,0);// 重置回0
  1667. }else{
  1668. if(shopcartGoods.actualPaymentAmount > 0){
  1669. shopcartGoods.actualPaymentAmount = shopcartGoods.actualPaymentAmount - (shopcartGoods.retailPrice * shopcartFree);
  1670. shopcartGoods.discountedPrice = shopcartGoods.discountedPrice + (shopcartGoods.retailPrice * shopcartFree);
  1671. vm.actualPrice = vm.actualPrice - (shopcartGoods.retailPrice * shopcartFree) ;
  1672. vm.discountedPrice = vm.discountedPrice + (shopcartGoods.retailPrice * shopcartFree) ;
  1673. vm.freeBardcode.set(shopcartGoods.prodBarcode, shopcartFree - 1);// 重置回0
  1674. }
  1675. }
  1676. // }
  1677. }
  1678. }
  1679. }
  1680. }*/
  1681. goodsDetails.discountedPrice = Math.round(goodsDetails.discountedPrice * 100) / 100;
  1682. goodsDetails.actualPaymentAmount = Math.round(goodsDetails.actualPaymentAmount * 100) / 100;
  1683. var data = Object.assign({}, JSON.parse(JSON.stringify(goodsDetails)));
  1684. var isPush = true;
  1685. // 判断当前商品是否添加过
  1686. for(var i = 0 ; i < vm.goodsList.length ; i++){
  1687. if(vm.goodsList[i].goodsSn == data.goodsSn){
  1688. var goodsDetails = vm.goodsList[i];
  1689. if(data.actualPaymentAmount < 0 && goodsDetails.actualPaymentAmount == 0){
  1690. // goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) - parseFloat(data.goodstaxes)) * 100)/100;
  1691. // goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) - parseFloat(data.discountedPrice)) * 100)/100;
  1692. goodsDetails.actualPaymentAmount = 0;
  1693. }else{
  1694. // 税 goodstaxes,优惠金额 discountedPrice,实际支付 actualPaymentAmount,数量 sellVolume 45636917
  1695. goodsDetails.actualPaymentAmount = Math.round((parseFloat(goodsDetails.actualPaymentAmount) + parseFloat(data.actualPaymentAmount)) * 100)/100;
  1696. }
  1697. goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) + parseFloat(data.discountedPrice)) * 100)/100;
  1698. goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) + parseFloat(data.goodstaxes)) * 100)/100;
  1699. goodsDetails.sellVolume = Math.round((parseFloat(goodsDetails.sellVolume) + parseFloat(data.sellVolume)) * 100)/100;
  1700. goodsDetails.activity = data.activity;
  1701. isPush = false;
  1702. break;
  1703. }
  1704. }
  1705. // for(var i = 0 ; i < vm.goodsList.length ; i++){
  1706. // if(vm.goodsList[i].goodsSn == data.goodsSn){
  1707. // var goodsDetails = vm.goodsList[i];
  1708. // // 税 goodstaxes,优惠金额 discountedPrice,实际支付 actualPaymentAmount,数量 sellVolume 45636917
  1709. // goodsDetails.goodstaxes = Math.round((parseFloat(goodsDetails.goodstaxes) + parseFloat(data.goodstaxes)) * 100)/100;
  1710. // goodsDetails.discountedPrice = Math.round((parseFloat(goodsDetails.discountedPrice) + parseFloat(data.discountedPrice)) * 100)/100;
  1711. // goodsDetails.actualPaymentAmount = Math.round((parseFloat(goodsDetails.actualPaymentAmount) + parseFloat(data.actualPaymentAmount)) * 100)/100;
  1712. // goodsDetails.sellVolume = Math.round((parseFloat(goodsDetails.sellVolume) + parseFloat(data.sellVolume)) * 100)/100;
  1713. // goodsDetails.activity = data.activity;
  1714. // isPush = false;
  1715. // break;
  1716. // }
  1717. // }
  1718. if(isPush){
  1719. vm.goodsList.push(data);
  1720. vm.index = vm.index + 1;
  1721. }
  1722. vm.totalPrice = (vm.totalPrice + data.retailPrice);
  1723. if("minus" == operatorType){
  1724. vm.totalCount = vm.totalCount - 1;
  1725. }else{
  1726. vm.totalCount = vm.totalCount + 1;
  1727. }
  1728. if(vm.reduceMoney > 0){
  1729. vm.discountedPrice = vm.discountedPrice + data.discountedPrice + vm.reduceMoney;
  1730. vm.actualPrice = vm.actualPrice + data.actualPaymentAmount - vm.reduceMoney;
  1731. vm.showReduceMoney = vm.showReduceMoney + vm.reduceMoney;
  1732. vm.reduceMoney = 0;
  1733. }else{
  1734. vm.discountedPrice = vm.discountedPrice + data.discountedPrice ;
  1735. vm.actualPrice = vm.actualPrice + data.actualPaymentAmount ;
  1736. }
  1737. if(data.sellVolume < 0){
  1738. data.sellVolume = - data.sellVolume;
  1739. data.retailPrice = - data.retailPrice;
  1740. data.goodstaxes = -data.goodstaxes;
  1741. }
  1742. vm.goods = data;
  1743. // 处理精度
  1744. vm.totalPrice = Math.round(vm.totalPrice * 100) / 100;
  1745. vm.discountedPrice = Math.round(vm.discountedPrice * 100) / 100;
  1746. vm.actualPrice = Math.round(vm.actualPrice * 100) / 100;
  1747. vm.showReduceMoney = Math.round(vm.showReduceMoney * 100) / 100;
  1748. console.log("goodsDetails after=====>" + JSON.stringify(vm.goodsList));
  1749. }
  1750. // 下单处理
  1751. function toPayOrder(payCode){
  1752. $('#payCode').unbind('keydown').keydown(function(event){});
  1753. vm.machineCode = sessionStorage.getItem("machineCode");
  1754. var status = $('input:radio:checked').val();
  1755. var cmbCity = $('#cmbCity').val();
  1756. var cmbProvince = $('#cmbProvince').val();
  1757. var cmbArea = $('#cmbArea').val();
  1758. var addrUser = $('#addrUser').val();
  1759. addrUser = cmbProvince+cmbCity+cmbArea+addrUser;
  1760. // console.log('单选按钮值:'+status);
  1761. // console.log('城市三级联动的值:'+cmbProvince+'|'+cmbCity+'|'+cmbArea+'|'+addrUser);
  1762. console.log(vm.machineCode);
  1763. var param = {'userInfo':vm.userInfo,
  1764. 'payCode':vm.parCode,
  1765. 'goodsList':vm.goodsList,
  1766. 'sessionId':vm.sessionId,
  1767. 'machineCode':vm.machineCode,
  1768. 'cmbProvince':cmbProvince,
  1769. 'cmbCity':cmbCity,
  1770. 'cmbArea':cmbArea,
  1771. 'addrUser':addrUser,
  1772. 'status':status,
  1773. };
  1774. console.log(JSON.stringify(param));
  1775. vm.parCode = "";
  1776. $.ajax({
  1777. type: "POST",
  1778. url: "../order/orderConfirm",
  1779. contentType: "application/json",
  1780. data: JSON.stringify(param),
  1781. success: function (r) {
  1782. console.log(r);
  1783. if (r.code == 0) {
  1784. if (r.resultObj != null) {
  1785. $(".form-group input[type=text]").each(function(){
  1786. this.value = '';
  1787. })
  1788. // 打印小票码小票
  1789. var content = getPrintContent(r.resultObj);
  1790. console.log(content);
  1791. printArea2(content);
  1792. vm.goodsList = [];
  1793. vm.customname = '' ;
  1794. vm.customidcard = '';
  1795. vm.customClearData();
  1796. }else{
  1797. // alert("打印小票失败");
  1798. }
  1799. } else {
  1800. alert(r.msg);
  1801. }
  1802. }
  1803. });
  1804. }
  1805. // 调用后端接口进行退款
  1806. function toRefund(){
  1807. confirm('确认退款吗?', function () {
  1808. vm.canRefund = false;
  1809. $.ajax({
  1810. type: "POST",
  1811. url: "../order/orderHkRefund",
  1812. contentType: "application/json",
  1813. data: JSON.stringify({'orderId':vm.currentOrderNo,'sessionId':vm.sessionId}),
  1814. success: function (r) {
  1815. if (r.code == 0) {
  1816. vm.canRefund = true;
  1817. alert("退款成功")
  1818. } else if (r.code == 500) {
  1819. vm.canRefund = true;
  1820. alert(r.msg)
  1821. } else {
  1822. alert("退款失败,请联系管理员");
  1823. }
  1824. }
  1825. });
  1826. })
  1827. }
  1828. /**
  1829. * 计算当前购物栏商品优惠价格
  1830. */
  1831. calculateOrderPrice = function() {
  1832. let param = {
  1833. 'storeId': sessionStorage.getItem("storeId"),
  1834. 'memberCode': vm.couponBarCode,
  1835. 'goodsList' : vm.goodsList
  1836. };
  1837. console.log("请求参数===>" + JSON.stringify(param));
  1838. $.ajax({
  1839. type: "POST",
  1840. url: "../order/calculateOrderDiscountPrice",
  1841. contentType: "application/json",
  1842. data: JSON.stringify(param),
  1843. success: function (r) {
  1844. if (r.code === 0) {
  1845. let calGoodsList = r.goodsList;
  1846. // 更新购物栏中数据
  1847. console.log("返回====>" + JSON.stringify(r));
  1848. console.log("计算前数据===>" + JSON.stringify(vm.goodsList));
  1849. vm.goodsList.clear();
  1850. calGoodsList.forEach(goods => vm.goodsList.push(goods));
  1851. console.log("计算后数据===>" + JSON.stringify(calGoodsList));
  1852. console.log("替换后数据===>" + JSON.stringify(vm.goodsList));
  1853. $("#calculateOrderPriceDialog").modal('hide');
  1854. } else if (r.code === 500) {
  1855. alert(r.msg);
  1856. } else {
  1857. alert("计算失败,请联系管理员");
  1858. }
  1859. }
  1860. });
  1861. }
  1862. /**
  1863. * 处理加减按钮操作
  1864. * @param currentGoodsDetail 当前操作的商品详情
  1865. * @param type 类型,add:加 minus:减
  1866. */
  1867. handleSellVolume = function (currentGoodsDetail, type) {
  1868. console.log("处理前商品详情=====>" + JSON.stringify(currentGoodsDetail));
  1869. // 当前未被处理的商品数量
  1870. let number = currentGoodsDetail.sellVolume;
  1871. // 当前商品应支付金额
  1872. let currentActualPaymentAmount = new BigNumber(currentGoodsDetail.actualPaymentAmount);
  1873. // 当前商品税款
  1874. let currentGoodsTax = new BigNumber(currentGoodsDetail.goodstaxes);
  1875. // 当前商品零售价
  1876. let retailPrice = new BigNumber(currentGoodsDetail.retailPrice);
  1877. // 单个商品时的税款
  1878. let singleTax = currentGoodsTax.divide(number);
  1879. // 单个商品时的应支付金额
  1880. let singleActualPaymentAmount = currentActualPaymentAmount.divide(number);
  1881. // 当前总价
  1882. let currentTotalPrice = new BigNumber(vm.totalPrice);
  1883. // 当前实际支付价
  1884. let currentActualPrice = new BigNumber(vm.actualPrice);
  1885. if ('add' === type) {
  1886. currentGoodsDetail.sellVolume += 1;
  1887. currentGoodsDetail.goodstaxes = currentGoodsTax.add(singleTax).toString();
  1888. currentGoodsDetail.actualPaymentAmount = currentActualPaymentAmount.add(singleActualPaymentAmount).toString();
  1889. vm.totalCount += 1;
  1890. vm.totalPrice = currentTotalPrice.add(retailPrice).toString();
  1891. vm.actualPrice = currentActualPrice.add(singleActualPaymentAmount).toString();
  1892. } else {
  1893. currentGoodsDetail.sellVolume -= 1;
  1894. currentGoodsDetail.goodstaxes = currentGoodsTax.subtract(singleTax).toString();
  1895. currentGoodsDetail.actualPaymentAmount = currentActualPaymentAmount.subtract(singleActualPaymentAmount).toString();
  1896. vm.totalCount -= 1;
  1897. vm.totalPrice = currentTotalPrice.subtract(retailPrice).toString();
  1898. vm.actualPrice = currentActualPrice.subtract(singleActualPaymentAmount).toString();
  1899. }
  1900. for (let i = 0; i < vm.goodsList.length; i++) {
  1901. let goods = vm.goodsList[i];
  1902. if (currentGoodsDetail.prodBarcode === goods.prodBarcode && currentGoodsDetail.goodsSn === goods.goodsSn) {
  1903. let splice = vm.goodsList.splice(i, 1, currentGoodsDetail);
  1904. console.log("被删除的元素====>" + JSON.stringify(splice));
  1905. }
  1906. }
  1907. console.log("处理后商品详情=====>" + JSON.stringify(currentGoodsDetail))
  1908. }