Commit 3427cdef919fe155cd53a3a0fdc9198364719600
Merge remote-tracking branch 'origin/master'
Showing
27 changed files
with
5301 additions
and
2801 deletions
commons/api/entranceFeeBillList.py
... | ... | @@ -77,6 +77,20 @@ def get_OrderDetails(host="",orderId=None): |
77 | 77 | res = my.useHeadersRequests("get", url=url, headers=headers) |
78 | 78 | return res |
79 | 79 | |
80 | +def get_orderUnfreeze(host="",orderId=None): | |
81 | + """获取订单详情""" | |
82 | + headers = dct.urlCode() | |
83 | + url = host + f"/entranceFeeBill/unfreeze/{orderId}.action" | |
84 | + res = my.useHeadersRequests("get", url=url, headers=headers) | |
85 | + return res | |
86 | + | |
87 | +def get_orderView(host="",orderId=None): | |
88 | + """获取订单详情""" | |
89 | + headers = dct.urlCode() | |
90 | + url = host + f"/entranceFeeBill/view/{orderId}.action" | |
91 | + res = my.useHeadersRequests("get", url=url, headers=headers) | |
92 | + return res | |
93 | + | |
80 | 94 | def get_icCheck(host="",ic=None): |
81 | 95 | """进门缴费单详情页面刷卡刷卡""" |
82 | 96 | headers = dct.urlCode() |
... | ... | @@ -243,6 +257,8 @@ def do_doPay(host="",autocompletecartype=None,fee_str="",**kwargs): |
243 | 257 | res = my.useHeadersRequests("post", url=url, data=data_uc, headers=headers) |
244 | 258 | return res |
245 | 259 | |
260 | + | |
261 | + | |
246 | 262 | def do_payOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号",attrValue="202108060900032",pwd="111111", |
247 | 263 | ic=888810032426): |
248 | 264 | a = listPage(host=host, attrName=attrName, attrValue=attrValue) |
... | ... | @@ -399,4 +415,388 @@ def do_payOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号" |
399 | 415 | print(aa.text) |
400 | 416 | return aa |
401 | 417 | |
418 | +def do_doFreeze(host="",autocompletecartype=None,fee_str="",**kwargs): | |
419 | + """进门单缴费""" | |
420 | + url = host + "/entranceTrade/doFreeze.action" | |
421 | + headers = dct.urlCode() | |
422 | + | |
423 | + data = {"protocolId": "", "pwd": "{pwd}", "clientRedirectTag": "", "viewType": "pay", "optType": "{optType}", | |
424 | + "optUrl": "", "correctInfo": "{correctInfo}", "weightType": "{weightType}", "id": "{orderId}", | |
425 | + "goodsId": "{goodsId}", "number": "{number}", "modified": "{created}", "status": "{status}", | |
426 | + "source": "{source}", "updateFeeItems": "", "correctDiscount": "{correctDiscount}", | |
427 | + "totalAmount": "{totalMoney}", "customerId": "{customerId}", "fundAccount": "{accountId}", "ic": "{ic}", | |
428 | + "customerName": "{customerName}", "customerPhone": "{mobile}", "payway": "刷卡", "plate": "{plate}", | |
429 | + "autocomplete-cartype": "{carTypeCode}({carTypeName})", "carTypeName": "{carTypeName}", | |
430 | + "carTypeCode": "{carTypeCode}", "carTypeId": "{carTypeId}", "carTypeWeight": "{carTypeWeight}", | |
431 | + "storeTareWeight": "", "proveType": "{proveTypeCode}", "grossWeight": "{grossWeight}", | |
432 | + "tareWeight": "{tareWeight}", "weight": "{newWeight}", "goodsNum": "", "itemWeight": "", | |
433 | + "productPrice": "{productPrice}", "unitPrice": "{unitPrice}", "depName": "{feeDepName}", | |
434 | + "calcDepId": "{feeDepId}", "dep": "{feeDepId}", "regionName": "{regionName}", "regionId": "{regionId}", | |
435 | + "productName": "{productName}", "productId": "{productId}", "productArea": "{origin}", "parentId": "", | |
436 | + "levelType": "", "originId": "{originId}", "tradeTypeId": "{tradeTypeId}", | |
437 | + "chargeTotalAmount": "{totalMoney}", "chargeTotalAmountYuan": "{chargeTotalAmountYuan}", | |
438 | + "freezeMoneySymbol": "{chargeTotalAmountYuan}", "comparisonFreezeAmount": "{chargeTotalAmountYuan}", | |
439 | + "created": "{created}", "remark": "", "goodsTagIds": "{goodsTagIds}", "marketFlag": "{firmCode}", | |
440 | + "totalMoney": "{totalMoney}", "receivable": "{receivable}", "collectionPrice": "{discountAmount}", | |
441 | + "discountAmount": "{discountAmount}", "handReceivableAmount": "{handReceivableAmount}", | |
442 | + "itemReceivableAmount": "{receivable}", "correctDiscount": "{correctDiscount}", "shareRatio": "0", | |
443 | + "handlingTeam": "", "handActualAmount": "0", "handManageAmount": "0", "handCollectionAmount": "0", | |
444 | + "receivableAmount": "{receivable}", "categoryName": "{productName}", "categoryId": "{productId}", | |
445 | + "driverTel": "", "grossWeightDate": "{grossWeightDate}", "tareWeightDate": "{tareWeightDate}", | |
446 | + "grossPathName": "", "grossPathId": "", "tarePathId": "", "goodsRemark": "", "inGreeterName": "", | |
447 | + "inGreeterId": "0", "outGreeterId": "", "sumPrice": "{sumPrice}", "shipperName": "", "shipperId": "", | |
448 | + "shipperPhone": "", "feeDepName": "", "calcFeeDepId": "", "feeDepId": "","accountId":""} | |
449 | + data["autocomplete-cartype"] = autocompletecartype | |
450 | + data = dict(data, **kwargs) | |
451 | + data_uc = jsonToUrlcode.jsonToUrlcode(data_json=data)+fee_str | |
452 | + print("================开始请求================") | |
453 | + res = my.useHeadersRequests("post", url=url, data=data_uc, headers=headers) | |
454 | + return res | |
455 | + | |
456 | +def do_freezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号",attrValue="202108060900032",pwd="111111", | |
457 | + ic=888810032426): | |
458 | + a = listPage(host=host, attrName=attrName, attrValue=attrValue) | |
459 | + print("listPage", a.json()) | |
460 | + orderId = a.json()["rows"][0]["id"] | |
461 | + number = a.json()["rows"][0]["number"] | |
462 | + created = a.json()["rows"][0]["created"] | |
463 | + print(orderId) | |
464 | + | |
465 | + # # 订单详情获取 | |
466 | + resOrderDetails = get_OrderDetails(host=host, orderId=orderId) | |
467 | + | |
468 | + # 正则取值 | |
469 | + regionId = re.findall('<option value="(.*?)" bind-name="', resOrderDetails.text)[0] | |
470 | + | |
471 | + # bs取值 | |
472 | + orderDetailsList = BeautifulSoup(resOrderDetails.text, "html.parser").findAll("input") | |
473 | + orderDetailsDict = {i.get("name"): i.get("value") for i in orderDetailsList} | |
474 | + print("orderDetailsDict",orderDetailsDict) | |
475 | + unitPrice = orderDetailsDict["unitPrice"] | |
476 | + goodsId = orderDetailsDict["goodsId"] | |
477 | + status = orderDetailsDict["status"] | |
478 | + source = orderDetailsDict["source"] | |
479 | + optType = orderDetailsDict["optType"] | |
480 | + correctInfo = orderDetailsDict["correctInfo"] | |
481 | + weightType = orderDetailsDict["weightType"] | |
482 | + correctDiscount = orderDetailsDict["correctDiscount"] | |
483 | + goodsTagIds = orderDetailsDict["goodsTagIds"] | |
484 | + sumPrice = orderDetailsDict["sumPrice"] | |
485 | + tradeTypeId = orderDetailsDict["tradeTypeId"] | |
486 | + shareRatio = orderDetailsDict["shareRatio"] | |
487 | + regionName=orderDetailsDict["regionName"] | |
488 | + plate = orderDetailsDict["plate"] | |
489 | + carTypeName = orderDetailsDict["carTypeName"] | |
490 | + carTypeCode = orderDetailsDict["carTypeCode"] | |
491 | + carTypeId = orderDetailsDict["carTypeId"] | |
492 | + carTypeWeight = orderDetailsDict["carTypeWeight"] | |
493 | + proveType = orderDetailsDict["proveType"] | |
494 | + grossWeight = orderDetailsDict["grossWeight"] | |
495 | + tareWeight = orderDetailsDict["tareWeight"] | |
496 | + depName = orderDetailsDict["depName"] | |
497 | + feeDepId = orderDetailsDict["calcDepId"] | |
498 | + productName = orderDetailsDict["productName"] | |
499 | + productId = orderDetailsDict["productId"] | |
500 | + grossWeightDate = orderDetailsDict["grossWeightDate"] | |
501 | + tareWeightDate = orderDetailsDict["tareWeightDate"] | |
502 | + weight = orderDetailsDict["weight"] | |
503 | + calcDepId = orderDetailsDict["calcDepId"] | |
504 | + categoryName = orderDetailsDict["categoryName"] | |
505 | + categoryId = orderDetailsDict["categoryId"] | |
506 | + inGreeterName = orderDetailsDict["inGreeterName"] | |
507 | + inGreeterId = orderDetailsDict["inGreeterId"] | |
508 | + productArea = orderDetailsDict["productArea"] | |
509 | + productPrice = orderDetailsDict["productPrice"] | |
510 | + | |
511 | + | |
512 | + # 用户信息获取 | |
513 | + res = get_icCheck(host=host, ic=ic) | |
514 | + print(res.text) | |
515 | + customerId = res.json()["data"]["aInfo"]["customerId"] | |
516 | + customerName = res.json()["data"]["aInfo"]["customerName"] | |
517 | + accountId = res.json()["data"]["aInfo"]["accountId"] | |
518 | + mobile = res.json()["data"]["aInfo"]["mobile"] | |
519 | + | |
520 | + # 省市区获取 | |
521 | + res = get_city(host=host, name="万州") | |
522 | + print(res.text) | |
523 | + originId = res.json()["suggestions"][0]["id"] | |
524 | + # parentId = res.json()["suggestions"][0]["parentId"] | |
525 | + # value = res.json()["suggestions"][0]["value"] | |
526 | + | |
527 | + # # 获取缴费金额 | |
528 | + autocompletecartype = f"{carTypeCode}({carTypeName})" | |
529 | + print(autocompletecartype) | |
530 | + modified = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) | |
531 | + | |
532 | + # 获取缴费金额 | |
533 | + res = get_calculateRes(host=host, autocompletecartype=autocompletecartype, optType=optType, correctInfo=correctInfo, | |
534 | + weightType=weightType, id=orderId, goodsId=goodsId, number=number, modified=modified, | |
535 | + status=status, | |
536 | + source=source, correctDiscount=correctDiscount, plate=plate, carTypeName=carTypeName, | |
537 | + carTypeCode=carTypeCode, | |
538 | + carTypeId=carTypeId, carTypeWeight=carTypeWeight, proveType=proveType, | |
539 | + grossWeight=grossWeight, | |
540 | + tareWeight=tareWeight, unitPrice=unitPrice, depName=depName, productName=productName, | |
541 | + productId=productId, originId=originId, tradeTypeId=tradeTypeId, created=created, | |
542 | + goodsTagIds=goodsTagIds, | |
543 | + shareRatio=shareRatio, categoryName=categoryName, categoryId=categoryId, | |
544 | + grossWeightDate=grossWeightDate, | |
545 | + tareWeightDate=tareWeightDate, sumPrice=sumPrice, calcDepId=calcDepId, weight=weight, | |
546 | + inGreeterName=inGreeterName, inGreeterId=inGreeterId) | |
547 | + | |
548 | + # 缴费信息 | |
549 | + totalMoney = re.findall('name="totalMoney" value="(.*?)">', res.text)[0] | |
550 | + discountAmount = re.findall('name="discountAmount" value="(.*?)">', res.text)[0] | |
551 | + handReceivableAmount = re.findall('name="handReceivableAmount" value="(.*?)">', res.text)[0] | |
552 | + correctDiscount = re.findall('id="correctDiscount" name="correctDiscount" value="(.*?)">', res.text)[0] | |
553 | + receivable = re.findall('id="creceivableLong" name="receivable" value="(.*?)">', res.text)[0] | |
554 | + collectionPrice = re.findall('name="collectionPrice" value="(.*?)"', res.text)[0] | |
555 | + | |
556 | + # 查找dl标签class为包含'ui-font-'字符的所有dl标签 | |
557 | + soup = BeautifulSoup(res.text, "html.parser") | |
558 | + fee_str = "correctDiscount=1&billItems=&billItemsDic=" | |
559 | + fee_int = 0 | |
560 | + discount_amount = 0 | |
561 | + for tag in soup.findAll("div", class_="d-flex align-items-center"): | |
562 | + c = tag.findAll("input") | |
563 | + for i in c: | |
564 | + if i.get("name") != None: | |
565 | + fee_str = fee_str + "&" + i.get("name") + "=" + urllib.parse.quote(i.get("value")) | |
566 | + if i.get("type") == "text": | |
567 | + fee_int = fee_int + int(float(i.get("value"))) | |
568 | + if "优惠" in i.get("value"): | |
569 | + discount_amount = discount_amount + int(json.loads(i.get("value"))["receivable"]) / 100 | |
570 | + | |
571 | + id = orderId | |
572 | + totalAmount = totalMoney | |
573 | + customerPhone = mobile | |
574 | + dep = feeDepId | |
575 | + chargeTotalAmount = totalMoney | |
576 | + chargeTotalAmountYuan = fee_int - int(discount_amount) | |
577 | + freezeMoneySymbol = fee_int | |
578 | + comparisonFreezeAmount = fee_int | |
579 | + modified = created | |
580 | + firmCode = my.userInfo["data"]["user"]["firmCode"] | |
581 | + marketFlag = firmCode | |
582 | + itemReceivableAmount = receivable | |
583 | + receivableAmount = receivable | |
584 | + tareWeightDate = tareWeightDate | |
585 | + | |
586 | + aa = do_doFreeze(host=host, autocompletecartype=autocompletecartype, fee_str=fee_str, pwd=pwd, optType=optType, | |
587 | + weightType=weightType, id=id, goodsId=goodsId, number=number, created=created, status=status, | |
588 | + source=source, | |
589 | + correctDiscount=correctDiscount, totalAmount=totalAmount, customerId=customerId, | |
590 | + fundAccount=accountId, | |
591 | + accountId=accountId, ic=ic, customerName=customerName, customerPhone=customerPhone, plate=plate, | |
592 | + carTypeName=carTypeName, carTypeCode=carTypeCode, carTypeId=carTypeId, carTypeWeight=carTypeWeight, | |
593 | + proveType=proveType, grossWeight=grossWeight, tareWeight=tareWeight, weight=weight, | |
594 | + productPrice=productPrice, | |
595 | + unitPrice=unitPrice, depName=depName, calcDepId=calcDepId, dep=dep, regionName=regionName, | |
596 | + regionId=regionId, | |
597 | + productName=productName, productId=productId, productArea=productArea, originId=originId, | |
598 | + tradeTypeId=tradeTypeId, correctInfo=correctInfo, chargeTotalAmount=chargeTotalAmount, | |
599 | + freezeMoneySymbol=freezeMoneySymbol, comparisonFreezeAmount=comparisonFreezeAmount, modified=modified, | |
600 | + goodsTagIds=goodsTagIds, marketFlag=marketFlag, totalMoney=totalMoney, receivable=receivable, | |
601 | + collectionPrice=collectionPrice, discountAmount=discountAmount, | |
602 | + handReceivableAmount=handReceivableAmount, | |
603 | + itemReceivableAmount=itemReceivableAmount, receivableAmount=receivableAmount, | |
604 | + categoryName=categoryName, | |
605 | + categoryId=carTypeId, grossWeightDate=grossWeightDate, tareWeightDate=tareWeightDate, | |
606 | + sumPrice=sumPrice, | |
607 | + chargeTotalAmountYuan=chargeTotalAmountYuan) | |
608 | + | |
609 | + print(aa.text) | |
610 | + return aa | |
611 | + | |
612 | + | |
613 | +def do_doUnfreeze(host="",autocompletecartype=None,fee_str="",**kwargs): | |
614 | + """进门单缴费""" | |
615 | + url = host + "/entranceTrade/doUnfreeze.action" | |
616 | + headers = dct.urlCode() | |
617 | + | |
618 | + # data = {"protocolId":"","pwd":"","clientRedirectTag":"","viewType":"unfreeze","optType":"0","optUrl":"","correctInfo":"1","weightType":"1","id":"3968","goodsId":"3982","number":"202108110900122","modified":"2021-08-11+17:32:50","status":"3","source":"1","updateFeeItems":"","correctDiscount":"1","totalAmount":"800","customerId":"389","fundAccount":"105847","accountId":"105847","ic":"888810032426","customerName":"长歌买家省内啊啊啊嘿","customerPhone":"18011501258","payway":"刷卡","plate":"川B00001","autocomplete-cartype":"003(板车)","carTypeName":"板车","carTypeCode":"003","carTypeId":"53","carTypeWeight":"333","storeTareWeight":"","proveType":"1621","grossWeight":"353","tareWeight":"333","weight":"20","goodsNum":"","itemWeight":"","productPrice":"1.00000","unitPrice":"100.0","depName":"水果部","dep":"58","regionId":"72","productName":"雪莲果","productId":"14158","productArea":"重庆,重庆市,万州区","originId":"500101","tradeTypeId":"71","chargeTotalAmount":"800","chargeTotalAmountYuan":"8","freezeMoneySymbol":"13","comparisonFreezeAmount":"13","created":"2021-08-11+17:32:27","remark":"备注","goodsTagIds":"1900","shareRatio":"0","handlingTeam":"","steveTeamId":"","handlingRatio":"","handActualAmount":"0","handManageAmount":"0","handCollectionAmount":"0","marketFlag":"sy","totalMoney":"800","receivable":"1300","collectionPrice":"0","discountAmount":"500","handReceivableAmount":"0","itemReceivableAmount":"1300","receivableAmount":"1300","categoryName":"水果","categoryId":"14436","driverTel":"","grossWeightDate":"2021-08-11+17:32:27","tareWeightDate":"2021-08-11+17:32:27","grossPathName":"","grossPathId":"","tarePathId":"","goodsRemark":"备注","inGreeterName":"通用测试","inGreeterId":"274","outGreeterId":"","sumPrice":"2000","shipperName":"","shipperId":"","shipperPhone":"","feeDepId":"0"} | |
619 | + data = {"protocolId": "", "pwd": "", "clientRedirectTag": "", "viewType": "unfreeze", "optType": "0", "optUrl": "", | |
620 | + "correctInfo": "1", "weightType": "1", "id": "3968", "goodsId": "3982", "number": "202108110900122", | |
621 | + "modified": "2021-08-11+17:32:50", "status": "3", "source": "1", "updateFeeItems": "", | |
622 | + "correctDiscount": "1", "totalAmount": "800", "customerId": "389", "fundAccount": "105847", | |
623 | + "accountId": "105847", "ic": "888810032426", "customerName": "长歌买家省内啊啊啊嘿", "customerPhone": "18011501258", | |
624 | + "payway": "刷卡", "plate": "川B00001", "autocomplete-cartype": "003(板车)", "carTypeName": "板车", | |
625 | + "carTypeCode": "003", "carTypeId": "53", "carTypeWeight": "333", "storeTareWeight": "", "proveType": "1621", | |
626 | + "grossWeight": "353", "tareWeight": "333", "weight": "20", "goodsNum": "", "itemWeight": "", | |
627 | + "productPrice": "1.00000", "unitPrice": "100.0", "depName": "水果部", "dep": "58", "regionId": "72", | |
628 | + "productName": "雪莲果", "productId": "14158", "productArea": "重庆,重庆市,万州区", "originId": "500101", | |
629 | + "tradeTypeId": "71", "chargeTotalAmount": "800", "chargeTotalAmountYuan": "8", "freezeMoneySymbol": "13", | |
630 | + "comparisonFreezeAmount": "13", "created": "2021-08-11+17:32:27", "remark": "备注", "goodsTagIds": "1900", | |
631 | + "shareRatio": "0", "handlingTeam": "", "steveTeamId": "", "handlingRatio": "", "handActualAmount": "0", | |
632 | + "handManageAmount": "0", "handCollectionAmount": "0", "marketFlag": "sy", "totalMoney": "800", | |
633 | + "receivable": "1300", "collectionPrice": "0", "discountAmount": "500", "handReceivableAmount": "0", | |
634 | + "itemReceivableAmount": "1300", "receivableAmount": "1300", "categoryName": "水果", "categoryId": "14436", | |
635 | + "driverTel": "", "grossWeightDate": "2021-08-11+17:32:27", "tareWeightDate": "2021-08-11+17:32:27", | |
636 | + "grossPathName": "", "grossPathId": "", "tarePathId": "", "goodsRemark": "备注", "inGreeterName": "通用测试", | |
637 | + "inGreeterId": "274", "outGreeterId": "", "sumPrice": "2000", "shipperName": "", "shipperId": "", | |
638 | + "shipperPhone": "", "feeDepId": "0"} | |
639 | + | |
640 | + data["autocomplete-cartype"] = autocompletecartype | |
641 | + data = dict(data, **kwargs) | |
642 | + data_uc = jsonToUrlcode.jsonToUrlcode(data_json=data)+fee_str | |
643 | + print("================开始请求================") | |
644 | + res = my.useHeadersRequests("post", url=url, data=data_uc, headers=headers) | |
645 | + return res | |
646 | + | |
647 | +def do_unfreezeOrder(host="http://test.jmsf.diligrp.com:8385",attrName="收费单号",attrValue="202108060900032",pwd="111111", | |
648 | + ic=888810032426): | |
649 | + a = listPage(host=host, attrName=attrName, attrValue=attrValue) | |
650 | + print("listPage", a.json()) | |
651 | + orderId = a.json()["rows"][0]["id"] | |
652 | + number = a.json()["rows"][0]["number"] | |
653 | + created = a.json()["rows"][0]["created"] | |
654 | + print(orderId) | |
655 | + | |
656 | + # # 订单详情获取 | |
657 | + resOrderDetails = get_orderUnfreeze(host=host, orderId=orderId) | |
658 | + | |
659 | + # 正则取值 | |
660 | + regionId = re.findall('<option value="(.*?)" bind-name="', resOrderDetails.text)[0] | |
661 | + | |
662 | + # bs取值 | |
663 | + orderDetailsList = BeautifulSoup(resOrderDetails.text, "html.parser").findAll("input") | |
664 | + orderDetailsDict = {i.get("name"): i.get("value") for i in orderDetailsList} | |
665 | + print("orderDetailsDict",orderDetailsDict) | |
666 | + unitPrice = orderDetailsDict["unitPrice"] | |
667 | + goodsId = orderDetailsDict["goodsId"] | |
668 | + status = orderDetailsDict["status"] | |
669 | + source = orderDetailsDict["source"] | |
670 | + optType = orderDetailsDict["optType"] | |
671 | + correctInfo = orderDetailsDict["correctInfo"] | |
672 | + weightType = orderDetailsDict["weightType"] | |
673 | + correctDiscount = orderDetailsDict["correctDiscount"] | |
674 | + goodsTagIds = orderDetailsDict["goodsTagIds"] | |
675 | + sumPrice = orderDetailsDict["sumPrice"] | |
676 | + tradeTypeId = orderDetailsDict["tradeTypeId"] | |
677 | + shareRatio = orderDetailsDict["shareRatio"] | |
678 | + regionName=orderDetailsDict["regionName"] | |
679 | + plate = orderDetailsDict["plate"] | |
680 | + carTypeName = orderDetailsDict["carTypeName"] | |
681 | + carTypeCode = orderDetailsDict["carTypeCode"] | |
682 | + carTypeId = orderDetailsDict["carTypeId"] | |
683 | + carTypeWeight = orderDetailsDict["carTypeWeight"] | |
684 | + proveType = orderDetailsDict["proveType"] | |
685 | + grossWeight = orderDetailsDict["grossWeight"] | |
686 | + tareWeight = orderDetailsDict["tareWeight"] | |
687 | + depName = orderDetailsDict["depName"] | |
688 | + feeDepId = orderDetailsDict["calcDepId"] | |
689 | + productName = orderDetailsDict["productName"] | |
690 | + productId = orderDetailsDict["productId"] | |
691 | + grossWeightDate = orderDetailsDict["grossWeightDate"] | |
692 | + tareWeightDate = orderDetailsDict["tareWeightDate"] | |
693 | + weight = orderDetailsDict["weight"] | |
694 | + calcDepId = orderDetailsDict["calcDepId"] | |
695 | + categoryName = orderDetailsDict["categoryName"] | |
696 | + categoryId = orderDetailsDict["categoryId"] | |
697 | + inGreeterName = orderDetailsDict["inGreeterName"] | |
698 | + inGreeterId = orderDetailsDict["inGreeterId"] | |
699 | + productArea = orderDetailsDict["productArea"] | |
700 | + productPrice = orderDetailsDict["productPrice"] | |
701 | + | |
702 | + | |
703 | + # 用户信息获取 | |
704 | + res = get_icCheck(host=host, ic=ic) | |
705 | + print(res.text) | |
706 | + customerId = res.json()["data"]["aInfo"]["customerId"] | |
707 | + customerName = res.json()["data"]["aInfo"]["customerName"] | |
708 | + accountId = res.json()["data"]["aInfo"]["accountId"] | |
709 | + mobile = res.json()["data"]["aInfo"]["mobile"] | |
710 | + | |
711 | + # 省市区获取 | |
712 | + res = get_city(host=host, name="万州") | |
713 | + print(res.text) | |
714 | + originId = res.json()["suggestions"][0]["id"] | |
715 | + # parentId = res.json()["suggestions"][0]["parentId"] | |
716 | + # value = res.json()["suggestions"][0]["value"] | |
717 | + | |
718 | + # # 获取缴费金额 | |
719 | + autocompletecartype = f"{carTypeCode}({carTypeName})" | |
720 | + print(autocompletecartype) | |
721 | + modified = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) | |
722 | + | |
723 | + # 获取缴费金额 | |
724 | + res = get_calculateRes(host=host, autocompletecartype=autocompletecartype, optType=optType, correctInfo=correctInfo, | |
725 | + weightType=weightType, id=orderId, goodsId=goodsId, number=number, modified=modified, | |
726 | + status=status, | |
727 | + source=source, correctDiscount=correctDiscount, plate=plate, carTypeName=carTypeName, | |
728 | + carTypeCode=carTypeCode, | |
729 | + carTypeId=carTypeId, carTypeWeight=carTypeWeight, proveType=proveType, | |
730 | + grossWeight=grossWeight, | |
731 | + tareWeight=tareWeight, unitPrice=unitPrice, depName=depName, productName=productName, | |
732 | + productId=productId, originId=originId, tradeTypeId=tradeTypeId, created=created, | |
733 | + goodsTagIds=goodsTagIds, | |
734 | + shareRatio=shareRatio, categoryName=categoryName, categoryId=categoryId, | |
735 | + grossWeightDate=grossWeightDate, | |
736 | + tareWeightDate=tareWeightDate, sumPrice=sumPrice, calcDepId=calcDepId, weight=weight, | |
737 | + inGreeterName=inGreeterName, inGreeterId=inGreeterId) | |
738 | + | |
739 | + # 缴费信息 | |
740 | + totalMoney = re.findall('name="totalMoney" value="(.*?)">', res.text)[0] | |
741 | + discountAmount = re.findall('name="discountAmount" value="(.*?)">', res.text)[0] | |
742 | + handReceivableAmount = re.findall('name="handReceivableAmount" value="(.*?)">', res.text)[0] | |
743 | + correctDiscount = re.findall('id="correctDiscount" name="correctDiscount" value="(.*?)">', res.text)[0] | |
744 | + receivable = re.findall('id="creceivableLong" name="receivable" value="(.*?)">', res.text)[0] | |
745 | + collectionPrice = re.findall('name="collectionPrice" value="(.*?)"', res.text)[0] | |
746 | + | |
747 | + # 查找dl标签class为包含'ui-font-'字符的所有dl标签 | |
748 | + soup = BeautifulSoup(res.text, "html.parser") | |
749 | + fee_str = "correctDiscount=1&billItems=&billItemsDic=" | |
750 | + fee_int = 0 | |
751 | + discount_amount = 0 | |
752 | + for tag in soup.findAll("div", class_="d-flex align-items-center"): | |
753 | + c = tag.findAll("input") | |
754 | + for i in c: | |
755 | + if i.get("name") != None: | |
756 | + fee_str = fee_str + "&" + i.get("name") + "=" + urllib.parse.quote(i.get("value")) | |
757 | + if i.get("type") == "text": | |
758 | + fee_int = fee_int + int(float(i.get("value"))) | |
759 | + if "优惠" in i.get("value"): | |
760 | + discount_amount = discount_amount + int(json.loads(i.get("value"))["receivable"]) / 100 | |
761 | + | |
762 | + id = orderId | |
763 | + totalAmount = totalMoney | |
764 | + customerPhone = mobile | |
765 | + dep = feeDepId | |
766 | + chargeTotalAmount = totalMoney | |
767 | + chargeTotalAmountYuan = fee_int - int(discount_amount) | |
768 | + freezeMoneySymbol = fee_int | |
769 | + comparisonFreezeAmount = fee_int | |
770 | + modified = created | |
771 | + firmCode = my.userInfo["data"]["user"]["firmCode"] | |
772 | + marketFlag = firmCode | |
773 | + itemReceivableAmount = receivable | |
774 | + receivableAmount = receivable | |
775 | + tareWeightDate = tareWeightDate | |
776 | + | |
777 | + aa = do_doUnfreeze(host=host, autocompletecartype=autocompletecartype, fee_str=fee_str, pwd=pwd, optType=optType, | |
778 | + weightType=weightType, id=id, goodsId=goodsId, number=number, created=created, status=status, | |
779 | + source=source, | |
780 | + correctDiscount=correctDiscount, totalAmount=totalAmount, customerId=customerId, | |
781 | + fundAccount=accountId, | |
782 | + accountId=accountId, ic=ic, customerName=customerName, customerPhone=customerPhone, plate=plate, | |
783 | + carTypeName=carTypeName, carTypeCode=carTypeCode, carTypeId=carTypeId, carTypeWeight=carTypeWeight, | |
784 | + proveType=proveType, grossWeight=grossWeight, tareWeight=tareWeight, weight=weight, | |
785 | + productPrice=productPrice, | |
786 | + unitPrice=unitPrice, depName=depName, calcDepId=calcDepId, dep=dep, regionName=regionName, | |
787 | + regionId=regionId, | |
788 | + productName=productName, productId=productId, productArea=productArea, originId=originId, | |
789 | + tradeTypeId=tradeTypeId, correctInfo=correctInfo, chargeTotalAmount=chargeTotalAmount, | |
790 | + freezeMoneySymbol=freezeMoneySymbol, comparisonFreezeAmount=comparisonFreezeAmount, modified=modified, | |
791 | + goodsTagIds=goodsTagIds, marketFlag=marketFlag, totalMoney=totalMoney, receivable=receivable, | |
792 | + collectionPrice=collectionPrice, discountAmount=discountAmount, | |
793 | + handReceivableAmount=handReceivableAmount, | |
794 | + itemReceivableAmount=itemReceivableAmount, receivableAmount=receivableAmount, | |
795 | + categoryName=categoryName, | |
796 | + categoryId=carTypeId, grossWeightDate=grossWeightDate, tareWeightDate=tareWeightDate, | |
797 | + sumPrice=sumPrice, | |
798 | + chargeTotalAmountYuan=chargeTotalAmountYuan) | |
799 | + | |
800 | + print(aa.text) | |
801 | + return aa | |
402 | 802 | # do_payOrder(attrValue="202108100900016") |
403 | 803 | \ No newline at end of file | ... | ... |
commons/api/fc_add.py
... | ... | @@ -20,8 +20,8 @@ class fc_add(): |
20 | 20 | "Referer": "http://test.jmsf.diligrp.com:8385/FeedbackCustomerController/list", |
21 | 21 | "Accept-Encoding": "gzip,deflate" |
22 | 22 | } |
23 | - # body = 'parentId=0&name=框架&mobile=18828273365&cardNumber=888800022857' | |
24 | - body = "parentId=0&name=你好&mobile=18828281176&cardNumber=888810054630&relationCardTemp=888810054630&relationalCard[0].cardNumber=888810054630" | |
23 | + body = 'parentId=0&name=你好&mobile=18828281176&cardNumber=888810054630' | |
24 | + # body = "parentId=0&name=你好&mobile=18828281176&cardNumber=888810054630&relationCardTemp=888810054630&relationalCard[0].cardNumber=888810054630" | |
25 | 25 | def __init__(self): |
26 | 26 | self.url = fc_add.url.replace("http://test.",com.get_global_config("global_data", "environment", "en") ) |
27 | 27 | self.header = fc_add.header | ... | ... |
commons/api/feedback_customer_query.py
... | ... | @@ -25,11 +25,16 @@ class feedback_customer_query(): |
25 | 25 | "Content-Type": "application/x-www-form-urlencoded", |
26 | 26 | } |
27 | 27 | |
28 | - body = '''rows=10&page=1&sort=id&order=desc&metadata[created]=[provider=datetimeProvider&index=10&field=created] | |
29 | - &metadata[status]=[provider=stateProvider&index=20&field=status] | |
30 | - &metadata[created] = {"provider": "datetimeProvider", "index": 10, "field": "created"} | |
31 | - &metadata[status] = {"provider": "stateProvider", "index": 20, "field": "status"} | |
32 | - &name=史芳&reatedStart=2021-08-02 00:00:00&createdEnd=2021-08-03 23:59:59''' | |
28 | + body = '''rows=10 | |
29 | + &page=1 | |
30 | + &sort=id | |
31 | + &order=desc | |
32 | + &metadata[created]={"provider":"datetimeProvider","index":10,"field":"created"} | |
33 | + &metadata[status]={"provider":"stateProvider","index":20,"field":"status"} | |
34 | + &name=潘婷婷 | |
35 | + &createdStart=2021-08-11 00:00:00 | |
36 | + &createdEnd=2021-08-11 23:59:59 | |
37 | + ''' | |
33 | 38 | |
34 | 39 | |
35 | 40 | def __init__(self): |
... | ... | @@ -40,6 +45,6 @@ class feedback_customer_query(): |
40 | 45 | # feedback_customer_query = urllib.parse.urlencode(feedback_customer_query()) |
41 | 46 | |
42 | 47 | # fcq = feedback_customer_query |
43 | -# print(fcq.body) | |
44 | -# re = sy1.post(url = fcq.url, data = fcq.body.encode('utf-8'),headers = fcq.header,proxies=my.myproxies) | |
48 | +# # print(fcq.body) | |
49 | +# re = sy1.post(url = fcq.url, data = fcq.body.replace('\n',"").encode('utf-8'),headers = fcq.header,proxies = my.proxies) | |
45 | 50 | # print(re.text) |
46 | 51 | \ No newline at end of file | ... | ... |
commons/api/sjApi.py
0 → 100644
1 | +# -*- coding: utf-8 -*- | |
2 | + | |
3 | +# @Time : 2021/8/11 15:59 | |
4 | +# @Author : Ljq | |
5 | +# @File : sjApi.py | |
6 | +# @Software: PyCharm | |
7 | + | |
8 | +""" | |
9 | +散件 | |
10 | +""" | |
11 | + | |
12 | +import json,time,random | |
13 | +from commons.scripts import dealContentType as dct | |
14 | +from commons.MySession import my | |
15 | +from commons.api import zcApi | |
16 | +from commons.api import entranceFeeBillList as eFBL | |
17 | + | |
18 | + | |
19 | +def create_sparePartsWeighSave(host="",duplicateToken=None,**kwargs): | |
20 | + """查询证明类型 | |
21 | + :param host: | |
22 | + :param **kwargs: | |
23 | + { | |
24 | + "driverTel": "", | |
25 | + "inGreeterId": 223, | |
26 | + "inGreeterName": "测试沈阳", | |
27 | + "itemWeight": 11, | |
28 | + "productId": 14158, | |
29 | + "productName": "雪莲果", | |
30 | + "proveTypeCode": 665, | |
31 | + "proveTypeName": "食品安全", | |
32 | + "qty": 33, | |
33 | + "weighRemark": null, | |
34 | + "weight": 363, | |
35 | + "weighmanRecord": { | |
36 | + "grossWeight": null, | |
37 | + "grossWeightDate": null, | |
38 | + "newWeight": null, | |
39 | + "tareWeight": null, | |
40 | + "tareWeightDate": null, | |
41 | + "weighImgs": [] | |
42 | + }, | |
43 | + "productCode": null, | |
44 | + "plate": "ASD", | |
45 | + "carTypeId": 53, | |
46 | + "carTypeCode": "003", | |
47 | + "carTypeName": "板车", | |
48 | + "pathAddress": "A4-BB-6D-0A-F4-13", | |
49 | + "entryPlateInputType": 1, | |
50 | + "feeDepId": 0, | |
51 | + "feeDepName": null, | |
52 | + "dep": 58, | |
53 | + "depName": "水果部", | |
54 | + "notice": 0, | |
55 | + "backSkinTwo": -1, | |
56 | + "recordOriginId": 0, | |
57 | + "recordOriginName": null, | |
58 | + "recordProductId": 0, | |
59 | + "recordProductName": null, | |
60 | + "recordWeight": null, | |
61 | + "codeIc": null, | |
62 | + "codeId": 0, | |
63 | + "difference": 0, | |
64 | + "bindRecordSign": 0, | |
65 | + "recordDesc": null, | |
66 | + "hasCodeItems": false, | |
67 | + "type": 2, | |
68 | + "tradeTypeId": 70, | |
69 | + "tradeType": "9001", | |
70 | + "tradeTypeName": "沈阳1号", | |
71 | + "goodsTagId": 663, | |
72 | + "originId": 500101, | |
73 | + "origin": "万州区", | |
74 | + "originCode": "023"l | |
75 | + } | |
76 | + :return:""" | |
77 | + url = host + "/jmsf-web/api/entrace/sparePartsWeighSave" | |
78 | + # data = {"driverTel":"","inGreeterId":223,"inGreeterName":"测试沈阳","itemWeight":11,"productId":14158,"productName":"雪莲果","proveTypeCode":665,"proveTypeName":"食品安全","qty":33,"weighRemark":None,"weight":363,"weighmanRecord":{"grossWeight":None,"grossWeightDate":None,"newWeight":None,"tareWeight":None,"tareWeightDate":None,"weighImgs":[]},"productCode":None,"plate":"ASD","carTypeId":53,"carTypeCode":"003","carTypeName":"板车","pathAddress":"A4-BB-6D-0A-F4-13","entryPlateInputType":1,"feeDepId":0,"feeDepName":None,"dep":58,"depName":"水果部","notice":0,"backSkinTwo":-1,"recordOriginId":0,"recordOriginName":None,"recordProductId":0,"recordProductName":None,"recordWeight":None,"codeIc":None,"codeId":0,"difference":0,"bindRecordSign":0,"recordDesc":None,"hasCodeItems":False,"type":2,"tradeTypeId":70,"tradeType":"9001","tradeTypeName":"沈阳1号","goodsTagId":663,"originId":500101,"origin":"万州区","originCode":"023"} | |
79 | + data = {"driverTel": "", "inGreeterId": 223, "inGreeterName": "测试沈阳", "itemWeight": 11, "productId": 14158, | |
80 | + "productName": "雪莲果", "proveTypeCode": 665, "proveTypeName": "食品安全", "qty": 33, "weighRemark": None, | |
81 | + "weight": 363, | |
82 | + "weighmanRecord": {"grossWeight": None, "grossWeightDate": None, "newWeight": None, "tareWeight": None, | |
83 | + "tareWeightDate": None, "weighImgs": []}, "productCode": None, "plate": "ASD", | |
84 | + "carTypeId": 53, "carTypeCode": "003", "carTypeName": "板车", "pathAddress": "A4-BB-6D-0A-F4-13", | |
85 | + "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": None, "dep": 58, "depName": "水果部", "notice": 0, | |
86 | + "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": None, "recordProductId": 0, | |
87 | + "recordProductName": None, "recordWeight": None, "codeIc": None, "codeId": 0, "difference": 0, | |
88 | + "bindRecordSign": 0, "recordDesc": None, "hasCodeItems": False, "type": 2, "tradeTypeId": 70, | |
89 | + "tradeType": "9001", "tradeTypeName": "沈阳1号", "goodsTagId": 663, "originId": 500101, "origin": "万州区", | |
90 | + "originCode": "023"} | |
91 | + headers = dct.jsonCode() | |
92 | + headers["jmsf_duplicate_commit_token"] = duplicateToken | |
93 | + data = dict(data, **kwargs) | |
94 | + res = my.useHeadersRequests(method="POST", url=url, data=json.dumps(data), headers=headers) | |
95 | + return res | |
96 | + | |
97 | +def create_sj(host=None,carTypeName=None,keyword="蔬菜",userName=None,transactionName=None, | |
98 | + plate="川A12345",goodsTagName=None,depName=None,proveName=None,itemWeight="10",qty="22"): | |
99 | + """ | |
100 | + | |
101 | + """ | |
102 | + # 获取车型 | |
103 | + carType = zcApi.get_carType(host=host) | |
104 | + print(carType.text) | |
105 | + if carTypeName ==None: | |
106 | + carTypeIndex = 0 | |
107 | + else: | |
108 | + carTypeIndex = carType.json()["data"].index( | |
109 | + [i for i in carType.json()["data"] if i["carTypeName"] == carTypeName][0]) | |
110 | + carTypeCode = carType.json()["data"][carTypeIndex]["code"] | |
111 | + carTypeId = carType.json()["data"][carTypeIndex]["id"] | |
112 | + carTypeName = carType.json()["data"][carTypeIndex]["carTypeName"] | |
113 | + carTypeWeight = carType.json()["data"][carTypeIndex]["weight"] | |
114 | + | |
115 | + # 获取商品 | |
116 | + categoryByCondition = zcApi.get_listCategoryByCondition(host=host,keyword=keyword) | |
117 | + print(categoryByCondition.json()) | |
118 | + cateId = categoryByCondition.json()["data"][0]["id"] | |
119 | + productId = categoryByCondition.json()["data"][0]["id"] | |
120 | + productName = categoryByCondition.json()["data"][0]["name"] | |
121 | + productCode = categoryByCondition.json()["data"][0]["keycode"] | |
122 | + print(productName) | |
123 | + print(productId) | |
124 | + | |
125 | + # 获取接车员信息 | |
126 | + listByExample = zcApi.get_listByExample(host=host) | |
127 | + print(listByExample.json()) | |
128 | + if userName ==None: | |
129 | + listByExampleIndex = 0 | |
130 | + else: | |
131 | + listByExampleIndex = listByExample.json()["data"].index( | |
132 | + [i for i in listByExample.json()["data"] if i["userName"] == userName][0]) | |
133 | + inGreeterId = listByExample.json()["data"][listByExampleIndex]["id"] | |
134 | + inGreeterName = listByExample.json()["data"][listByExampleIndex]["realName"] | |
135 | + | |
136 | + # 获取交易类型 | |
137 | + transactionType = zcApi.query_transactionType(host=host) | |
138 | + print(transactionType.json()) | |
139 | + print("交易类型") | |
140 | + if transactionName ==None: | |
141 | + transactionTypeIndex = 0 | |
142 | + else: | |
143 | + transactionTypeIndex = transactionType.json()["rows"].index( | |
144 | + [i for i in transactionType.json()["rows"] if i["name"] == transactionName][0]) | |
145 | + tradeType = transactionType.json()["rows"][transactionTypeIndex]["code"] | |
146 | + tradeTypeId = transactionType.json()["rows"][transactionTypeIndex]["id"] | |
147 | + tradeTypeName = transactionType.json()["rows"][transactionTypeIndex]["name"] | |
148 | + | |
149 | + # 获取货物标签 | |
150 | + goodsTag = zcApi.get_goodsTag(host=host) | |
151 | + print(goodsTag.json()) | |
152 | + if goodsTagName ==None: | |
153 | + transactionTypeIndex = 0 | |
154 | + else: | |
155 | + transactionTypeIndex = goodsTag.json()["data"].index( | |
156 | + [i for i in goodsTag.json()["data"] if i["name"] == goodsTagName][0]) | |
157 | + goodsTagId = goodsTag.json()["data"][transactionTypeIndex]["id"] | |
158 | + | |
159 | + # 产地信息获取 | |
160 | + address = zcApi.get_address(host=host) | |
161 | + print(address.json()) | |
162 | + originId = address.json()["data"][0]["id"] | |
163 | + origin = address.json()["data"][0]["name"] | |
164 | + originCode = address.json()["data"][0]["cityCode"] | |
165 | + | |
166 | + # 查询部门信息 | |
167 | + depRes = zcApi.get_dep(host=host) | |
168 | + print(depRes.json()) | |
169 | + if depName ==None: | |
170 | + depResIndex = 0 | |
171 | + else: | |
172 | + depResIndex = depRes.json()["data"].index( | |
173 | + [i for i in depRes.json()["data"] if i["name"] == depName][0]) | |
174 | + feeDepId = depRes.json()["data"][depResIndex]["id"] | |
175 | + feeDepName = depRes.json()["data"][depResIndex]["name"] | |
176 | + | |
177 | + # 获取证明类型 | |
178 | + proveType = zcApi.get_proveType(host=host) | |
179 | + print(proveType.json()) | |
180 | + # print("proveName",proveName) | |
181 | + if proveName ==None: | |
182 | + proveTypeIndex = 0 | |
183 | + else: | |
184 | + proveTypeIndex = proveType.json()["data"].index( | |
185 | + [i for i in proveType.json()["data"] if i["name"] == proveName][0]) | |
186 | + proveTypeCode = proveType.json()["data"][proveTypeIndex]["id"] | |
187 | + proveTypeName = proveType.json()["data"][proveTypeIndex]["name"] | |
188 | + print("proveTypeCode", proveTypeCode) | |
189 | + print("proveTypeName", proveTypeName) | |
190 | + | |
191 | + # 获取防重token | |
192 | + duplicateTokenRes = zcApi.get_duplicateToken(host=host) | |
193 | + print(duplicateTokenRes.json()) | |
194 | + duplicateToken = duplicateTokenRes.json()["data"] | |
195 | + | |
196 | + # 创建生成进门单 | |
197 | + plate = plate | |
198 | + productState = "1" | |
199 | + trailerNumber = plate | |
200 | + | |
201 | + # 重量信息准备 | |
202 | + weight = int(itemWeight)*int(qty) | |
203 | + | |
204 | + # 创建进门单 | |
205 | + cre_res = create_sparePartsWeighSave(host=host, duplicateToken=duplicateToken, | |
206 | + carTypeCode=carTypeCode, carTypeId=carTypeId, | |
207 | + carTypeName=carTypeName, plate=plate,weight=weight, | |
208 | + productId=productId, productName=productName, proveTypeCode=proveTypeCode, | |
209 | + proveTypeName=proveTypeName, trailerNumber=trailerNumber, depName=feeDepName, | |
210 | + cateId=cateId, originId=originId, origin=origin, originCode=originCode, | |
211 | + tradeType=tradeType, tradeTypeName=tradeTypeName, productState=productState, | |
212 | + tradeTypeId=tradeTypeId, goodsTagId=goodsTagId, inGreeterId=inGreeterId, | |
213 | + inGreeterName=inGreeterName, dep=feeDepId) | |
214 | + return cre_res | |
215 | + | |
216 | +# host="http://test.gateway.diligrp.com:8285" | |
217 | +# cre_res = create_sj(host=host,keyword="雪莲果") | |
218 | +# print(cre_res.json()) | |
219 | +# number = cre_res.json()["data"]["number"] | |
220 | +# aa = eFBL.do_payOrder(attrValue=number) | |
0 | 221 | \ No newline at end of file | ... | ... |
commons/api/zcApi.py
... | ... | @@ -275,7 +275,8 @@ def create_jmsf(host=None,carTypeName=None,keyword="蔬菜",userName=None,transa |
275 | 275 | # 获取证明类型 |
276 | 276 | proveType = get_proveType(host=host) |
277 | 277 | print(proveType.json()) |
278 | - if depName ==None: | |
278 | + # print("proveName",proveName) | |
279 | + if proveName ==None: | |
279 | 280 | proveTypeIndex = 0 |
280 | 281 | else: |
281 | 282 | proveTypeIndex = proveType.json()["data"].index( | ... | ... |
commons/basic/getLookupList.py
... | ... | @@ -15,11 +15,16 @@ from commons.scripts import jsonToUrlcode |
15 | 15 | from commons.MySession import my |
16 | 16 | |
17 | 17 | def get_LookupList(host="",providerName="车型"): |
18 | - """基础数据获取接口""" | |
18 | + """基础数据获取接口 | |
19 | + :param providerName: | |
20 | + :return: | |
21 | + [{'text': '蔬菜', 'value': '14152'}] | |
22 | + """ | |
19 | 23 | providerDict = {"车型": "carTypeForJmsfProvider", "货物品类": "categoryProvider", "接车部门": "authDepartmentProvider", |
20 | 24 | "称重类型": "entranceFeeBillTypeProvider", "状态": "entranceFeeBillStateProvider", |
21 | 25 | "交易类型": "tradeTypeProvider"} |
22 | 26 | url = host + "/provider/getLookupList.action" |
27 | + # print(providerName) | |
23 | 28 | data = {"provider":providerDict[providerName]} |
24 | 29 | headers = dct.urlCode() |
25 | 30 | res = my.useHeadersRequests(method="POST", url=url, data=data, headers=headers) |
... | ... | @@ -33,6 +38,15 @@ def get_reach(host="",depId="56"): |
33 | 38 | res = my.useHeadersRequests(method="POST", url=url, data=data, headers=headers) |
34 | 39 | return res |
35 | 40 | |
41 | +def get_product(host="",productName="蔬菜"): | |
42 | + """通过部门编号获取区域""" | |
43 | + url = host + f"/category/search.action?name={productName}" | |
44 | + data = {"name":productName,"keyword":productName} | |
45 | + headers = dct.urlCode() | |
46 | + res = my.useHeadersRequests(method="get", url=url, params=data, headers=headers) | |
47 | + return res | |
48 | + | |
36 | 49 | # host="http://test.jmsf.diligrp.com:8385" |
37 | 50 | # print(get_LookupList(host=host,providerName="货物品类").json()) |
38 | -# print(get_reach(host).json()) | |
39 | 51 | \ No newline at end of file |
52 | +# print(get_reach(host).json()) | |
53 | +# print(get_category(host=host,productName="蔬菜").json()) | |
40 | 54 | \ No newline at end of file | ... | ... |
report/2021-07-28 10_56_57_result.html deleted
100644 → 0
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
3 | -<html xmlns="http://www.w3.org/1999/xhtml"> | |
4 | -<head> | |
5 | - <title>重构项目接口测试报告</title> | |
6 | - <meta name="generator" content="HTMLTestRunner 0.8.3"/> | |
7 | - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
8 | - | |
9 | -<style type="text/css" media="screen"> | |
10 | -body { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; } | |
11 | -table { font-size: 100%; } | |
12 | -pre { | |
13 | - white-space: pre-wrap; | |
14 | - word-wrap: break-word; | |
15 | -} | |
16 | - | |
17 | -/* -- heading ---------------------------------------------------------------------- */ | |
18 | -h1 { | |
19 | - font-size: 16pt; | |
20 | - color: gray; | |
21 | -} | |
22 | -.heading { | |
23 | - float:left; | |
24 | - width:30%; | |
25 | - margin-top: 0ex; | |
26 | - margin-bottom: 1ex; | |
27 | -} | |
28 | - | |
29 | -.heading .attribute { | |
30 | - margin-top: 1ex; | |
31 | - margin-bottom: 0; | |
32 | -} | |
33 | - | |
34 | -.heading .description { | |
35 | - margin-top: 4ex; | |
36 | - margin-bottom: 6ex; | |
37 | -} | |
38 | - | |
39 | -/* -- css div popup ------------------------------------------------------------------------ */ | |
40 | -a.popup_link { | |
41 | -} | |
42 | - | |
43 | -a.popup_link:hover { | |
44 | - color: red; | |
45 | -} | |
46 | -.img{ | |
47 | - height: 100%; | |
48 | - border-collapse: collapse; | |
49 | - border: 2px solid #777; | |
50 | -} | |
51 | - | |
52 | -.screenshots { | |
53 | - z-index: 100; | |
54 | - position:fixed; | |
55 | - height: 80%; | |
56 | - left: 50%; | |
57 | - top: 50%; | |
58 | - transform: translate(-50%,-50%); | |
59 | - display: none; | |
60 | -} | |
61 | - | |
62 | -.imgyuan{ | |
63 | - height: 20px; | |
64 | - border-radius: 12px; | |
65 | - background-color: red; | |
66 | - padding-left: 13px; | |
67 | - margin: 0 auto; | |
68 | - position: relative; | |
69 | - top: -40px; | |
70 | - background-color: rgba(1, 150, 0, 0.3); | |
71 | -} | |
72 | -.imgyuan font{ | |
73 | - border:1px solid white; | |
74 | - width:11px; | |
75 | - height:11px; | |
76 | - border-radius:50%; | |
77 | - margin-right: 9px; | |
78 | - margin-top: 4px; | |
79 | - display: block; | |
80 | - float: left; | |
81 | - background-color: white; | |
82 | -} | |
83 | -.close_shots { | |
84 | - background-image: url(data:image/png;base64,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/GMzLdsAAD+3aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzA2NyA3OS4xNTc3NDcsIDIwMTUvMDMvMzAtMjM6NDA6NDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgICAgICAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgICAgICAgICB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjk4NDVkYzlhLTM2NTEtMTFlOC1hMDRjLWMzZmRjNzFmNjFkZDwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDo3YzQ4OTMyZS0wM2FjLTIxNDctYTJiZi1iNmViOWU4ZDY2Y2Q8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmQ0ZjMzNDFjLTRkYjctZjc0YS1iZTAxLWYxMGEwMzNhNjg4ZDwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxOC0wNC0wMlQxNjo0MToxMCswODowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIEVsZW1lbnRzIDE0LjAgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y29udmVydGVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmZyb20gaW1hZ2UvanBlZyB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5kZXJpdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmNvbnZlcnRlZCBmcm9tIGltYWdlL2pwZWcgdG8gaW1hZ2UvcG5nPC9zdEV2dDpwYXJhbWV0ZXJzPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3YzQ4OTMyZS0wM2FjLTIxNDctYTJiZi1iNmViOWU4ZDY2Y2Q8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTgtMDQtMDJUMTY6NDE6MTArMDg6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBFbGVtZW50cyAxNC4wIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOmQ0ZjMzNDFjLTRkYjctZjc0YS1iZTAxLWYxMGEwMzNhNjg4ZDwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3N0UmVmOmRvY3VtZW50SUQ+CiAgICAgICAgICAgIDxzdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3N0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPnNSR0IgSUVDNjE5NjYtMi4xPC9waG90b3Nob3A6SUNDUHJvZmlsZT4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTgtMDQtMDJUMTY6MjM6NTUrMDg6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxOC0wNC0wMlQxNjo0MToxMCswODowMDwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMTgtMDQtMDJUMTY6NDE6MTArMDg6MDA8L3htcDpNZXRhZGF0YURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+QWRvYmUgUGhvdG9zaG9wIEVsZW1lbnRzIDE0LjAgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx0aWZmOkltYWdlV2lkdGg+MjU0PC90aWZmOkltYWdlV2lkdGg+CiAgICAgICAgIDx0aWZmOkltYWdlTGVuZ3RoPjI1NDwvdGlmZjpJbWFnZUxlbmd0aD4KICAgICAgICAgPHRpZmY6Qml0c1BlclNhbXBsZT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGk+ODwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjg8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT44PC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC90aWZmOkJpdHNQZXJTYW1wbGU+CiAgICAgICAgIDx0aWZmOlBob3RvbWV0cmljSW50ZXJwcmV0YXRpb24+MjwvdGlmZjpQaG90b21ldHJpY0ludGVycHJldGF0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpTYW1wbGVzUGVyUGl4ZWw+MzwvdGlmZjpTYW1wbGVzUGVyUGl4ZWw+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpFeGlmVmVyc2lvbj4wMjIxPC9leGlmOkV4aWZWZXJzaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjE1MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4xNTA8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg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); | |
85 | - background-size: 22px 22px; | |
86 | - -moz-background-size: 22px 22px; | |
87 | - background-repeat: no-repeat; | |
88 | - position: absolute; | |
89 | - top: 5px; | |
90 | - right: 5px; | |
91 | - height: 22px; | |
92 | - z-index: 99; | |
93 | - width: 22px; | |
94 | -} | |
95 | -.popup_window { | |
96 | - display: none; | |
97 | - position: relative; | |
98 | - left: 0px; | |
99 | - top: 0px; | |
100 | - padding: 10px; | |
101 | - background-color: #E6E6D6; | |
102 | - font-family: "Lucida Console", "Courier New", Courier, monospace; | |
103 | - text-align: left; | |
104 | - font-size: 8pt; | |
105 | -} | |
106 | - | |
107 | -} | |
108 | -/* -- report ------------------------------------------------------------------------ */ | |
109 | -#show_detail_line { | |
110 | - float:left; | |
111 | - width:100%; | |
112 | - margin-top: 3ex; | |
113 | - margin-bottom: 1ex; | |
114 | -} | |
115 | - | |
116 | -#result_table { | |
117 | - margin: 1em 0; | |
118 | - width: 100%; | |
119 | - overflow: hidden; | |
120 | - background: #FFF; | |
121 | - color: #024457; | |
122 | - border-radius: 10px; | |
123 | - border: 1px solid #167F92; | |
124 | -} | |
125 | -#result_table th { | |
126 | - border: 1px solid #FFFFFF; | |
127 | - background-color: #167F92; | |
128 | - color: #FFF; | |
129 | - padding: 0.5em; | |
130 | - &:first-child { | |
131 | - display: table-cell; | |
132 | - text-align: center; | |
133 | - } | |
134 | - &:nth-child(2) { | |
135 | - display: table-cell; | |
136 | - span {display:none;} | |
137 | - &:after {content:attr(data-th);} | |
138 | - } | |
139 | - @media (min-width: 480px) { | |
140 | - &:nth-child(2) { | |
141 | - span {display: block;} | |
142 | - &:after {display: none;} | |
143 | - } | |
144 | - } | |
145 | - } | |
146 | -#result_table td { | |
147 | - word-wrap: break-word; | |
148 | - max-width: 7em; | |
149 | - padding: 0.3em; | |
150 | - &:first-child { | |
151 | - display: table-cell; | |
152 | - text-align: center; | |
153 | - } | |
154 | - @media (min-width: 400px) { | |
155 | - border: 1px solid #D9E4E6; | |
156 | - } | |
157 | - } | |
158 | - | |
159 | -#result_table th, td { | |
160 | - margin: .5em 1em; | |
161 | - @media (min-width: 400px) { | |
162 | - display: table-cell; | |
163 | - padding: 1em; | |
164 | - } | |
165 | - } | |
166 | - | |
167 | -#total_row { font-weight: bold; } | |
168 | -.passClass { background-color: #6c6; !important ;} | |
169 | -.failClass { background-color: #c60; !important ;} | |
170 | -.errorClass { background-color: #c00; !important ; } | |
171 | -.passCase { color: #6c6; } | |
172 | -.failCase { color: #c60; font-weight: bold; } | |
173 | -.errorCase { color: #c00; font-weight: bold; } | |
174 | -.skipCase { color:#908e8e; font-weight: bold; } | |
175 | -tr[id^=pt] td { background-color: rgba(73,204,144,.3) !important ; } | |
176 | -tr[id^=ft] td { background-color: rgba(252,161,48,.3) !important; } | |
177 | -tr[id^=et] td { background-color: rgba(249,62,62,.3) !important ; } | |
178 | -tr[id^=st] td { background-color: #6f6f6fa1 !important ; } | |
179 | -.hiddenRow { display: none; } | |
180 | -.testcase { margin-left: 2em; } | |
181 | - | |
182 | -/* -- ending ---------------------------------------------------------------------- */ | |
183 | -#ending { | |
184 | -} | |
185 | - | |
186 | -.detail_button { | |
187 | - width: 130px; | |
188 | - text-decoration: none; | |
189 | - line-height: 38px; | |
190 | - text-align: center; | |
191 | - font-weight: bold; | |
192 | - color: #ffff; | |
193 | - border-radius: 6px; | |
194 | - padding: 5px 10px 5px 10px; | |
195 | - position: relative; | |
196 | - overflow: hidden; | |
197 | -} | |
198 | -.detail_button.abstract{background-color: #4dbee8;} | |
199 | -.detail_button.passed{ background-color: #66cc66;} | |
200 | -.detail_button.failed{ background-color: #cc6600;} | |
201 | -.detail_button.errored{ background-color: #f54f4f;} | |
202 | -.detail_button.skiped{ background-color: gray;} | |
203 | -.detail_button.all{ background-color: blue;} | |
204 | -.piechart{ | |
205 | - width: 200px; | |
206 | - float: left; | |
207 | - display: inline; | |
208 | -} | |
209 | - | |
210 | - | |
211 | -</style> | |
212 | - | |
213 | -</head> | |
214 | -<body> | |
215 | -<script language="javascript" type="text/javascript"> | |
216 | -output_list = Array(); | |
217 | - | |
218 | -/* level - 0:Summary; 1:Passed; 2:Failed; 3:Errored; 4:Skiped; 5:All */ | |
219 | -function showCase(level,channel) { | |
220 | - trs = document.getElementsByTagName("tr"); | |
221 | - for (var i = 0; i < trs.length; i++) { | |
222 | - tr = trs[i]; | |
223 | - id = tr.id; | |
224 | - if (["ft","pt","et","st"].indexOf(id.substr(0,2))!=-1){ | |
225 | - if ( level ==0 && id.substr(2,1)==channel ) { | |
226 | - tr.className = 'hiddenRow'; | |
227 | - } | |
228 | - } | |
229 | - | |
230 | - if (id.substr(0,3) == 'pt'+channel) { | |
231 | - if ( level==1){ | |
232 | - tr.className = ''; | |
233 | - } | |
234 | - else if (level>4 && id.substr(2,1)==channel ){ | |
235 | - tr.className = ''; | |
236 | - } | |
237 | - else { | |
238 | - tr.className = 'hiddenRow'; | |
239 | - } | |
240 | - } | |
241 | - if (id.substr(0,3) == 'ft'+channel) { | |
242 | - if (level ==2) { | |
243 | - tr.className = ''; | |
244 | - } | |
245 | - else if (level>4 && id.substr(2,1)==channel ){ | |
246 | - tr.className = ''; | |
247 | - } | |
248 | - else { | |
249 | - tr.className = 'hiddenRow'; | |
250 | - } | |
251 | - } | |
252 | - if (id.substr(0,3) == 'et'+channel) { | |
253 | - if (level ==3) { | |
254 | - tr.className = ''; | |
255 | - } | |
256 | - else if (level>4 && id.substr(2,1)==channel ){ | |
257 | - tr.className = ''; | |
258 | - } | |
259 | - else { | |
260 | - tr.className = 'hiddenRow'; | |
261 | - } | |
262 | - } | |
263 | - if (id.substr(0,3) == 'st'+channel) { | |
264 | - if (level ==4) { | |
265 | - tr.className = ''; | |
266 | - } | |
267 | - else if (level>4 && id.substr(2,1)==channel ){ | |
268 | - tr.className = ''; | |
269 | - } | |
270 | - else { | |
271 | - tr.className = 'hiddenRow'; | |
272 | - } | |
273 | - } | |
274 | - | |
275 | - } | |
276 | -} | |
277 | - | |
278 | - | |
279 | -function showClassDetail(cid, count) { | |
280 | - var id_list = Array(count); | |
281 | - var toHide = 1; | |
282 | - for (var i = 0; i < count; i++) { | |
283 | - tid0 = 't' + cid.substr(1) + '.' + (i+1); | |
284 | - tid = 'f' + tid0; | |
285 | - tr = document.getElementById(tid); | |
286 | - if (!tr) { | |
287 | - tid = 'p' + tid0; | |
288 | - tr = document.getElementById(tid); | |
289 | - } | |
290 | - if (!tr) { | |
291 | - tid = 'e' + tid0; | |
292 | - tr = document.getElementById(tid); | |
293 | - } | |
294 | - if (!tr) { | |
295 | - tid = 's' + tid0; | |
296 | - tr = document.getElementById(tid); | |
297 | - } | |
298 | - id_list[i] = tid; | |
299 | - if (tr.className) { | |
300 | - toHide = 0; | |
301 | - } | |
302 | - } | |
303 | - for (var i = 0; i < count; i++) { | |
304 | - tid = id_list[i]; | |
305 | - if (toHide) { | |
306 | - document.getElementById(tid).className = 'hiddenRow'; | |
307 | - } | |
308 | - else { | |
309 | - document.getElementById(tid).className = ''; | |
310 | - } | |
311 | - } | |
312 | -} | |
313 | - | |
314 | - | |
315 | -function showTestDetail(div_id){ | |
316 | - var details_div = document.getElementById(div_id) | |
317 | - var displayState = details_div.style.display | |
318 | - // alert(displayState) | |
319 | - if (displayState != 'block' ) { | |
320 | - displayState = 'block' | |
321 | - details_div.style.display = 'block' | |
322 | - } | |
323 | - else { | |
324 | - details_div.style.display = 'none' | |
325 | - } | |
326 | -} | |
327 | - | |
328 | - | |
329 | -function html_escape(s) { | |
330 | - s = s.replace(/&/g,'&'); | |
331 | - s = s.replace(/</g,'<'); | |
332 | - s = s.replace(/>/g,'>'); | |
333 | - return s; | |
334 | -} | |
335 | - | |
336 | -function drawCircle(circle,pass, fail, error){ | |
337 | - var color = ["#6c6","#c60","#c00"]; | |
338 | - var data = [pass,fail,error]; | |
339 | - var text_arr = ["Pass", "Fail", "Error"]; | |
340 | - | |
341 | - var canvas = document.getElementById(circle); | |
342 | - var ctx = canvas.getContext("2d"); | |
343 | - var startPoint=0; | |
344 | - var width = 20, height = 10; | |
345 | - var posX = 112 * 2 + 20, posY = 30; | |
346 | - var textX = posX + width + 5, textY = posY + 10; | |
347 | - for(var i=0;i<data.length;i++){ | |
348 | - ctx.fillStyle = color[i]; | |
349 | - ctx.beginPath(); | |
350 | - ctx.moveTo(112,84); | |
351 | - ctx.arc(112,84,84,startPoint,startPoint+Math.PI*2*(data[i]/(data[0]+data[1]+data[2])),false); | |
352 | - ctx.fill(); | |
353 | - startPoint += Math.PI*2*(data[i]/(data[0]+data[1]+data[2])); | |
354 | - ctx.fillStyle = color[i]; | |
355 | - ctx.fillRect(posX, posY + 20 * i, width, height); | |
356 | - ctx.moveTo(posX, posY + 20 * i); | |
357 | - ctx.font = 'bold 14px'; | |
358 | - ctx.fillStyle = color[i]; | |
359 | - var percent = text_arr[i] + ":"+data[i]; | |
360 | - ctx.fillText(percent, textX, textY + 20 * i); | |
361 | - | |
362 | - } | |
363 | -} | |
364 | - | |
365 | - | |
366 | -function show_img(obj) { | |
367 | - var obj1 = obj.nextElementSibling | |
368 | - obj1.style.display='block' | |
369 | - var index = 0;//每张图片的下标, | |
370 | - var len = obj1.getElementsByTagName('img').length; | |
371 | - var imgyuan = obj1.getElementsByClassName('imgyuan')[0] | |
372 | - //var start=setInterval(autoPlay,500); | |
373 | - obj1.onmouseover=function(){//当鼠标光标停在图片上,则停止轮播 | |
374 | - clearInterval(start); | |
375 | - } | |
376 | - obj1.onmouseout=function(){//当鼠标光标停在图片上,则开始轮播 | |
377 | - start=setInterval(autoPlay,1000); | |
378 | - } | |
379 | - for (var i = 0; i < len; i++) { | |
380 | - var font = document.createElement('font') | |
381 | - imgyuan.appendChild(font) | |
382 | - } | |
383 | - var lis = obj1.getElementsByTagName('font');//得到所有圆圈 | |
384 | - changeImg(0) | |
385 | - var funny = function (i) { | |
386 | - lis[i].onmouseover = function () { | |
387 | - index=i | |
388 | - changeImg(i) | |
389 | - } | |
390 | - } | |
391 | - for (var i = 0; i < lis.length; i++) { | |
392 | - funny(i); | |
393 | - } | |
394 | - | |
395 | - function autoPlay(){ | |
396 | - if(index>len-1){ | |
397 | - index=0; | |
398 | - clearInterval(start); //运行一轮后停止 | |
399 | - } | |
400 | - changeImg(index++); | |
401 | - } | |
402 | - imgyuan.style.width= 25*len +"px"; | |
403 | - //对应圆圈和图片同步 | |
404 | - function changeImg(index) { | |
405 | - var list = obj1.getElementsByTagName('img'); | |
406 | - var list1 = obj1.getElementsByTagName('font'); | |
407 | - for (i = 0; i < list.length; i++) { | |
408 | - list[i].style.display = 'none'; | |
409 | - list1[i].style.backgroundColor = 'white'; | |
410 | - } | |
411 | - list[index].style.display = 'block'; | |
412 | - list1[index].style.backgroundColor = 'blue'; | |
413 | - } | |
414 | - | |
415 | -} | |
416 | -function hide_img(obj){ | |
417 | - obj.parentElement.style.display = "none"; | |
418 | - obj.parentElement.getElementsByClassName('imgyuan')[0].innerHTML = ""; | |
419 | -} | |
420 | -</script> | |
421 | -<div class='heading'> | |
422 | -<h1>重构项目接口测试报告</h1> | |
423 | -<p class='attribute'><strong>开始时间:</strong> 2021-07-28 10:56:57</p> | |
424 | -<p class='attribute'><strong>耗时:</strong> 0:00:13.421400</p> | |
425 | -<p class='attribute'><strong>状态:</strong> <span class="tj passCase">Pass</span>:20 <span class="tj failCase">Failure</span>:1 <span class="tj skipCase">Skip</span>:1 <span class="tj">通过率</span>:95.2%</p> | |
426 | - | |
427 | -<p class='description'>用例简要执行情况如下:(注:报告详细信息需要下载report.html并用浏览器打开)</p> | |
428 | -</div> | |
429 | - | |
430 | - | |
431 | -<div class="piechart"> | |
432 | - <div> | |
433 | - <canvas id="circle1" width="350" height="168" </canvas> | |
434 | - </div> | |
435 | -</div> | |
436 | - | |
437 | -<div id='show_detail_line' style=" float: left; width: 100%;"> | |
438 | -<a class="abstract detail_button" href='javascript:showCase(0,1)'>概要[95.24%]</a> | |
439 | -<a class="passed detail_button" href='javascript:showCase(1,1)'>通过[20]</a> | |
440 | -<a class="failed detail_button" href='javascript:showCase(2,1)'>失败[1]</a> | |
441 | -<a class="errored detail_button" href='javascript:showCase(3,1)'>错误[0]</a> | |
442 | -<a class="skiped detail_button" href='javascript:showCase(4,1)'>跳过[1]</a> | |
443 | -<a class="all detail_button" href='javascript:showCase(5,1)'>所有[21]</a> | |
444 | -</div> | |
445 | - | |
446 | -<table id='result_table'> | |
447 | -<colgroup> | |
448 | -<col align='left' /> | |
449 | -<col align='right' /> | |
450 | -<col align='right' /> | |
451 | -<col align='right' /> | |
452 | -<col align='right' /> | |
453 | -<col align='right' /> | |
454 | -<col align='right' /> | |
455 | -</colgroup> | |
456 | -<tr id='header_row'> | |
457 | - <th>测试组/测试用例</th> | |
458 | - <th>总数</th> | |
459 | - <th>通过</th> | |
460 | - <th>失败</th> | |
461 | - <th>错误</th> | |
462 | - <th>视图</th> | |
463 | - <th>错误截图</th> | |
464 | -</tr> | |
465 | - | |
466 | -<tr class='passClass'> | |
467 | - <td>doAdd.test_doAddA.test_doAdd: 新增登记接口</td> | |
468 | - <td>1</td> | |
469 | - <td>1</td> | |
470 | - <td>0</td> | |
471 | - <td>0</td> | |
472 | - <td><a href="javascript:showClassDetail('c1.1',1)">详情</a></td> | |
473 | - <td> </td> | |
474 | -</tr> | |
475 | - | |
476 | -<tr id='pt1.1.1' class='hiddenRow'> | |
477 | - <td ><div class='testcase'>test_doAdd_01: 成功新增一个商品为大白菜的报备单,重量为111</div></td> | |
478 | - <td colspan='5' align='center'> | |
479 | - | |
480 | - <!--css div popup start--> | |
481 | - <span class='status passCase'> | |
482 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.1.1')" > | |
483 | - 通过</a></span> | |
484 | - | |
485 | - <div id='div_pt1.1.1' class="popup_window"> | |
486 | - <div style='text-align: right; color:red;cursor:pointer'> | |
487 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.1.1').style.display = 'none' " > | |
488 | - [x]</a> | |
489 | - </div> | |
490 | - <pre> | |
491 | - | |
492 | -pt1.1.1: http://test.trace.diligrp.com:8393/newRegisterBill/doAdd.action | |
493 | -{"registerHeadWeight": "0", "registerHeadRemainWeight": "0", "imageCertList": [], "measureType": 20, "registType": 10, "userId": 516, "arrivalTallynos": [], "arrivalDatetime": "", "truckType": 10, "weight": "111", "weightUnit": 1, "productName": "\u5927\u767d\u83dc", "productId": 2190, "originName": "", "originId": "", "unitPrice": "", "truckTareWeight": "", "remark": "", "specName": "", "brandName": "", "plate": "\u5dddA123456"} | |
494 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
495 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
496 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
497 | - | |
498 | - | |
499 | - </pre> | |
500 | - </div> | |
501 | - <!--css div popup end--> | |
502 | - | |
503 | - </td> | |
504 | - <td>无截图</td> | |
505 | -</tr> | |
506 | - | |
507 | -<tr class='passClass'> | |
508 | - <td>doAdd.test_doAdd.test_doAdd: 新增登记接口</td> | |
509 | - <td>4</td> | |
510 | - <td>4</td> | |
511 | - <td>0</td> | |
512 | - <td>0</td> | |
513 | - <td><a href="javascript:showClassDetail('c1.2',4)">详情</a></td> | |
514 | - <td> </td> | |
515 | -</tr> | |
516 | - | |
517 | -<tr id='pt1.2.1' class='hiddenRow'> | |
518 | - <td ><div class='testcase'>test_doAdd_01: 成功新增一个商品为大白菜的报备单,重量为111</div></td> | |
519 | - <td colspan='5' align='center'> | |
520 | - | |
521 | - <!--css div popup start--> | |
522 | - <span class='status passCase'> | |
523 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.1')" > | |
524 | - 通过</a></span> | |
525 | - | |
526 | - <div id='div_pt1.2.1' class="popup_window"> | |
527 | - <div style='text-align: right; color:red;cursor:pointer'> | |
528 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.1').style.display = 'none' " > | |
529 | - [x]</a> | |
530 | - </div> | |
531 | - <pre> | |
532 | - | |
533 | -pt1.2.1: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
534 | - | |
535 | - | |
536 | - </pre> | |
537 | - </div> | |
538 | - <!--css div popup end--> | |
539 | - | |
540 | - </td> | |
541 | - <td>无截图</td> | |
542 | -</tr> | |
543 | - | |
544 | -<tr id='pt1.2.2' class='hiddenRow'> | |
545 | - <td ><div class='testcase'>test_doAdd_02: 成功新增一个商品为鲜花生的报备单,重量为111</div></td> | |
546 | - <td colspan='5' align='center'> | |
547 | - | |
548 | - <!--css div popup start--> | |
549 | - <span class='status passCase'> | |
550 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.2')" > | |
551 | - 通过</a></span> | |
552 | - | |
553 | - <div id='div_pt1.2.2' class="popup_window"> | |
554 | - <div style='text-align: right; color:red;cursor:pointer'> | |
555 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.2').style.display = 'none' " > | |
556 | - [x]</a> | |
557 | - </div> | |
558 | - <pre> | |
559 | - | |
560 | -pt1.2.2: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
561 | - | |
562 | - | |
563 | - </pre> | |
564 | - </div> | |
565 | - <!--css div popup end--> | |
566 | - | |
567 | - </td> | |
568 | - <td>无截图</td> | |
569 | -</tr> | |
570 | - | |
571 | -<tr id='pt1.2.3' class='hiddenRow'> | |
572 | - <td ><div class='testcase'>test_doAdd_03: 用错误的用户来新增,无法新增</div></td> | |
573 | - <td colspan='5' align='center'> | |
574 | - | |
575 | - <!--css div popup start--> | |
576 | - <span class='status passCase'> | |
577 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.3')" > | |
578 | - 通过</a></span> | |
579 | - | |
580 | - <div id='div_pt1.2.3' class="popup_window"> | |
581 | - <div style='text-align: right; color:red;cursor:pointer'> | |
582 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.3').style.display = 'none' " > | |
583 | - [x]</a> | |
584 | - </div> | |
585 | - <pre> | |
586 | - | |
587 | -pt1.2.3: {'code': '5000', 'message': '查询客户信息失败', 'result': '查询客户信息失败', 'success': False} | |
588 | - | |
589 | - | |
590 | - </pre> | |
591 | - </div> | |
592 | - <!--css div popup end--> | |
593 | - | |
594 | - </td> | |
595 | - <td>无截图</td> | |
596 | -</tr> | |
597 | - | |
598 | -<tr id='pt1.2.4' class='hiddenRow'> | |
599 | - <td ><div class='testcase'>test_doAdd_04: 成功新增一个商品为大白菜的报备单,重量为666</div></td> | |
600 | - <td colspan='5' align='center'> | |
601 | - | |
602 | - <!--css div popup start--> | |
603 | - <span class='status passCase'> | |
604 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.4')" > | |
605 | - 通过</a></span> | |
606 | - | |
607 | - <div id='div_pt1.2.4' class="popup_window"> | |
608 | - <div style='text-align: right; color:red;cursor:pointer'> | |
609 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.4').style.display = 'none' " > | |
610 | - [x]</a> | |
611 | - </div> | |
612 | - <pre> | |
613 | - | |
614 | -pt1.2.4: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
615 | - | |
616 | - | |
617 | - </pre> | |
618 | - </div> | |
619 | - <!--css div popup end--> | |
620 | - | |
621 | - </td> | |
622 | - <td>无截图</td> | |
623 | -</tr> | |
624 | - | |
625 | -<tr class='passClass'> | |
626 | - <td>doAudit.test_doAudit.test_doAudit: 登记单审核接口</td> | |
627 | - <td>4</td> | |
628 | - <td>4</td> | |
629 | - <td>0</td> | |
630 | - <td>0</td> | |
631 | - <td><a href="javascript:showClassDetail('c1.3',4)">详情</a></td> | |
632 | - <td> </td> | |
633 | -</tr> | |
634 | - | |
635 | -<tr id='pt1.3.1' class='hiddenRow'> | |
636 | - <td ><div class='testcase'>test_doAudit_01: 审核通过</div></td> | |
637 | - <td colspan='5' align='center'> | |
638 | - | |
639 | - <!--css div popup start--> | |
640 | - <span class='status passCase'> | |
641 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.1')" > | |
642 | - 通过</a></span> | |
643 | - | |
644 | - <div id='div_pt1.3.1' class="popup_window"> | |
645 | - <div style='text-align: right; color:red;cursor:pointer'> | |
646 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.1').style.display = 'none' " > | |
647 | - [x]</a> | |
648 | - </div> | |
649 | - <pre> | |
650 | - | |
651 | -pt1.3.1: db id 7119 | |
652 | -数据处理后的url http://test.trace.diligrp.com:8393/newRegisterBill/doAudit.action?id=7119&verifyStatus=20 | |
653 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
654 | - | |
655 | - | |
656 | - </pre> | |
657 | - </div> | |
658 | - <!--css div popup end--> | |
659 | - | |
660 | - </td> | |
661 | - <td>无截图</td> | |
662 | -</tr> | |
663 | - | |
664 | -<tr id='pt1.3.2' class='hiddenRow'> | |
665 | - <td ><div class='testcase'>test_doAudit_02: 审核不通过</div></td> | |
666 | - <td colspan='5' align='center'> | |
667 | - | |
668 | - <!--css div popup start--> | |
669 | - <span class='status passCase'> | |
670 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.2')" > | |
671 | - 通过</a></span> | |
672 | - | |
673 | - <div id='div_pt1.3.2' class="popup_window"> | |
674 | - <div style='text-align: right; color:red;cursor:pointer'> | |
675 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.2').style.display = 'none' " > | |
676 | - [x]</a> | |
677 | - </div> | |
678 | - <pre> | |
679 | - | |
680 | -pt1.3.2: db id 7120 | |
681 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
682 | - | |
683 | - | |
684 | - </pre> | |
685 | - </div> | |
686 | - <!--css div popup end--> | |
687 | - | |
688 | - </td> | |
689 | - <td>无截图</td> | |
690 | -</tr> | |
691 | - | |
692 | -<tr id='pt1.3.3' class='hiddenRow'> | |
693 | - <td ><div class='testcase'>test_doAudit_03: 审核不通过</div></td> | |
694 | - <td colspan='5' align='center'> | |
695 | - | |
696 | - <!--css div popup start--> | |
697 | - <span class='status passCase'> | |
698 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.3')" > | |
699 | - 通过</a></span> | |
700 | - | |
701 | - <div id='div_pt1.3.3' class="popup_window"> | |
702 | - <div style='text-align: right; color:red;cursor:pointer'> | |
703 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.3').style.display = 'none' " > | |
704 | - [x]</a> | |
705 | - </div> | |
706 | - <pre> | |
707 | - | |
708 | -pt1.3.3: db id 7121 | |
709 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
710 | - | |
711 | - | |
712 | - </pre> | |
713 | - </div> | |
714 | - <!--css div popup end--> | |
715 | - | |
716 | - </td> | |
717 | - <td>无截图</td> | |
718 | -</tr> | |
719 | - | |
720 | -<tr id='pt1.3.4' class='hiddenRow'> | |
721 | - <td ><div class='testcase'>test_doAudit_04: 审核一个已经完成审核的登记单</div></td> | |
722 | - <td colspan='5' align='center'> | |
723 | - | |
724 | - <!--css div popup start--> | |
725 | - <span class='status passCase'> | |
726 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.4')" > | |
727 | - 通过</a></span> | |
728 | - | |
729 | - <div id='div_pt1.3.4' class="popup_window"> | |
730 | - <div style='text-align: right; color:red;cursor:pointer'> | |
731 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.4').style.display = 'none' " > | |
732 | - [x]</a> | |
733 | - </div> | |
734 | - <pre> | |
735 | - | |
736 | -pt1.3.4: db id 7122 | |
737 | -{'code': '5000', 'message': '操作失败,数据状态已改变', 'result': '操作失败,数据状态已改变', 'success': False} | |
738 | - | |
739 | - | |
740 | - </pre> | |
741 | - </div> | |
742 | - <!--css div popup end--> | |
743 | - | |
744 | - </td> | |
745 | - <td>无截图</td> | |
746 | -</tr> | |
747 | - | |
748 | -<tr class='passClass'> | |
749 | - <td>doUndo.test_doUndo.test_doUndo: 登记单撤销接口</td> | |
750 | - <td>1</td> | |
751 | - <td>1</td> | |
752 | - <td>0</td> | |
753 | - <td>0</td> | |
754 | - <td><a href="javascript:showClassDetail('c1.4',1)">详情</a></td> | |
755 | - <td> </td> | |
756 | -</tr> | |
757 | - | |
758 | -<tr id='pt1.4.1' class='hiddenRow'> | |
759 | - <td ><div class='testcase'>test_doUndo_01: 成功删除新增的一个报备单</div></td> | |
760 | - <td colspan='5' align='center'> | |
761 | - | |
762 | - <!--css div popup start--> | |
763 | - <span class='status passCase'> | |
764 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.4.1')" > | |
765 | - 通过</a></span> | |
766 | - | |
767 | - <div id='div_pt1.4.1' class="popup_window"> | |
768 | - <div style='text-align: right; color:red;cursor:pointer'> | |
769 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.4.1').style.display = 'none' " > | |
770 | - [x]</a> | |
771 | - </div> | |
772 | - <pre> | |
773 | - | |
774 | -pt1.4.1: {'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
775 | - | |
776 | - | |
777 | - </pre> | |
778 | - </div> | |
779 | - <!--css div popup end--> | |
780 | - | |
781 | - </td> | |
782 | - <td>无截图</td> | |
783 | -</tr> | |
784 | - | |
785 | -<tr class='passClass'> | |
786 | - <td>fieldConfig.test_fieldConfig.test_fieldConfig: Unittest用例结构的简单的认识</td> | |
787 | - <td>3</td> | |
788 | - <td>3</td> | |
789 | - <td>0</td> | |
790 | - <td>0</td> | |
791 | - <td><a href="javascript:showClassDetail('c1.5',3)">详情</a></td> | |
792 | - <td> </td> | |
793 | -</tr> | |
794 | - | |
795 | -<tr id='pt1.5.1' class='hiddenRow'> | |
796 | - <td ><div class='testcase'>test_fieldConfig_01: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据</div></td> | |
797 | - <td colspan='5' align='center'> | |
798 | - | |
799 | - <!--css div popup start--> | |
800 | - <span class='status passCase'> | |
801 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.1')" > | |
802 | - 通过</a></span> | |
803 | - | |
804 | - <div id='div_pt1.5.1' class="popup_window"> | |
805 | - <div style='text-align: right; color:red;cursor:pointer'> | |
806 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.1').style.display = 'none' " > | |
807 | - [x]</a> | |
808 | - </div> | |
809 | - <pre> | |
810 | - | |
811 | -pt1.5.1: setUp | |
812 | -test_01_fieldConfig | |
813 | -tearDown | |
814 | - | |
815 | - | |
816 | - </pre> | |
817 | - </div> | |
818 | - <!--css div popup end--> | |
819 | - | |
820 | - </td> | |
821 | - <td>无截图</td> | |
822 | -</tr> | |
823 | - | |
824 | -<tr id='pt1.5.2' class='hiddenRow'> | |
825 | - <td ><div class='testcase'>test_fieldConfig_02: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据11111111111111111111111111111 | |
826 | - 1234567890test1234567890test1234567890test1234567890test</div></td> | |
827 | - <td colspan='5' align='center'> | |
828 | - | |
829 | - <!--css div popup start--> | |
830 | - <span class='status passCase'> | |
831 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.2')" > | |
832 | - 通过</a></span> | |
833 | - | |
834 | - <div id='div_pt1.5.2' class="popup_window"> | |
835 | - <div style='text-align: right; color:red;cursor:pointer'> | |
836 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.2').style.display = 'none' " > | |
837 | - [x]</a> | |
838 | - </div> | |
839 | - <pre> | |
840 | - | |
841 | -pt1.5.2: setUp | |
842 | -test_02_fieldConfig | |
843 | -tearDown | |
844 | - | |
845 | - | |
846 | - </pre> | |
847 | - </div> | |
848 | - <!--css div popup end--> | |
849 | - | |
850 | - </td> | |
851 | - <td>无截图</td> | |
852 | -</tr> | |
853 | - | |
854 | -<tr id='pt1.5.3' class='hiddenRow'> | |
855 | - <td ><div class='testcase'>test_fieldConfig_03: demo</div></td> | |
856 | - <td colspan='5' align='center'> | |
857 | - | |
858 | - <!--css div popup start--> | |
859 | - <span class='status passCase'> | |
860 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.3')" > | |
861 | - 通过</a></span> | |
862 | - | |
863 | - <div id='div_pt1.5.3' class="popup_window"> | |
864 | - <div style='text-align: right; color:red;cursor:pointer'> | |
865 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.3').style.display = 'none' " > | |
866 | - [x]</a> | |
867 | - </div> | |
868 | - <pre> | |
869 | - | |
870 | -pt1.5.3: setUp | |
871 | -test_03_fieldConfig | |
872 | -tearDown | |
873 | - | |
874 | - | |
875 | - </pre> | |
876 | - </div> | |
877 | - <!--css div popup end--> | |
878 | - | |
879 | - </td> | |
880 | - <td>无截图</td> | |
881 | -</tr> | |
882 | - | |
883 | -<tr id='st1.5.4' class='none'> | |
884 | - <td ><div class='testcase'>test_fieldConfig_04</div></td> | |
885 | - <td colspan='5' align='center'> | |
886 | - | |
887 | - <!--css div popup start--> | |
888 | - <span class='status passCase'> | |
889 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_st1.5.4')" > | |
890 | - 跳过</a></span> | |
891 | - | |
892 | - <div id='div_st1.5.4' class="popup_window"> | |
893 | - <div style='text-align: right; color:red;cursor:pointer'> | |
894 | - <a onfocus='this.blur();' onclick="document.getElementById('div_st1.5.4').style.display = 'none' " > | |
895 | - [x]</a> | |
896 | - </div> | |
897 | - <pre> | |
898 | - | |
899 | -st1.5.4: 执行时强制跳过该用例 | |
900 | - | |
901 | - </pre> | |
902 | - </div> | |
903 | - <!--css div popup end--> | |
904 | - | |
905 | - </td> | |
906 | - <td>无截图</td> | |
907 | -</tr> | |
908 | - | |
909 | -<tr class='failClass'> | |
910 | - <td>login.test_login.test_login: 登录接口</td> | |
911 | - <td>4</td> | |
912 | - <td>3</td> | |
913 | - <td>1</td> | |
914 | - <td>0</td> | |
915 | - <td><a href="javascript:showClassDetail('c1.6',4)">详情</a></td> | |
916 | - <td> </td> | |
917 | -</tr> | |
918 | - | |
919 | -<tr id='pt1.6.1' class='hiddenRow'> | |
920 | - <td ><div class='testcase'>test_login_01: 账户密码都正确</div></td> | |
921 | - <td colspan='5' align='center'> | |
922 | - | |
923 | - <!--css div popup start--> | |
924 | - <span class='status passCase'> | |
925 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.6.1')" > | |
926 | - 通过</a></span> | |
927 | - | |
928 | - <div id='div_pt1.6.1' class="popup_window"> | |
929 | - <div style='text-align: right; color:red;cursor:pointer'> | |
930 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.6.1').style.display = 'none' " > | |
931 | - [x]</a> | |
932 | - </div> | |
933 | - <pre> | |
934 | - | |
935 | -pt1.6.1: {'Access-Control-Expose-Headers': 'UAP_accessToken', 'Cache-Control': 'no-store', 'Set-Cookie': 'UAP_accessToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiJXRUIiLCJuYmYiOjE2Mjc0NDEwMzAsImRhdGEiOiJ7XCJjZWxscGhvbmVcIjpcIjE2MTExMTExMTExXCIsXCJjcmVhdGVkXCI6MTYwNDkwNzk2NzAwMCxcImRlcGFydG1lbnRJZFwiOjkwLFwiZGVzY3JpcHRpb25cIjpcIjY2NlwiLFwiZW1haWxcIjpcIjY2NkBkaWxpZ3JwLmNvbVwiLFwiZmlybUNvZGVcIjpcInNnXCIsXCJmaXJtSWRcIjo4LFwiZmlybU5hbWVcIjpcIuWvv-WFieWcsOWIqeWGnOWJr-S6p-WTgeaciemZkOWFrOWPuFwiLFwiZ2VuZGVyXCI6MCxcImlkXCI6MjEwLFwibGFzdExvZ2luVGltZVwiOjE2Mjc0NDEwMzAwNzgsXCJsb2NrZWRcIjoxNjIzODMyMzQwMDAwLFwibWV0YWRhdGFcIjp7fSxcIm1vZGlmaWVkXCI6MTYyNjE2MzAwNDAwMCxcInBhc3N3b3JkXCI6XCIxODk2NUVCNzJDOTJBNTQ5RERcIixcInJlYWxOYW1lXCI6XCLlr7_lhYnmuq_mupDlk59cIixcInNlcmlhbE51bWJlclwiOlwiMDAwXCIsXCJzdGF0ZVwiOjEsXCJzeXN0ZW1UeXBlXCI6MSxcInVzZXJOYW1lXCI6XCJzZ193ZW56ZVwiLFwidXNlclR5cGVcIjoxfSIsImlzcyI6IlVBUF9BVVRIMCIsImV4cCI6MTYyNzQ0MjgzMCwiaWF0IjoxNjI3NDQxMDMwLCJqdGkiOiIwNmI1ZjU0Mi04YjVkLTRlY2ItYTM4OS1lYWMwOTk5ZGNlNTQifQ.dJ3dauCe1oXwsNe5o_dD_Ax8-Hmf4CKBv9V60R6I1jaOyg46SK8FMP7e5pnBFQq1w0yy4qJE5pXVQ1REHL_URkWs3fuGe_hTi-6HPcO8rdljvYbR6kuHX4IaNikmhgW9aUlmt02g9gGwX8HUxZ9zGotJVkd1cgQDuRkJtAX6X28; Max-Age=86400; Expires=Thu, 29-Jul-2021 02:57:10 GMT; Domain=diligrp.com; Path=/; HttpOnly, UAP_refreshToken=fc0e98f8-196a-463d-a8fb-f92322d4133b; Max-Age=86400; Expires=Thu, 29-Jul-2021 02:57:10 GMT; Domain=diligrp.com; Path=/; HttpOnly, UAP_loginPath=http%3A%2F%2Ftest.uap.diligrp.com%2Flogin%2Findex.html; Max-Age=86400; Expires=Thu, 29-Jul-2021 02:57:10 GMT; Domain=diligrp.com; Path=/; HttpOnly', 'Location': '/index/index.html', 'Content-Language': 'zh-CN', 'Content-Length': '0', 'Date': 'Wed, 28 Jul 2021 02:57:10 GMT', 'Keep-Alive': 'timeout=60', 'Connection': 'keep-alive'} | |
936 | - | |
937 | - | |
938 | - </pre> | |
939 | - </div> | |
940 | - <!--css div popup end--> | |
941 | - | |
942 | - </td> | |
943 | - <td>无截图</td> | |
944 | -</tr> | |
945 | - | |
946 | -<tr id='pt1.6.2' class='hiddenRow'> | |
947 | - <td ><div class='testcase'>test_login_02: 密码错误</div></td> | |
948 | - <td colspan='5' align='center'> | |
949 | - | |
950 | - <!--css div popup start--> | |
951 | - <span class='status passCase'> | |
952 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.6.2')" > | |
953 | - 通过</a></span> | |
954 | - | |
955 | - <div id='div_pt1.6.2' class="popup_window"> | |
956 | - <div style='text-align: right; color:red;cursor:pointer'> | |
957 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.6.2').style.display = 'none' " > | |
958 | - [x]</a> | |
959 | - </div> | |
960 | - <pre> | |
961 | - | |
962 | -pt1.6.2: <!DOCTYPE html> | |
963 | -<html lang="zh-CN"> | |
964 | - | |
965 | -<head> | |
966 | - <meta charset="UTF-8" /> | |
967 | - <title>智慧农批经营管理平台</title> | |
968 | - <meta name="renderer" content="webkit"> | |
969 | - <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
970 | - <meta name="keywords" content="uap" /> | |
971 | - <meta name="description" content="智慧农批经营管理平台" /> | |
972 | - <meta name="author" content="dili"> | |
973 | - <style> | |
974 | - /*消除google浏览器黄色框*/ | |
975 | - input:-webkit-autofill, | |
976 | - input:-webkit-autofill:hover, | |
977 | - input:-webkit-autofill:focus { | |
978 | - box-shadow:0 0 0 60px #FFF inset; | |
979 | - -webkit-text-fill-color: #666; | |
980 | - } | |
981 | - </style> | |
982 | - <!-- jquery --> | |
983 | - <link rel="shortcut icon" href="/resources/images/icon/dili-logo.png" /> | |
984 | - <script type="text/javascript" src="/resources/easyui/js/jquery-3.2.1.min.js"></script> | |
985 | - <link rel="stylesheet" type="text/css" href="/resources/css/login.css"> | |
986 | -</head> | |
987 | - | |
988 | -<body> | |
989 | -<div class="loginwrap"> | |
990 | - <div class="login"> | |
991 | - <h2 class="login-title"><img src="/resources/images/login-title.png" alt="智慧农批经营管理平台"></h2> | |
992 | - | |
993 | - <form id="loginForm" class="login-form" method="post" action="/login/login.action"> | |
994 | - <table class="userinfo"> | |
995 | - <tbody> | |
996 | - <tr> | |
997 | - <td width="40" class="login-icon login-user-icon"></td> | |
998 | - <td> | |
999 | - <input id="userName" name="userName" value="" type="text" placeholder="请输入账号" /> | |
1000 | - </td> | |
1001 | - </tr> | |
1002 | - <tr> | |
1003 | - <td width="40" class="login-icon login-password-icon"></td> | |
1004 | - <td> | |
1005 | - <input id="password" name="password" value="" type="password" placeholder="请输入密码" /> | |
1006 | - </td> | |
1007 | - </tr> | |
1008 | - <!--<tr> | |
1009 | - <td colspan="2"><label id="msg"></label></td> | |
1010 | - </tr> | |
1011 | - <tr> | |
1012 | - <td colspan="2"> | |
1013 | - <input type="button" class="submit" value="登录" onclick="doLogin()"> | |
1014 | - </td> | |
1015 | - </tr>--> | |
1016 | - </tbody> | |
1017 | - </table> | |
1018 | - <div id="msg" class="login-msg"></div> | |
1019 | - <div class=""> | |
1020 | - <input type="button" class="submit" value="登录" onclick="doLogin()"> | |
1021 | - </div> | |
1022 | - <div style="margin-top:25px; text-align: center"> | |
1023 | - <a target="_blank" href="/static/clientDownload.html">客户端下载</a> | |
1024 | - </div> | |
1025 | - </form> | |
1026 | - <div id="errMsg"></div> | |
1027 | - </div> | |
1028 | -</div> | |
1029 | - | |
1030 | -<script type="text/javascript"> | |
1031 | - function doLogin() { | |
1032 | - var username = document.getElementById("userName").value; | |
1033 | - if (null == username || "" == username) { | |
1034 | - $("#msg").html("账号不能为空"); | |
1035 | - return false; | |
1036 | - } | |
1037 | - | |
1038 | - var password = document.getElementById("password").value; | |
1039 | - if (null == password || "" == password) { | |
1040 | - $("#msg").html("密码不能为空"); | |
1041 | - return false; | |
1042 | - } | |
1043 | - if(username.length < 2 || username.length > 20){ | |
1044 | - $("#msg").html("用户名长度不能小于2位或大于20位"); | |
1045 | - return false; | |
1046 | - } | |
1047 | - if(password.length < 6 || password.length > 20){ | |
1048 | - $("#msg").html("密码长度不能小于6位或大于20位"); | |
1049 | - return false; | |
1050 | - } | |
1051 | - if(!validUserName(username)){ | |
1052 | - $("#msg").html("用户名只能包含中文、英文、数字和下划线"); | |
1053 | - return false; | |
1054 | - } | |
1055 | - | |
1056 | - document.getElementById("loginForm").submit(); | |
1057 | - } | |
1058 | - | |
1059 | - /******************************************************************************* | |
1060 | - * 绑定指定表单元素类型的回车事件 | |
1061 | - * | |
1062 | - * @param formId | |
1063 | - * 表单 | |
1064 | - * @param element | |
1065 | - * 元素类型 (input/select/radio/...) | |
1066 | - * @param subFunction | |
1067 | - * 回车后要执行的js函数 | |
1068 | - * @param eventName | |
1069 | - * 键盘事件 (keyup/keydown/keypress...) | |
1070 | - */ | |
1071 | - function bindEnter(formId, element, subFunction, eventName) { | |
1072 | - $("#" + formId + " " + element).bind(eventName, function(event) { | |
1073 | - //回车 | |
1074 | - if (event.keyCode == '13') { | |
1075 | - subFunction(); | |
1076 | - } | |
1077 | - }); | |
1078 | - } | |
1079 | - | |
1080 | - | |
1081 | - /******************************************************************************* | |
1082 | - * 表单回车事件绑定 表单光标定位 | |
1083 | - * @param formId | |
1084 | - * @param subFunction 回车要执行的函数 | |
1085 | - */ | |
1086 | - function bindFormEvent(formId, subFunction) { | |
1087 | - if (subFunction && subFunction != null) { | |
1088 | - bindEnter(formId, 'input', subFunction, 'keyup'); | |
1089 | - } | |
1090 | - } | |
1091 | - | |
1092 | - function validUserName(value) { | |
1093 | - return /^[a-zA-Z0-9\u4e00-\u9fa5_]+$/.test(value); | |
1094 | - } | |
1095 | - | |
1096 | - $(function() { | |
1097 | - $("#msg").html("用户名或密码错误"); | |
1098 | - window.setTimeout(function() { | |
1099 | - $("#userName").focus(); | |
1100 | - }, 0); | |
1101 | - bindFormEvent("loginForm", doLogin); | |
1102 | - }); | |
1103 | -</script> | |
1104 | -</body> | |
1105 | - | |
1106 | -</html> | |
1107 | - | |
1108 | - | |
1109 | - </pre> | |
1110 | - </div> | |
1111 | - <!--css div popup end--> | |
1112 | - | |
1113 | - </td> | |
1114 | - <td>无截图</td> | |
1115 | -</tr> | |
1116 | - | |
1117 | -<tr id='pt1.6.3' class='hiddenRow'> | |
1118 | - <td><div class='testcase'>test_login_03: 账户错误</div></td> | |
1119 | - <td colspan='5' align='center'><span class='status passCase'>通过</span></td> | |
1120 | - <td>无截图</td> | |
1121 | -</tr> | |
1122 | - | |
1123 | -<tr id='ft1.6.4' class='none'> | |
1124 | - <td ><div class='testcase'>test_login_04: 账户错误</div></td> | |
1125 | - <td colspan='5' align='center'> | |
1126 | - | |
1127 | - <!--css div popup start--> | |
1128 | - <span class='status failCase'> | |
1129 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.6.4')" > | |
1130 | - 失败</a></span> | |
1131 | - | |
1132 | - <div id='div_ft1.6.4' class="popup_window"> | |
1133 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1134 | - <a onfocus='this.blur();' onclick="document.getElementById('div_ft1.6.4').style.display = 'none' " > | |
1135 | - [x]</a> | |
1136 | - </div> | |
1137 | - <pre> | |
1138 | - | |
1139 | -ft1.6.4: Traceback (most recent call last): | |
1140 | - File "E:\PycharmWorkspace\dili-api-local\testcase\login\test_login.py", line 48, in test_login_04 | |
1141 | - self.assertTrue("用户名或密码错误" in re.text) | |
1142 | -AssertionError: False is not true | |
1143 | - | |
1144 | - | |
1145 | - </pre> | |
1146 | - </div> | |
1147 | - <!--css div popup end--> | |
1148 | - | |
1149 | - </td> | |
1150 | - <td>无截图</td> | |
1151 | -</tr> | |
1152 | - | |
1153 | -<tr class='passClass'> | |
1154 | - <td>logout.test_logout.test_logout: 新增登记接口</td> | |
1155 | - <td>1</td> | |
1156 | - <td>1</td> | |
1157 | - <td>0</td> | |
1158 | - <td>0</td> | |
1159 | - <td><a href="javascript:showClassDetail('c1.7',1)">详情</a></td> | |
1160 | - <td> </td> | |
1161 | -</tr> | |
1162 | - | |
1163 | -<tr id='pt1.7.1' class='hiddenRow'> | |
1164 | - <td ><div class='testcase'>test_logout_01: 成功登出账户</div></td> | |
1165 | - <td colspan='5' align='center'> | |
1166 | - | |
1167 | - <!--css div popup start--> | |
1168 | - <span class='status passCase'> | |
1169 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.7.1')" > | |
1170 | - 通过</a></span> | |
1171 | - | |
1172 | - <div id='div_pt1.7.1' class="popup_window"> | |
1173 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1174 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.7.1').style.display = 'none' " > | |
1175 | - [x]</a> | |
1176 | - </div> | |
1177 | - <pre> | |
1178 | - | |
1179 | -pt1.7.1: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
1180 | - | |
1181 | - | |
1182 | - </pre> | |
1183 | - </div> | |
1184 | - <!--css div popup end--> | |
1185 | - | |
1186 | - </td> | |
1187 | - <td>无截图</td> | |
1188 | -</tr> | |
1189 | - | |
1190 | -<tr class='passClass'> | |
1191 | - <td>upStream.test_upStream.test_upStream: 上游企业列表查询接口</td> | |
1192 | - <td>2</td> | |
1193 | - <td>2</td> | |
1194 | - <td>0</td> | |
1195 | - <td>0</td> | |
1196 | - <td><a href="javascript:showClassDetail('c1.8',2)">详情</a></td> | |
1197 | - <td> </td> | |
1198 | -</tr> | |
1199 | - | |
1200 | -<tr id='pt1.8.1' class='hiddenRow'> | |
1201 | - <td ><div class='testcase'>test_upStream_01: 成功查询上下游企业,无过滤条件</div></td> | |
1202 | - <td colspan='5' align='center'> | |
1203 | - | |
1204 | - <!--css div popup start--> | |
1205 | - <span class='status passCase'> | |
1206 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.8.1')" > | |
1207 | - 通过</a></span> | |
1208 | - | |
1209 | - <div id='div_pt1.8.1' class="popup_window"> | |
1210 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1211 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.8.1').style.display = 'none' " > | |
1212 | - [x]</a> | |
1213 | - </div> | |
1214 | - <pre> | |
1215 | - | |
1216 | -pt1.8.1: {'total': 221, 'rows': [{'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-28 17:11:15', 'idCard': '513001199302081011', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475423', 'cardNoFrontUrl': '178e3a7d988b480d9ab573716e5a63ce', 'name': '测', 'modified': '2021-06-28 17:11:15', 'userNames': '大梦想家', 'id': 361, 'sourceUserId': 131321, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-28 14:55:44', 'businessLicenseUrl': '7e449880e6014e8698bf52fd58122023', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '1123456', 'legalPerson': '发', 'telphone': '18722222222', 'name': '天', 'modified': '2021-06-28 14:55:44', 'userNames': '雪额外大', 'id': 360, 'sourceUserId': 616, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-24 15:08:51', 'idCard': '513000119930208155', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475463', 'cardNoFrontUrl': '', 'name': '爱情', 'modified': '2021-06-24 15:08:51', 'userNames': '大梦想家', 'id': 359, 'sourceUserId': 131321, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-23 16:34:50', 'businessLicenseUrl': 'c5806086695045808e6cbdacfc9dceff', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '123456', 'legalPerson': '22', 'telphone': '15623333333', 'name': '22', 'modified': '2021-06-23 16:34:50', 'userNames': '杨茂茂', 'id': 358, 'sourceUserId': 130495, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-17 17:32:11', 'idCard': '513001199802081052', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475463', 'cardNoFrontUrl': '', 'name': '15643', 'modified': '2021-06-17 17:32:11', 'userNames': '雪碧', 'id': 357, 'sourceUserId': 131272, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-11 14:56:28', 'idCard': '513001199802081528', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475125', 'cardNoFrontUrl': '', 'name': '杨茂茂', 'modified': '2021-06-11 14:56:28', 'userNames': '雪碧', 'id': 356, 'sourceUserId': 131272, 'upstreamType': '个人'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:07:43', 'idCard': '110101198001011339', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '13111111111', 'cardNoFrontUrl': '', 'name': '001', 'modified': '2021-06-01 15:07:43', 'userNames': '六一测试', 'id': 353, 'sourceUserId': 131214, 'upstreamType': '个人'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:07:10', 'businessLicenseUrl': '', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '333', 'legalPerson': '111', 'telphone': '222', 'name': '001', 'modified': '2021-06-01 15:07:10', 'userNames': '六一测试', 'id': 352, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:06:40', 'businessLicenseUrl': '', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '', 'legalPerson': '', 'telphone': '', 'name': '下游', 'modified': '2021-06-01 15:06:40', 'userNames': '六一测试', 'id': 351, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-01 15:06:09', 'businessLicenseUrl': '04b99e521f0947039e5a6497184ac941', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '111', 'legalPerson': '111', 'telphone': '13111111111', 'name': '企业002', 'modified': '2021-06-01 15:06:09', 'userNames': '六一测试', 'id': 350, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}]} | |
1217 | - | |
1218 | - | |
1219 | - </pre> | |
1220 | - </div> | |
1221 | - <!--css div popup end--> | |
1222 | - | |
1223 | - </td> | |
1224 | - <td>无截图</td> | |
1225 | -</tr> | |
1226 | - | |
1227 | -<tr id='pt1.8.2' class='hiddenRow'> | |
1228 | - <td ><div class='testcase'>test_upStream_02: 成功查询上下游企业,加入企业/个人名称过滤条件</div></td> | |
1229 | - <td colspan='5' align='center'> | |
1230 | - | |
1231 | - <!--css div popup start--> | |
1232 | - <span class='status passCase'> | |
1233 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.8.2')" > | |
1234 | - 通过</a></span> | |
1235 | - | |
1236 | - <div id='div_pt1.8.2' class="popup_window"> | |
1237 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1238 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.8.2').style.display = 'none' " > | |
1239 | - [x]</a> | |
1240 | - </div> | |
1241 | - <pre> | |
1242 | - | |
1243 | -pt1.8.2: {'total': 5, 'rows': [{'upORdown': '上游', '$_upORdown': 10, 'created': '2021-05-10 09:42:51', 'idCard': '', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '13540782311', 'cardNoFrontUrl': '', 'name': '111', 'modified': '2021-05-10 09:42:51', 'userNames': '雪额外大', 'id': 333, 'sourceUserId': 616, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-04-07 17:32:14', 'businessLicenseUrl': 'f8eae081aa35426d975406a03a4fd062', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '111', 'legalPerson': '哈哈哈', 'telphone': '13111111111', 'name': '企业上游111', 'modified': '2021-04-07 17:32:14', 'userNames': '该喝喝', 'id': 274, 'sourceUserId': 617, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-21 11:49:27', 'businessLicenseUrl': '8478adbc99224b5f812b54b931e93e30', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '18989898989', 'legalPerson': '上游111', 'telphone': '18989898989', 'name': '上游111·', 'modified': '2021-01-21 17:30:59', 'userNames': '测试二号', 'id': 173, 'sourceUserId': 519, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-14 14:53:44', 'businessLicenseUrl': '1993ceeb24504f43b16f06028ddd7ec7', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': 'dd51ffc5f20944bc9c57d64b148f4b2f', 'license': '19925360686', 'legalPerson': '法人地脉000001111111', 'telphone': '19925360686', 'name': '上游企业0011111110000111', 'modified': '2021-01-14 14:53:44', 'userNames': 'null', 'id': 148, 'sourceUserId': 500, 'manufacturingLicenseUrl': '277ea39c03f94160a2cbe6d7dc3ec4f4', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-07 14:12:31', 'idCard': '513001199302081011', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380454588', 'cardNoFrontUrl': '', 'name': '111', 'modified': '2021-01-07 14:12:31', 'userNames': 'null', 'id': 102, 'sourceUserId': 438, 'upstreamType': '个人'}]} | |
1244 | - | |
1245 | - | |
1246 | - </pre> | |
1247 | - </div> | |
1248 | - <!--css div popup end--> | |
1249 | - | |
1250 | - </td> | |
1251 | - <td>无截图</td> | |
1252 | -</tr> | |
1253 | - | |
1254 | -<tr class='passClass'> | |
1255 | - <td>upStream.test_upStream.test_upStream01</td> | |
1256 | - <td>1</td> | |
1257 | - <td>1</td> | |
1258 | - <td>0</td> | |
1259 | - <td>0</td> | |
1260 | - <td><a href="javascript:showClassDetail('c1.9',1)">详情</a></td> | |
1261 | - <td> </td> | |
1262 | -</tr> | |
1263 | - | |
1264 | -<tr id='pt1.9.1' class='hiddenRow'> | |
1265 | - <td ><div class='testcase'>test_demo</div></td> | |
1266 | - <td colspan='5' align='center'> | |
1267 | - | |
1268 | - <!--css div popup start--> | |
1269 | - <span class='status passCase'> | |
1270 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.9.1')" > | |
1271 | - 通过</a></span> | |
1272 | - | |
1273 | - <div id='div_pt1.9.1' class="popup_window"> | |
1274 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1275 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.9.1').style.display = 'none' " > | |
1276 | - [x]</a> | |
1277 | - </div> | |
1278 | - <pre> | |
1279 | - | |
1280 | -pt1.9.1: test_demo | |
1281 | - | |
1282 | - | |
1283 | - </pre> | |
1284 | - </div> | |
1285 | - <!--css div popup end--> | |
1286 | - | |
1287 | - </td> | |
1288 | - <td>无截图</td> | |
1289 | -</tr> | |
1290 | - | |
1291 | -<tr id='total_row'> | |
1292 | - <th>统计</th> | |
1293 | - <th>21</th> | |
1294 | - <th>20</th> | |
1295 | - <th>1</th> | |
1296 | - <th>0</th> | |
1297 | - <th> </th> | |
1298 | - <th> </th> | |
1299 | -</tr> | |
1300 | -</table> | |
1301 | -<script> | |
1302 | - showCase(0,1); | |
1303 | - drawCircle('circle1',20, 1, 0); | |
1304 | -</script> | |
1305 | - | |
1306 | -<div id='ending'> </div> | |
1307 | - | |
1308 | -</body> | |
1309 | -</html> |
report/2021-07-28 11_20_22_result.html deleted
100644 → 0
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
3 | -<html xmlns="http://www.w3.org/1999/xhtml"> | |
4 | -<head> | |
5 | - <title>重构项目接口测试报告</title> | |
6 | - <meta name="generator" content="HTMLTestRunner 0.8.3"/> | |
7 | - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
8 | - | |
9 | -<style type="text/css" media="screen"> | |
10 | -body { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; } | |
11 | -table { font-size: 100%; } | |
12 | -pre { | |
13 | - white-space: pre-wrap; | |
14 | - word-wrap: break-word; | |
15 | -} | |
16 | - | |
17 | -/* -- heading ---------------------------------------------------------------------- */ | |
18 | -h1 { | |
19 | - font-size: 16pt; | |
20 | - color: gray; | |
21 | -} | |
22 | -.heading { | |
23 | - float:left; | |
24 | - width:30%; | |
25 | - margin-top: 0ex; | |
26 | - margin-bottom: 1ex; | |
27 | -} | |
28 | - | |
29 | -.heading .attribute { | |
30 | - margin-top: 1ex; | |
31 | - margin-bottom: 0; | |
32 | -} | |
33 | - | |
34 | -.heading .description { | |
35 | - margin-top: 4ex; | |
36 | - margin-bottom: 6ex; | |
37 | -} | |
38 | - | |
39 | -/* -- css div popup ------------------------------------------------------------------------ */ | |
40 | -a.popup_link { | |
41 | -} | |
42 | - | |
43 | -a.popup_link:hover { | |
44 | - color: red; | |
45 | -} | |
46 | -.img{ | |
47 | - height: 100%; | |
48 | - border-collapse: collapse; | |
49 | - border: 2px solid #777; | |
50 | -} | |
51 | - | |
52 | -.screenshots { | |
53 | - z-index: 100; | |
54 | - position:fixed; | |
55 | - height: 80%; | |
56 | - left: 50%; | |
57 | - top: 50%; | |
58 | - transform: translate(-50%,-50%); | |
59 | - display: none; | |
60 | -} | |
61 | - | |
62 | -.imgyuan{ | |
63 | - height: 20px; | |
64 | - border-radius: 12px; | |
65 | - background-color: red; | |
66 | - padding-left: 13px; | |
67 | - margin: 0 auto; | |
68 | - position: relative; | |
69 | - top: -40px; | |
70 | - background-color: rgba(1, 150, 0, 0.3); | |
71 | -} | |
72 | -.imgyuan font{ | |
73 | - border:1px solid white; | |
74 | - width:11px; | |
75 | - height:11px; | |
76 | - border-radius:50%; | |
77 | - margin-right: 9px; | |
78 | - margin-top: 4px; | |
79 | - display: block; | |
80 | - float: left; | |
81 | - background-color: white; | |
82 | -} | |
83 | -.close_shots { | |
84 | - background-image: url(data:image/png;base64,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/GMzLdsAAD+3aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzA2NyA3OS4xNTc3NDcsIDIwMTUvMDMvMzAtMjM6NDA6NDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgICAgICAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgICAgICAgICB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjk4NDVkYzlhLTM2NTEtMTFlOC1hMDRjLWMzZmRjNzFmNjFkZDwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDo3YzQ4OTMyZS0wM2FjLTIxNDctYTJiZi1iNmViOWU4ZDY2Y2Q8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmQ0ZjMzNDFjLTRkYjctZjc0YS1iZTAxLWYxMGEwMzNhNjg4ZDwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxOC0wNC0wMlQxNjo0MToxMCswODowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIEVsZW1lbnRzIDE0LjAgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y29udmVydGVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmZyb20gaW1hZ2UvanBlZyB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5kZXJpdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmNvbnZlcnRlZCBmcm9tIGltYWdlL2pwZWcgdG8gaW1hZ2UvcG5nPC9zdEV2dDpwYXJhbWV0ZXJzPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3YzQ4OTMyZS0wM2FjLTIxNDctYTJiZi1iNmViOWU4ZDY2Y2Q8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTgtMDQtMDJUMTY6NDE6MTArMDg6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBFbGVtZW50cyAxNC4wIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOmQ0ZjMzNDFjLTRkYjctZjc0YS1iZTAxLWYxMGEwMzNhNjg4ZDwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3N0UmVmOmRvY3VtZW50SUQ+CiAgICAgICAgICAgIDxzdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+MEIzOTNDRjk1RDQ0RDlGMDNFQjEzQkZEQ0UxRDA5MjM8L3N0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPnNSR0IgSUVDNjE5NjYtMi4xPC9waG90b3Nob3A6SUNDUHJvZmlsZT4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTgtMDQtMDJUMTY6MjM6NTUrMDg6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxOC0wNC0wMlQxNjo0MToxMCswODowMDwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMTgtMDQtMDJUMTY6NDE6MTArMDg6MDA8L3htcDpNZXRhZGF0YURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+QWRvYmUgUGhvdG9zaG9wIEVsZW1lbnRzIDE0LjAgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx0aWZmOkltYWdlV2lkdGg+MjU0PC90aWZmOkltYWdlV2lkdGg+CiAgICAgICAgIDx0aWZmOkltYWdlTGVuZ3RoPjI1NDwvdGlmZjpJbWFnZUxlbmd0aD4KICAgICAgICAgPHRpZmY6Qml0c1BlclNhbXBsZT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGk+ODwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpPjg8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaT44PC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC90aWZmOkJpdHNQZXJTYW1wbGU+CiAgICAgICAgIDx0aWZmOlBob3RvbWV0cmljSW50ZXJwcmV0YXRpb24+MjwvdGlmZjpQaG90b21ldHJpY0ludGVycHJldGF0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpTYW1wbGVzUGVyUGl4ZWw+MzwvdGlmZjpTYW1wbGVzUGVyUGl4ZWw+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpFeGlmVmVyc2lvbj4wMjIxPC9leGlmOkV4aWZWZXJzaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjE1MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4xNTA8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg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); | |
85 | - background-size: 22px 22px; | |
86 | - -moz-background-size: 22px 22px; | |
87 | - background-repeat: no-repeat; | |
88 | - position: absolute; | |
89 | - top: 5px; | |
90 | - right: 5px; | |
91 | - height: 22px; | |
92 | - z-index: 99; | |
93 | - width: 22px; | |
94 | -} | |
95 | -.popup_window { | |
96 | - display: none; | |
97 | - position: relative; | |
98 | - left: 0px; | |
99 | - top: 0px; | |
100 | - padding: 10px; | |
101 | - background-color: #E6E6D6; | |
102 | - font-family: "Lucida Console", "Courier New", Courier, monospace; | |
103 | - text-align: left; | |
104 | - font-size: 8pt; | |
105 | -} | |
106 | - | |
107 | -} | |
108 | -/* -- report ------------------------------------------------------------------------ */ | |
109 | -#show_detail_line { | |
110 | - float:left; | |
111 | - width:100%; | |
112 | - margin-top: 3ex; | |
113 | - margin-bottom: 1ex; | |
114 | -} | |
115 | - | |
116 | -#result_table { | |
117 | - margin: 1em 0; | |
118 | - width: 100%; | |
119 | - overflow: hidden; | |
120 | - background: #FFF; | |
121 | - color: #024457; | |
122 | - border-radius: 10px; | |
123 | - border: 1px solid #167F92; | |
124 | -} | |
125 | -#result_table th { | |
126 | - border: 1px solid #FFFFFF; | |
127 | - background-color: #167F92; | |
128 | - color: #FFF; | |
129 | - padding: 0.5em; | |
130 | - &:first-child { | |
131 | - display: table-cell; | |
132 | - text-align: center; | |
133 | - } | |
134 | - &:nth-child(2) { | |
135 | - display: table-cell; | |
136 | - span {display:none;} | |
137 | - &:after {content:attr(data-th);} | |
138 | - } | |
139 | - @media (min-width: 480px) { | |
140 | - &:nth-child(2) { | |
141 | - span {display: block;} | |
142 | - &:after {display: none;} | |
143 | - } | |
144 | - } | |
145 | - } | |
146 | -#result_table td { | |
147 | - word-wrap: break-word; | |
148 | - max-width: 7em; | |
149 | - padding: 0.3em; | |
150 | - &:first-child { | |
151 | - display: table-cell; | |
152 | - text-align: center; | |
153 | - } | |
154 | - @media (min-width: 400px) { | |
155 | - border: 1px solid #D9E4E6; | |
156 | - } | |
157 | - } | |
158 | - | |
159 | -#result_table th, td { | |
160 | - margin: .5em 1em; | |
161 | - @media (min-width: 400px) { | |
162 | - display: table-cell; | |
163 | - padding: 1em; | |
164 | - } | |
165 | - } | |
166 | - | |
167 | -#total_row { font-weight: bold; } | |
168 | -.passClass { background-color: #6c6; !important ;} | |
169 | -.failClass { background-color: #c60; !important ;} | |
170 | -.errorClass { background-color: #c00; !important ; } | |
171 | -.passCase { color: #6c6; } | |
172 | -.failCase { color: #c60; font-weight: bold; } | |
173 | -.errorCase { color: #c00; font-weight: bold; } | |
174 | -.skipCase { color:#908e8e; font-weight: bold; } | |
175 | -tr[id^=pt] td { background-color: rgba(73,204,144,.3) !important ; } | |
176 | -tr[id^=ft] td { background-color: rgba(252,161,48,.3) !important; } | |
177 | -tr[id^=et] td { background-color: rgba(249,62,62,.3) !important ; } | |
178 | -tr[id^=st] td { background-color: #6f6f6fa1 !important ; } | |
179 | -.hiddenRow { display: none; } | |
180 | -.testcase { margin-left: 2em; } | |
181 | - | |
182 | -/* -- ending ---------------------------------------------------------------------- */ | |
183 | -#ending { | |
184 | -} | |
185 | - | |
186 | -.detail_button { | |
187 | - width: 130px; | |
188 | - text-decoration: none; | |
189 | - line-height: 38px; | |
190 | - text-align: center; | |
191 | - font-weight: bold; | |
192 | - color: #ffff; | |
193 | - border-radius: 6px; | |
194 | - padding: 5px 10px 5px 10px; | |
195 | - position: relative; | |
196 | - overflow: hidden; | |
197 | -} | |
198 | -.detail_button.abstract{background-color: #4dbee8;} | |
199 | -.detail_button.passed{ background-color: #66cc66;} | |
200 | -.detail_button.failed{ background-color: #cc6600;} | |
201 | -.detail_button.errored{ background-color: #f54f4f;} | |
202 | -.detail_button.skiped{ background-color: gray;} | |
203 | -.detail_button.all{ background-color: blue;} | |
204 | -.piechart{ | |
205 | - width: 200px; | |
206 | - float: left; | |
207 | - display: inline; | |
208 | -} | |
209 | - | |
210 | - | |
211 | -</style> | |
212 | - | |
213 | -</head> | |
214 | -<body> | |
215 | -<script language="javascript" type="text/javascript"> | |
216 | -output_list = Array(); | |
217 | - | |
218 | -/* level - 0:Summary; 1:Passed; 2:Failed; 3:Errored; 4:Skiped; 5:All */ | |
219 | -function showCase(level,channel) { | |
220 | - trs = document.getElementsByTagName("tr"); | |
221 | - for (var i = 0; i < trs.length; i++) { | |
222 | - tr = trs[i]; | |
223 | - id = tr.id; | |
224 | - if (["ft","pt","et","st"].indexOf(id.substr(0,2))!=-1){ | |
225 | - if ( level ==0 && id.substr(2,1)==channel ) { | |
226 | - tr.className = 'hiddenRow'; | |
227 | - } | |
228 | - } | |
229 | - | |
230 | - if (id.substr(0,3) == 'pt'+channel) { | |
231 | - if ( level==1){ | |
232 | - tr.className = ''; | |
233 | - } | |
234 | - else if (level>4 && id.substr(2,1)==channel ){ | |
235 | - tr.className = ''; | |
236 | - } | |
237 | - else { | |
238 | - tr.className = 'hiddenRow'; | |
239 | - } | |
240 | - } | |
241 | - if (id.substr(0,3) == 'ft'+channel) { | |
242 | - if (level ==2) { | |
243 | - tr.className = ''; | |
244 | - } | |
245 | - else if (level>4 && id.substr(2,1)==channel ){ | |
246 | - tr.className = ''; | |
247 | - } | |
248 | - else { | |
249 | - tr.className = 'hiddenRow'; | |
250 | - } | |
251 | - } | |
252 | - if (id.substr(0,3) == 'et'+channel) { | |
253 | - if (level ==3) { | |
254 | - tr.className = ''; | |
255 | - } | |
256 | - else if (level>4 && id.substr(2,1)==channel ){ | |
257 | - tr.className = ''; | |
258 | - } | |
259 | - else { | |
260 | - tr.className = 'hiddenRow'; | |
261 | - } | |
262 | - } | |
263 | - if (id.substr(0,3) == 'st'+channel) { | |
264 | - if (level ==4) { | |
265 | - tr.className = ''; | |
266 | - } | |
267 | - else if (level>4 && id.substr(2,1)==channel ){ | |
268 | - tr.className = ''; | |
269 | - } | |
270 | - else { | |
271 | - tr.className = 'hiddenRow'; | |
272 | - } | |
273 | - } | |
274 | - | |
275 | - } | |
276 | -} | |
277 | - | |
278 | - | |
279 | -function showClassDetail(cid, count) { | |
280 | - var id_list = Array(count); | |
281 | - var toHide = 1; | |
282 | - for (var i = 0; i < count; i++) { | |
283 | - tid0 = 't' + cid.substr(1) + '.' + (i+1); | |
284 | - tid = 'f' + tid0; | |
285 | - tr = document.getElementById(tid); | |
286 | - if (!tr) { | |
287 | - tid = 'p' + tid0; | |
288 | - tr = document.getElementById(tid); | |
289 | - } | |
290 | - if (!tr) { | |
291 | - tid = 'e' + tid0; | |
292 | - tr = document.getElementById(tid); | |
293 | - } | |
294 | - if (!tr) { | |
295 | - tid = 's' + tid0; | |
296 | - tr = document.getElementById(tid); | |
297 | - } | |
298 | - id_list[i] = tid; | |
299 | - if (tr.className) { | |
300 | - toHide = 0; | |
301 | - } | |
302 | - } | |
303 | - for (var i = 0; i < count; i++) { | |
304 | - tid = id_list[i]; | |
305 | - if (toHide) { | |
306 | - document.getElementById(tid).className = 'hiddenRow'; | |
307 | - } | |
308 | - else { | |
309 | - document.getElementById(tid).className = ''; | |
310 | - } | |
311 | - } | |
312 | -} | |
313 | - | |
314 | - | |
315 | -function showTestDetail(div_id){ | |
316 | - var details_div = document.getElementById(div_id) | |
317 | - var displayState = details_div.style.display | |
318 | - // alert(displayState) | |
319 | - if (displayState != 'block' ) { | |
320 | - displayState = 'block' | |
321 | - details_div.style.display = 'block' | |
322 | - } | |
323 | - else { | |
324 | - details_div.style.display = 'none' | |
325 | - } | |
326 | -} | |
327 | - | |
328 | - | |
329 | -function html_escape(s) { | |
330 | - s = s.replace(/&/g,'&'); | |
331 | - s = s.replace(/</g,'<'); | |
332 | - s = s.replace(/>/g,'>'); | |
333 | - return s; | |
334 | -} | |
335 | - | |
336 | -function drawCircle(circle,pass, fail, error){ | |
337 | - var color = ["#6c6","#c60","#c00"]; | |
338 | - var data = [pass,fail,error]; | |
339 | - var text_arr = ["Pass", "Fail", "Error"]; | |
340 | - | |
341 | - var canvas = document.getElementById(circle); | |
342 | - var ctx = canvas.getContext("2d"); | |
343 | - var startPoint=0; | |
344 | - var width = 20, height = 10; | |
345 | - var posX = 112 * 2 + 20, posY = 30; | |
346 | - var textX = posX + width + 5, textY = posY + 10; | |
347 | - for(var i=0;i<data.length;i++){ | |
348 | - ctx.fillStyle = color[i]; | |
349 | - ctx.beginPath(); | |
350 | - ctx.moveTo(112,84); | |
351 | - ctx.arc(112,84,84,startPoint,startPoint+Math.PI*2*(data[i]/(data[0]+data[1]+data[2])),false); | |
352 | - ctx.fill(); | |
353 | - startPoint += Math.PI*2*(data[i]/(data[0]+data[1]+data[2])); | |
354 | - ctx.fillStyle = color[i]; | |
355 | - ctx.fillRect(posX, posY + 20 * i, width, height); | |
356 | - ctx.moveTo(posX, posY + 20 * i); | |
357 | - ctx.font = 'bold 14px'; | |
358 | - ctx.fillStyle = color[i]; | |
359 | - var percent = text_arr[i] + ":"+data[i]; | |
360 | - ctx.fillText(percent, textX, textY + 20 * i); | |
361 | - | |
362 | - } | |
363 | -} | |
364 | - | |
365 | - | |
366 | -function show_img(obj) { | |
367 | - var obj1 = obj.nextElementSibling | |
368 | - obj1.style.display='block' | |
369 | - var index = 0;//每张图片的下标, | |
370 | - var len = obj1.getElementsByTagName('img').length; | |
371 | - var imgyuan = obj1.getElementsByClassName('imgyuan')[0] | |
372 | - //var start=setInterval(autoPlay,500); | |
373 | - obj1.onmouseover=function(){//当鼠标光标停在图片上,则停止轮播 | |
374 | - clearInterval(start); | |
375 | - } | |
376 | - obj1.onmouseout=function(){//当鼠标光标停在图片上,则开始轮播 | |
377 | - start=setInterval(autoPlay,1000); | |
378 | - } | |
379 | - for (var i = 0; i < len; i++) { | |
380 | - var font = document.createElement('font') | |
381 | - imgyuan.appendChild(font) | |
382 | - } | |
383 | - var lis = obj1.getElementsByTagName('font');//得到所有圆圈 | |
384 | - changeImg(0) | |
385 | - var funny = function (i) { | |
386 | - lis[i].onmouseover = function () { | |
387 | - index=i | |
388 | - changeImg(i) | |
389 | - } | |
390 | - } | |
391 | - for (var i = 0; i < lis.length; i++) { | |
392 | - funny(i); | |
393 | - } | |
394 | - | |
395 | - function autoPlay(){ | |
396 | - if(index>len-1){ | |
397 | - index=0; | |
398 | - clearInterval(start); //运行一轮后停止 | |
399 | - } | |
400 | - changeImg(index++); | |
401 | - } | |
402 | - imgyuan.style.width= 25*len +"px"; | |
403 | - //对应圆圈和图片同步 | |
404 | - function changeImg(index) { | |
405 | - var list = obj1.getElementsByTagName('img'); | |
406 | - var list1 = obj1.getElementsByTagName('font'); | |
407 | - for (i = 0; i < list.length; i++) { | |
408 | - list[i].style.display = 'none'; | |
409 | - list1[i].style.backgroundColor = 'white'; | |
410 | - } | |
411 | - list[index].style.display = 'block'; | |
412 | - list1[index].style.backgroundColor = 'blue'; | |
413 | - } | |
414 | - | |
415 | -} | |
416 | -function hide_img(obj){ | |
417 | - obj.parentElement.style.display = "none"; | |
418 | - obj.parentElement.getElementsByClassName('imgyuan')[0].innerHTML = ""; | |
419 | -} | |
420 | -</script> | |
421 | -<div class='heading'> | |
422 | -<h1>重构项目接口测试报告</h1> | |
423 | -<p class='attribute'><strong>开始时间:</strong> 2021-07-28 11:20:22</p> | |
424 | -<p class='attribute'><strong>耗时:</strong> 0:00:14.796784</p> | |
425 | -<p class='attribute'><strong>状态:</strong> <span class="tj passCase">Pass</span>:23 <span class="tj failCase">Failure</span>:1 <span class="tj skipCase">Skip</span>:2 <span class="tj">通过率</span>:95.8%</p> | |
426 | - | |
427 | -<p class='description'>用例简要执行情况如下:(注:报告详细信息需要下载report.html并用浏览器打开)</p> | |
428 | -</div> | |
429 | - | |
430 | - | |
431 | -<div class="piechart"> | |
432 | - <div> | |
433 | - <canvas id="circle1" width="350" height="168" </canvas> | |
434 | - </div> | |
435 | -</div> | |
436 | - | |
437 | -<div id='show_detail_line' style=" float: left; width: 100%;"> | |
438 | -<a class="abstract detail_button" href='javascript:showCase(0,1)'>概要[95.83%]</a> | |
439 | -<a class="passed detail_button" href='javascript:showCase(1,1)'>通过[23]</a> | |
440 | -<a class="failed detail_button" href='javascript:showCase(2,1)'>失败[1]</a> | |
441 | -<a class="errored detail_button" href='javascript:showCase(3,1)'>错误[0]</a> | |
442 | -<a class="skiped detail_button" href='javascript:showCase(4,1)'>跳过[2]</a> | |
443 | -<a class="all detail_button" href='javascript:showCase(5,1)'>所有[24]</a> | |
444 | -</div> | |
445 | - | |
446 | -<table id='result_table'> | |
447 | -<colgroup> | |
448 | -<col align='left' /> | |
449 | -<col align='right' /> | |
450 | -<col align='right' /> | |
451 | -<col align='right' /> | |
452 | -<col align='right' /> | |
453 | -<col align='right' /> | |
454 | -<col align='right' /> | |
455 | -</colgroup> | |
456 | -<tr id='header_row'> | |
457 | - <th>测试组/测试用例</th> | |
458 | - <th>总数</th> | |
459 | - <th>通过</th> | |
460 | - <th>失败</th> | |
461 | - <th>错误</th> | |
462 | - <th>视图</th> | |
463 | - <th>错误截图</th> | |
464 | -</tr> | |
465 | - | |
466 | -<tr class='passClass'> | |
467 | - <td>doAdd.test_doAddA.test_doAdd: 新增登记接口</td> | |
468 | - <td>1</td> | |
469 | - <td>1</td> | |
470 | - <td>0</td> | |
471 | - <td>0</td> | |
472 | - <td><a href="javascript:showClassDetail('c1.1',1)">详情</a></td> | |
473 | - <td> </td> | |
474 | -</tr> | |
475 | - | |
476 | -<tr id='pt1.1.1' class='hiddenRow'> | |
477 | - <td ><div class='testcase'>test_doAdd_01: 成功新增一个商品为大白菜的报备单,重量为111</div></td> | |
478 | - <td colspan='5' align='center'> | |
479 | - | |
480 | - <!--css div popup start--> | |
481 | - <span class='status passCase'> | |
482 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.1.1')" > | |
483 | - 通过</a></span> | |
484 | - | |
485 | - <div id='div_pt1.1.1' class="popup_window"> | |
486 | - <div style='text-align: right; color:red;cursor:pointer'> | |
487 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.1.1').style.display = 'none' " > | |
488 | - [x]</a> | |
489 | - </div> | |
490 | - <pre> | |
491 | - | |
492 | -pt1.1.1: http://test.trace.diligrp.com:8393/newRegisterBill/doAdd.action | |
493 | -{"registerHeadWeight": "0", "registerHeadRemainWeight": "0", "imageCertList": [], "measureType": 20, "registType": 10, "userId": 516, "arrivalTallynos": [], "arrivalDatetime": "", "truckType": 10, "weight": "111", "weightUnit": 1, "productName": "\u5927\u767d\u83dc", "productId": 2190, "originName": "", "originId": "", "unitPrice": "", "truckTareWeight": "", "remark": "", "specName": "", "brandName": "", "plate": "\u5dddA123456"} | |
494 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
495 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
496 | -{'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
497 | - | |
498 | - | |
499 | - </pre> | |
500 | - </div> | |
501 | - <!--css div popup end--> | |
502 | - | |
503 | - </td> | |
504 | - <td>无截图</td> | |
505 | -</tr> | |
506 | - | |
507 | -<tr class='passClass'> | |
508 | - <td>doAdd.test_doAdd.test_doAdd: 新增登记接口</td> | |
509 | - <td>4</td> | |
510 | - <td>4</td> | |
511 | - <td>0</td> | |
512 | - <td>0</td> | |
513 | - <td><a href="javascript:showClassDetail('c1.2',4)">详情</a></td> | |
514 | - <td> </td> | |
515 | -</tr> | |
516 | - | |
517 | -<tr id='pt1.2.1' class='hiddenRow'> | |
518 | - <td ><div class='testcase'>test_doAdd_01: 成功新增一个商品为大白菜的报备单,重量为111</div></td> | |
519 | - <td colspan='5' align='center'> | |
520 | - | |
521 | - <!--css div popup start--> | |
522 | - <span class='status passCase'> | |
523 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.1')" > | |
524 | - 通过</a></span> | |
525 | - | |
526 | - <div id='div_pt1.2.1' class="popup_window"> | |
527 | - <div style='text-align: right; color:red;cursor:pointer'> | |
528 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.1').style.display = 'none' " > | |
529 | - [x]</a> | |
530 | - </div> | |
531 | - <pre> | |
532 | - | |
533 | -pt1.2.1: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
534 | - | |
535 | - | |
536 | - </pre> | |
537 | - </div> | |
538 | - <!--css div popup end--> | |
539 | - | |
540 | - </td> | |
541 | - <td>无截图</td> | |
542 | -</tr> | |
543 | - | |
544 | -<tr id='pt1.2.2' class='hiddenRow'> | |
545 | - <td ><div class='testcase'>test_doAdd_02: 成功新增一个商品为鲜花生的报备单,重量为111</div></td> | |
546 | - <td colspan='5' align='center'> | |
547 | - | |
548 | - <!--css div popup start--> | |
549 | - <span class='status passCase'> | |
550 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.2')" > | |
551 | - 通过</a></span> | |
552 | - | |
553 | - <div id='div_pt1.2.2' class="popup_window"> | |
554 | - <div style='text-align: right; color:red;cursor:pointer'> | |
555 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.2').style.display = 'none' " > | |
556 | - [x]</a> | |
557 | - </div> | |
558 | - <pre> | |
559 | - | |
560 | -pt1.2.2: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
561 | - | |
562 | - | |
563 | - </pre> | |
564 | - </div> | |
565 | - <!--css div popup end--> | |
566 | - | |
567 | - </td> | |
568 | - <td>无截图</td> | |
569 | -</tr> | |
570 | - | |
571 | -<tr id='pt1.2.3' class='hiddenRow'> | |
572 | - <td ><div class='testcase'>test_doAdd_03: 用错误的用户来新增,无法新增</div></td> | |
573 | - <td colspan='5' align='center'> | |
574 | - | |
575 | - <!--css div popup start--> | |
576 | - <span class='status passCase'> | |
577 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.3')" > | |
578 | - 通过</a></span> | |
579 | - | |
580 | - <div id='div_pt1.2.3' class="popup_window"> | |
581 | - <div style='text-align: right; color:red;cursor:pointer'> | |
582 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.3').style.display = 'none' " > | |
583 | - [x]</a> | |
584 | - </div> | |
585 | - <pre> | |
586 | - | |
587 | -pt1.2.3: {'code': '5000', 'message': '查询客户信息失败', 'result': '查询客户信息失败', 'success': False} | |
588 | - | |
589 | - | |
590 | - </pre> | |
591 | - </div> | |
592 | - <!--css div popup end--> | |
593 | - | |
594 | - </td> | |
595 | - <td>无截图</td> | |
596 | -</tr> | |
597 | - | |
598 | -<tr id='pt1.2.4' class='hiddenRow'> | |
599 | - <td ><div class='testcase'>test_doAdd_04: 成功新增一个商品为大白菜的报备单,重量为666</div></td> | |
600 | - <td colspan='5' align='center'> | |
601 | - | |
602 | - <!--css div popup start--> | |
603 | - <span class='status passCase'> | |
604 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.2.4')" > | |
605 | - 通过</a></span> | |
606 | - | |
607 | - <div id='div_pt1.2.4' class="popup_window"> | |
608 | - <div style='text-align: right; color:red;cursor:pointer'> | |
609 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.2.4').style.display = 'none' " > | |
610 | - [x]</a> | |
611 | - </div> | |
612 | - <pre> | |
613 | - | |
614 | -pt1.2.4: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
615 | - | |
616 | - | |
617 | - </pre> | |
618 | - </div> | |
619 | - <!--css div popup end--> | |
620 | - | |
621 | - </td> | |
622 | - <td>无截图</td> | |
623 | -</tr> | |
624 | - | |
625 | -<tr class='passClass'> | |
626 | - <td>doAudit.test_doAudit.test_doAudit: 登记单审核接口</td> | |
627 | - <td>4</td> | |
628 | - <td>4</td> | |
629 | - <td>0</td> | |
630 | - <td>0</td> | |
631 | - <td><a href="javascript:showClassDetail('c1.3',4)">详情</a></td> | |
632 | - <td> </td> | |
633 | -</tr> | |
634 | - | |
635 | -<tr id='pt1.3.1' class='hiddenRow'> | |
636 | - <td ><div class='testcase'>test_doAudit_01: 审核通过</div></td> | |
637 | - <td colspan='5' align='center'> | |
638 | - | |
639 | - <!--css div popup start--> | |
640 | - <span class='status passCase'> | |
641 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.1')" > | |
642 | - 通过</a></span> | |
643 | - | |
644 | - <div id='div_pt1.3.1' class="popup_window"> | |
645 | - <div style='text-align: right; color:red;cursor:pointer'> | |
646 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.1').style.display = 'none' " > | |
647 | - [x]</a> | |
648 | - </div> | |
649 | - <pre> | |
650 | - | |
651 | -pt1.3.1: db id 7130 | |
652 | -数据处理后的url http://test.trace.diligrp.com:8393/newRegisterBill/doAudit.action?id=7130&verifyStatus=20 | |
653 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
654 | - | |
655 | - | |
656 | - </pre> | |
657 | - </div> | |
658 | - <!--css div popup end--> | |
659 | - | |
660 | - </td> | |
661 | - <td>无截图</td> | |
662 | -</tr> | |
663 | - | |
664 | -<tr id='pt1.3.2' class='hiddenRow'> | |
665 | - <td ><div class='testcase'>test_doAudit_02: 审核不通过</div></td> | |
666 | - <td colspan='5' align='center'> | |
667 | - | |
668 | - <!--css div popup start--> | |
669 | - <span class='status passCase'> | |
670 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.2')" > | |
671 | - 通过</a></span> | |
672 | - | |
673 | - <div id='div_pt1.3.2' class="popup_window"> | |
674 | - <div style='text-align: right; color:red;cursor:pointer'> | |
675 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.2').style.display = 'none' " > | |
676 | - [x]</a> | |
677 | - </div> | |
678 | - <pre> | |
679 | - | |
680 | -pt1.3.2: db id 7131 | |
681 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
682 | - | |
683 | - | |
684 | - </pre> | |
685 | - </div> | |
686 | - <!--css div popup end--> | |
687 | - | |
688 | - </td> | |
689 | - <td>无截图</td> | |
690 | -</tr> | |
691 | - | |
692 | -<tr id='pt1.3.3' class='hiddenRow'> | |
693 | - <td ><div class='testcase'>test_doAudit_03: 审核不通过</div></td> | |
694 | - <td colspan='5' align='center'> | |
695 | - | |
696 | - <!--css div popup start--> | |
697 | - <span class='status passCase'> | |
698 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.3')" > | |
699 | - 通过</a></span> | |
700 | - | |
701 | - <div id='div_pt1.3.3' class="popup_window"> | |
702 | - <div style='text-align: right; color:red;cursor:pointer'> | |
703 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.3').style.display = 'none' " > | |
704 | - [x]</a> | |
705 | - </div> | |
706 | - <pre> | |
707 | - | |
708 | -pt1.3.3: db id 7132 | |
709 | -{'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
710 | - | |
711 | - | |
712 | - </pre> | |
713 | - </div> | |
714 | - <!--css div popup end--> | |
715 | - | |
716 | - </td> | |
717 | - <td>无截图</td> | |
718 | -</tr> | |
719 | - | |
720 | -<tr id='pt1.3.4' class='hiddenRow'> | |
721 | - <td ><div class='testcase'>test_doAudit_04: 审核一个已经完成审核的登记单</div></td> | |
722 | - <td colspan='5' align='center'> | |
723 | - | |
724 | - <!--css div popup start--> | |
725 | - <span class='status passCase'> | |
726 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.3.4')" > | |
727 | - 通过</a></span> | |
728 | - | |
729 | - <div id='div_pt1.3.4' class="popup_window"> | |
730 | - <div style='text-align: right; color:red;cursor:pointer'> | |
731 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.3.4').style.display = 'none' " > | |
732 | - [x]</a> | |
733 | - </div> | |
734 | - <pre> | |
735 | - | |
736 | -pt1.3.4: db id 7133 | |
737 | -{'code': '5000', 'message': '操作失败,数据状态已改变', 'result': '操作失败,数据状态已改变', 'success': False} | |
738 | - | |
739 | - | |
740 | - </pre> | |
741 | - </div> | |
742 | - <!--css div popup end--> | |
743 | - | |
744 | - </td> | |
745 | - <td>无截图</td> | |
746 | -</tr> | |
747 | - | |
748 | -<tr class='passClass'> | |
749 | - <td>doUndo.test_doUndo.test_doUndo: 登记单撤销接口</td> | |
750 | - <td>1</td> | |
751 | - <td>1</td> | |
752 | - <td>0</td> | |
753 | - <td>0</td> | |
754 | - <td><a href="javascript:showClassDetail('c1.4',1)">详情</a></td> | |
755 | - <td> </td> | |
756 | -</tr> | |
757 | - | |
758 | -<tr id='pt1.4.1' class='hiddenRow'> | |
759 | - <td ><div class='testcase'>test_doUndo_01: 成功删除新增的一个报备单</div></td> | |
760 | - <td colspan='5' align='center'> | |
761 | - | |
762 | - <!--css div popup start--> | |
763 | - <span class='status passCase'> | |
764 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.4.1')" > | |
765 | - 通过</a></span> | |
766 | - | |
767 | - <div id='div_pt1.4.1' class="popup_window"> | |
768 | - <div style='text-align: right; color:red;cursor:pointer'> | |
769 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.4.1').style.display = 'none' " > | |
770 | - [x]</a> | |
771 | - </div> | |
772 | - <pre> | |
773 | - | |
774 | -pt1.4.1: {'code': '200', 'message': '操作成功', 'result': '操作成功', 'success': True} | |
775 | - | |
776 | - | |
777 | - </pre> | |
778 | - </div> | |
779 | - <!--css div popup end--> | |
780 | - | |
781 | - </td> | |
782 | - <td>无截图</td> | |
783 | -</tr> | |
784 | - | |
785 | -<tr class='passClass'> | |
786 | - <td>fieldConfig.test_fieldConfig.test_fieldConfig: Unittest用例结构的简单的认识</td> | |
787 | - <td>3</td> | |
788 | - <td>3</td> | |
789 | - <td>0</td> | |
790 | - <td>0</td> | |
791 | - <td><a href="javascript:showClassDetail('c1.5',3)">详情</a></td> | |
792 | - <td> </td> | |
793 | -</tr> | |
794 | - | |
795 | -<tr id='pt1.5.1' class='hiddenRow'> | |
796 | - <td ><div class='testcase'>test_fieldConfig_01: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据</div></td> | |
797 | - <td colspan='5' align='center'> | |
798 | - | |
799 | - <!--css div popup start--> | |
800 | - <span class='status passCase'> | |
801 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.1')" > | |
802 | - 通过</a></span> | |
803 | - | |
804 | - <div id='div_pt1.5.1' class="popup_window"> | |
805 | - <div style='text-align: right; color:red;cursor:pointer'> | |
806 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.1').style.display = 'none' " > | |
807 | - [x]</a> | |
808 | - </div> | |
809 | - <pre> | |
810 | - | |
811 | -pt1.5.1: setUp | |
812 | -test_01_fieldConfig | |
813 | -tearDown | |
814 | - | |
815 | - | |
816 | - </pre> | |
817 | - </div> | |
818 | - <!--css div popup end--> | |
819 | - | |
820 | - </td> | |
821 | - <td>无截图</td> | |
822 | -</tr> | |
823 | - | |
824 | -<tr id='pt1.5.2' class='hiddenRow'> | |
825 | - <td ><div class='testcase'>test_fieldConfig_02: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据11111111111111111111111111111 | |
826 | - 1234567890test1234567890test1234567890test1234567890test</div></td> | |
827 | - <td colspan='5' align='center'> | |
828 | - | |
829 | - <!--css div popup start--> | |
830 | - <span class='status passCase'> | |
831 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.2')" > | |
832 | - 通过</a></span> | |
833 | - | |
834 | - <div id='div_pt1.5.2' class="popup_window"> | |
835 | - <div style='text-align: right; color:red;cursor:pointer'> | |
836 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.2').style.display = 'none' " > | |
837 | - [x]</a> | |
838 | - </div> | |
839 | - <pre> | |
840 | - | |
841 | -pt1.5.2: setUp | |
842 | -test_02_fieldConfig | |
843 | -tearDown | |
844 | - | |
845 | - | |
846 | - </pre> | |
847 | - </div> | |
848 | - <!--css div popup end--> | |
849 | - | |
850 | - </td> | |
851 | - <td>无截图</td> | |
852 | -</tr> | |
853 | - | |
854 | -<tr id='pt1.5.3' class='hiddenRow'> | |
855 | - <td ><div class='testcase'>test_fieldConfig_03: demo</div></td> | |
856 | - <td colspan='5' align='center'> | |
857 | - | |
858 | - <!--css div popup start--> | |
859 | - <span class='status passCase'> | |
860 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.5.3')" > | |
861 | - 通过</a></span> | |
862 | - | |
863 | - <div id='div_pt1.5.3' class="popup_window"> | |
864 | - <div style='text-align: right; color:red;cursor:pointer'> | |
865 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.5.3').style.display = 'none' " > | |
866 | - [x]</a> | |
867 | - </div> | |
868 | - <pre> | |
869 | - | |
870 | -pt1.5.3: setUp | |
871 | -test_03_fieldConfig | |
872 | -tearDown | |
873 | - | |
874 | - | |
875 | - </pre> | |
876 | - </div> | |
877 | - <!--css div popup end--> | |
878 | - | |
879 | - </td> | |
880 | - <td>无截图</td> | |
881 | -</tr> | |
882 | - | |
883 | -<tr id='st1.5.4' class='none'> | |
884 | - <td ><div class='testcase'>test_fieldConfig_04</div></td> | |
885 | - <td colspan='5' align='center'> | |
886 | - | |
887 | - <!--css div popup start--> | |
888 | - <span class='status passCase'> | |
889 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_st1.5.4')" > | |
890 | - 跳过</a></span> | |
891 | - | |
892 | - <div id='div_st1.5.4' class="popup_window"> | |
893 | - <div style='text-align: right; color:red;cursor:pointer'> | |
894 | - <a onfocus='this.blur();' onclick="document.getElementById('div_st1.5.4').style.display = 'none' " > | |
895 | - [x]</a> | |
896 | - </div> | |
897 | - <pre> | |
898 | - | |
899 | -st1.5.4: 执行时强制跳过该用例 | |
900 | - | |
901 | - </pre> | |
902 | - </div> | |
903 | - <!--css div popup end--> | |
904 | - | |
905 | - </td> | |
906 | - <td>无截图</td> | |
907 | -</tr> | |
908 | - | |
909 | -<tr class='passClass'> | |
910 | - <td>fieldConfig.test_fieldConfig1.test_fieldConfig1: Unittest用例结构的简单的认识</td> | |
911 | - <td>3</td> | |
912 | - <td>3</td> | |
913 | - <td>0</td> | |
914 | - <td>0</td> | |
915 | - <td><a href="javascript:showClassDetail('c1.6',3)">详情</a></td> | |
916 | - <td> </td> | |
917 | -</tr> | |
918 | - | |
919 | -<tr id='pt1.6.1' class='hiddenRow'> | |
920 | - <td ><div class='testcase'>test_fieldConfig_6: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据</div></td> | |
921 | - <td colspan='5' align='center'> | |
922 | - | |
923 | - <!--css div popup start--> | |
924 | - <span class='status passCase'> | |
925 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.6.1')" > | |
926 | - 通过</a></span> | |
927 | - | |
928 | - <div id='div_pt1.6.1' class="popup_window"> | |
929 | - <div style='text-align: right; color:red;cursor:pointer'> | |
930 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.6.1').style.display = 'none' " > | |
931 | - [x]</a> | |
932 | - </div> | |
933 | - <pre> | |
934 | - | |
935 | -pt1.6.1: setUp | |
936 | -test_01_fieldConfig | |
937 | -tearDown | |
938 | - | |
939 | - | |
940 | - </pre> | |
941 | - </div> | |
942 | - <!--css div popup end--> | |
943 | - | |
944 | - </td> | |
945 | - <td>无截图</td> | |
946 | -</tr> | |
947 | - | |
948 | -<tr id='pt1.6.2' class='hiddenRow'> | |
949 | - <td ><div class='testcase'>test_fieldConfig_66: 区域管理-查询:正确输入所有查询条件点击【查询】可查询出符合条件的定金数据11111111111111111111111111111 | |
950 | - 1234567890test1234567890test1234567890test1234567890test</div></td> | |
951 | - <td colspan='5' align='center'> | |
952 | - | |
953 | - <!--css div popup start--> | |
954 | - <span class='status passCase'> | |
955 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.6.2')" > | |
956 | - 通过</a></span> | |
957 | - | |
958 | - <div id='div_pt1.6.2' class="popup_window"> | |
959 | - <div style='text-align: right; color:red;cursor:pointer'> | |
960 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.6.2').style.display = 'none' " > | |
961 | - [x]</a> | |
962 | - </div> | |
963 | - <pre> | |
964 | - | |
965 | -pt1.6.2: setUp | |
966 | -test_02_fieldConfig | |
967 | -tearDown | |
968 | - | |
969 | - | |
970 | - </pre> | |
971 | - </div> | |
972 | - <!--css div popup end--> | |
973 | - | |
974 | - </td> | |
975 | - <td>无截图</td> | |
976 | -</tr> | |
977 | - | |
978 | -<tr id='pt1.6.3' class='hiddenRow'> | |
979 | - <td ><div class='testcase'>test_fieldConfig_666: demo</div></td> | |
980 | - <td colspan='5' align='center'> | |
981 | - | |
982 | - <!--css div popup start--> | |
983 | - <span class='status passCase'> | |
984 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.6.3')" > | |
985 | - 通过</a></span> | |
986 | - | |
987 | - <div id='div_pt1.6.3' class="popup_window"> | |
988 | - <div style='text-align: right; color:red;cursor:pointer'> | |
989 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.6.3').style.display = 'none' " > | |
990 | - [x]</a> | |
991 | - </div> | |
992 | - <pre> | |
993 | - | |
994 | -pt1.6.3: setUp | |
995 | -test_03_fieldConfig | |
996 | -tearDown | |
997 | - | |
998 | - | |
999 | - </pre> | |
1000 | - </div> | |
1001 | - <!--css div popup end--> | |
1002 | - | |
1003 | - </td> | |
1004 | - <td>无截图</td> | |
1005 | -</tr> | |
1006 | - | |
1007 | -<tr id='st1.6.4' class='none'> | |
1008 | - <td ><div class='testcase'>test_fieldConfig_6666</div></td> | |
1009 | - <td colspan='5' align='center'> | |
1010 | - | |
1011 | - <!--css div popup start--> | |
1012 | - <span class='status passCase'> | |
1013 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_st1.6.4')" > | |
1014 | - 跳过</a></span> | |
1015 | - | |
1016 | - <div id='div_st1.6.4' class="popup_window"> | |
1017 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1018 | - <a onfocus='this.blur();' onclick="document.getElementById('div_st1.6.4').style.display = 'none' " > | |
1019 | - [x]</a> | |
1020 | - </div> | |
1021 | - <pre> | |
1022 | - | |
1023 | -st1.6.4: 执行时强制跳过该用例 | |
1024 | - | |
1025 | - </pre> | |
1026 | - </div> | |
1027 | - <!--css div popup end--> | |
1028 | - | |
1029 | - </td> | |
1030 | - <td>无截图</td> | |
1031 | -</tr> | |
1032 | - | |
1033 | -<tr class='failClass'> | |
1034 | - <td>login.test_login.test_login: 登录接口</td> | |
1035 | - <td>4</td> | |
1036 | - <td>3</td> | |
1037 | - <td>1</td> | |
1038 | - <td>0</td> | |
1039 | - <td><a href="javascript:showClassDetail('c1.7',4)">详情</a></td> | |
1040 | - <td> </td> | |
1041 | -</tr> | |
1042 | - | |
1043 | -<tr id='pt1.7.1' class='hiddenRow'> | |
1044 | - <td ><div class='testcase'>test_login_01: 账户密码都正确</div></td> | |
1045 | - <td colspan='5' align='center'> | |
1046 | - | |
1047 | - <!--css div popup start--> | |
1048 | - <span class='status passCase'> | |
1049 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.7.1')" > | |
1050 | - 通过</a></span> | |
1051 | - | |
1052 | - <div id='div_pt1.7.1' class="popup_window"> | |
1053 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1054 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.7.1').style.display = 'none' " > | |
1055 | - [x]</a> | |
1056 | - </div> | |
1057 | - <pre> | |
1058 | - | |
1059 | -pt1.7.1: {'Access-Control-Expose-Headers': 'UAP_accessToken', 'Cache-Control': 'no-store', 'Set-Cookie': 'UAP_accessToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiJXRUIiLCJuYmYiOjE2Mjc0NDI0MzYsImRhdGEiOiJ7XCJjZWxscGhvbmVcIjpcIjE2MTExMTExMTExXCIsXCJjcmVhdGVkXCI6MTYwNDkwNzk2NzAwMCxcImRlcGFydG1lbnRJZFwiOjkwLFwiZGVzY3JpcHRpb25cIjpcIjY2NlwiLFwiZW1haWxcIjpcIjY2NkBkaWxpZ3JwLmNvbVwiLFwiZmlybUNvZGVcIjpcInNnXCIsXCJmaXJtSWRcIjo4LFwiZmlybU5hbWVcIjpcIuWvv-WFieWcsOWIqeWGnOWJr-S6p-WTgeaciemZkOWFrOWPuFwiLFwiZ2VuZGVyXCI6MCxcImlkXCI6MjEwLFwibGFzdExvZ2luVGltZVwiOjE2Mjc0NDI0MzU5MjYsXCJsb2NrZWRcIjoxNjIzODMyMzQwMDAwLFwibWV0YWRhdGFcIjp7fSxcIm1vZGlmaWVkXCI6MTYyNjE2MzAwNDAwMCxcInBhc3N3b3JkXCI6XCIxODk2NUVCNzJDOTJBNTQ5RERcIixcInJlYWxOYW1lXCI6XCLlr7_lhYnmuq_mupDlk59cIixcInNlcmlhbE51bWJlclwiOlwiMDAwXCIsXCJzdGF0ZVwiOjEsXCJzeXN0ZW1UeXBlXCI6MSxcInVzZXJOYW1lXCI6XCJzZ193ZW56ZVwiLFwidXNlclR5cGVcIjoxfSIsImlzcyI6IlVBUF9BVVRIMCIsImV4cCI6MTYyNzQ0NDIzNiwiaWF0IjoxNjI3NDQyNDM2LCJqdGkiOiI1NDVkMGE3NS0wMjBlLTRhOWEtYWEwOC03M2QxM2Q2ODIwODAifQ.D1BllTdxZJCcmHzQS8NpGb75X9iRHowm0FePXDCTeoZmdJKOQ0r0lihUKZLZV9qlwdeO2wBuNdezP4wJcOp_pSy9NtUsLXtEVC5SKpfSaUSaEjJ-vK-1qwBhPj6y7sU0EJc-WAhLPPGm_OliGn-rMu_mlyxkYzTWe6QYpq-7Qq0; Max-Age=86400; Expires=Thu, 29-Jul-2021 03:20:36 GMT; Domain=diligrp.com; Path=/; HttpOnly, UAP_refreshToken=0c01a76f-8ae8-441e-83bf-67a9bbee61ad; Max-Age=86400; Expires=Thu, 29-Jul-2021 03:20:36 GMT; Domain=diligrp.com; Path=/; HttpOnly, UAP_loginPath=http%3A%2F%2Ftest.uap.diligrp.com%2Flogin%2Findex.html; Max-Age=86400; Expires=Thu, 29-Jul-2021 03:20:36 GMT; Domain=diligrp.com; Path=/; HttpOnly', 'Location': '/index/index.html', 'Content-Language': 'zh-CN', 'Content-Length': '0', 'Date': 'Wed, 28 Jul 2021 03:20:36 GMT', 'Keep-Alive': 'timeout=60', 'Connection': 'keep-alive'} | |
1060 | - | |
1061 | - | |
1062 | - </pre> | |
1063 | - </div> | |
1064 | - <!--css div popup end--> | |
1065 | - | |
1066 | - </td> | |
1067 | - <td>无截图</td> | |
1068 | -</tr> | |
1069 | - | |
1070 | -<tr id='pt1.7.2' class='hiddenRow'> | |
1071 | - <td ><div class='testcase'>test_login_02: 密码错误</div></td> | |
1072 | - <td colspan='5' align='center'> | |
1073 | - | |
1074 | - <!--css div popup start--> | |
1075 | - <span class='status passCase'> | |
1076 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.7.2')" > | |
1077 | - 通过</a></span> | |
1078 | - | |
1079 | - <div id='div_pt1.7.2' class="popup_window"> | |
1080 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1081 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.7.2').style.display = 'none' " > | |
1082 | - [x]</a> | |
1083 | - </div> | |
1084 | - <pre> | |
1085 | - | |
1086 | -pt1.7.2: <!DOCTYPE html> | |
1087 | -<html lang="zh-CN"> | |
1088 | - | |
1089 | -<head> | |
1090 | - <meta charset="UTF-8" /> | |
1091 | - <title>智慧农批经营管理平台</title> | |
1092 | - <meta name="renderer" content="webkit"> | |
1093 | - <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
1094 | - <meta name="keywords" content="uap" /> | |
1095 | - <meta name="description" content="智慧农批经营管理平台" /> | |
1096 | - <meta name="author" content="dili"> | |
1097 | - <style> | |
1098 | - /*消除google浏览器黄色框*/ | |
1099 | - input:-webkit-autofill, | |
1100 | - input:-webkit-autofill:hover, | |
1101 | - input:-webkit-autofill:focus { | |
1102 | - box-shadow:0 0 0 60px #FFF inset; | |
1103 | - -webkit-text-fill-color: #666; | |
1104 | - } | |
1105 | - </style> | |
1106 | - <!-- jquery --> | |
1107 | - <link rel="shortcut icon" href="/resources/images/icon/dili-logo.png" /> | |
1108 | - <script type="text/javascript" src="/resources/easyui/js/jquery-3.2.1.min.js"></script> | |
1109 | - <link rel="stylesheet" type="text/css" href="/resources/css/login.css"> | |
1110 | -</head> | |
1111 | - | |
1112 | -<body> | |
1113 | -<div class="loginwrap"> | |
1114 | - <div class="login"> | |
1115 | - <h2 class="login-title"><img src="/resources/images/login-title.png" alt="智慧农批经营管理平台"></h2> | |
1116 | - | |
1117 | - <form id="loginForm" class="login-form" method="post" action="/login/login.action"> | |
1118 | - <table class="userinfo"> | |
1119 | - <tbody> | |
1120 | - <tr> | |
1121 | - <td width="40" class="login-icon login-user-icon"></td> | |
1122 | - <td> | |
1123 | - <input id="userName" name="userName" value="" type="text" placeholder="请输入账号" /> | |
1124 | - </td> | |
1125 | - </tr> | |
1126 | - <tr> | |
1127 | - <td width="40" class="login-icon login-password-icon"></td> | |
1128 | - <td> | |
1129 | - <input id="password" name="password" value="" type="password" placeholder="请输入密码" /> | |
1130 | - </td> | |
1131 | - </tr> | |
1132 | - <!--<tr> | |
1133 | - <td colspan="2"><label id="msg"></label></td> | |
1134 | - </tr> | |
1135 | - <tr> | |
1136 | - <td colspan="2"> | |
1137 | - <input type="button" class="submit" value="登录" onclick="doLogin()"> | |
1138 | - </td> | |
1139 | - </tr>--> | |
1140 | - </tbody> | |
1141 | - </table> | |
1142 | - <div id="msg" class="login-msg"></div> | |
1143 | - <div class=""> | |
1144 | - <input type="button" class="submit" value="登录" onclick="doLogin()"> | |
1145 | - </div> | |
1146 | - <div style="margin-top:25px; text-align: center"> | |
1147 | - <a target="_blank" href="/static/clientDownload.html">客户端下载</a> | |
1148 | - </div> | |
1149 | - </form> | |
1150 | - <div id="errMsg"></div> | |
1151 | - </div> | |
1152 | -</div> | |
1153 | - | |
1154 | -<script type="text/javascript"> | |
1155 | - function doLogin() { | |
1156 | - var username = document.getElementById("userName").value; | |
1157 | - if (null == username || "" == username) { | |
1158 | - $("#msg").html("账号不能为空"); | |
1159 | - return false; | |
1160 | - } | |
1161 | - | |
1162 | - var password = document.getElementById("password").value; | |
1163 | - if (null == password || "" == password) { | |
1164 | - $("#msg").html("密码不能为空"); | |
1165 | - return false; | |
1166 | - } | |
1167 | - if(username.length < 2 || username.length > 20){ | |
1168 | - $("#msg").html("用户名长度不能小于2位或大于20位"); | |
1169 | - return false; | |
1170 | - } | |
1171 | - if(password.length < 6 || password.length > 20){ | |
1172 | - $("#msg").html("密码长度不能小于6位或大于20位"); | |
1173 | - return false; | |
1174 | - } | |
1175 | - if(!validUserName(username)){ | |
1176 | - $("#msg").html("用户名只能包含中文、英文、数字和下划线"); | |
1177 | - return false; | |
1178 | - } | |
1179 | - | |
1180 | - document.getElementById("loginForm").submit(); | |
1181 | - } | |
1182 | - | |
1183 | - /******************************************************************************* | |
1184 | - * 绑定指定表单元素类型的回车事件 | |
1185 | - * | |
1186 | - * @param formId | |
1187 | - * 表单 | |
1188 | - * @param element | |
1189 | - * 元素类型 (input/select/radio/...) | |
1190 | - * @param subFunction | |
1191 | - * 回车后要执行的js函数 | |
1192 | - * @param eventName | |
1193 | - * 键盘事件 (keyup/keydown/keypress...) | |
1194 | - */ | |
1195 | - function bindEnter(formId, element, subFunction, eventName) { | |
1196 | - $("#" + formId + " " + element).bind(eventName, function(event) { | |
1197 | - //回车 | |
1198 | - if (event.keyCode == '13') { | |
1199 | - subFunction(); | |
1200 | - } | |
1201 | - }); | |
1202 | - } | |
1203 | - | |
1204 | - | |
1205 | - /******************************************************************************* | |
1206 | - * 表单回车事件绑定 表单光标定位 | |
1207 | - * @param formId | |
1208 | - * @param subFunction 回车要执行的函数 | |
1209 | - */ | |
1210 | - function bindFormEvent(formId, subFunction) { | |
1211 | - if (subFunction && subFunction != null) { | |
1212 | - bindEnter(formId, 'input', subFunction, 'keyup'); | |
1213 | - } | |
1214 | - } | |
1215 | - | |
1216 | - function validUserName(value) { | |
1217 | - return /^[a-zA-Z0-9\u4e00-\u9fa5_]+$/.test(value); | |
1218 | - } | |
1219 | - | |
1220 | - $(function() { | |
1221 | - $("#msg").html("用户名或密码错误"); | |
1222 | - window.setTimeout(function() { | |
1223 | - $("#userName").focus(); | |
1224 | - }, 0); | |
1225 | - bindFormEvent("loginForm", doLogin); | |
1226 | - }); | |
1227 | -</script> | |
1228 | -</body> | |
1229 | - | |
1230 | -</html> | |
1231 | - | |
1232 | - | |
1233 | - </pre> | |
1234 | - </div> | |
1235 | - <!--css div popup end--> | |
1236 | - | |
1237 | - </td> | |
1238 | - <td>无截图</td> | |
1239 | -</tr> | |
1240 | - | |
1241 | -<tr id='pt1.7.3' class='hiddenRow'> | |
1242 | - <td><div class='testcase'>test_login_03: 账户错误</div></td> | |
1243 | - <td colspan='5' align='center'><span class='status passCase'>通过</span></td> | |
1244 | - <td>无截图</td> | |
1245 | -</tr> | |
1246 | - | |
1247 | -<tr id='ft1.7.4' class='none'> | |
1248 | - <td ><div class='testcase'>test_login_04: 账户错误</div></td> | |
1249 | - <td colspan='5' align='center'> | |
1250 | - | |
1251 | - <!--css div popup start--> | |
1252 | - <span class='status failCase'> | |
1253 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.7.4')" > | |
1254 | - 失败</a></span> | |
1255 | - | |
1256 | - <div id='div_ft1.7.4' class="popup_window"> | |
1257 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1258 | - <a onfocus='this.blur();' onclick="document.getElementById('div_ft1.7.4').style.display = 'none' " > | |
1259 | - [x]</a> | |
1260 | - </div> | |
1261 | - <pre> | |
1262 | - | |
1263 | -ft1.7.4: Traceback (most recent call last): | |
1264 | - File "E:\PycharmWorkspace\dili-api-local\testcase\login\test_login.py", line 48, in test_login_04 | |
1265 | - self.assertTrue("用户名或密码错误" in re.text) | |
1266 | -AssertionError: False is not true | |
1267 | - | |
1268 | - | |
1269 | - </pre> | |
1270 | - </div> | |
1271 | - <!--css div popup end--> | |
1272 | - | |
1273 | - </td> | |
1274 | - <td>无截图</td> | |
1275 | -</tr> | |
1276 | - | |
1277 | -<tr class='passClass'> | |
1278 | - <td>logout.test_logout.test_logout: 新增登记接口</td> | |
1279 | - <td>1</td> | |
1280 | - <td>1</td> | |
1281 | - <td>0</td> | |
1282 | - <td>0</td> | |
1283 | - <td><a href="javascript:showClassDetail('c1.8',1)">详情</a></td> | |
1284 | - <td> </td> | |
1285 | -</tr> | |
1286 | - | |
1287 | -<tr id='pt1.8.1' class='hiddenRow'> | |
1288 | - <td ><div class='testcase'>test_logout_01: 成功登出账户</div></td> | |
1289 | - <td colspan='5' align='center'> | |
1290 | - | |
1291 | - <!--css div popup start--> | |
1292 | - <span class='status passCase'> | |
1293 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.8.1')" > | |
1294 | - 通过</a></span> | |
1295 | - | |
1296 | - <div id='div_pt1.8.1' class="popup_window"> | |
1297 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1298 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.8.1').style.display = 'none' " > | |
1299 | - [x]</a> | |
1300 | - </div> | |
1301 | - <pre> | |
1302 | - | |
1303 | -pt1.8.1: {'code': '200', 'message': 'OK', 'result': 'OK', 'success': True} | |
1304 | - | |
1305 | - | |
1306 | - </pre> | |
1307 | - </div> | |
1308 | - <!--css div popup end--> | |
1309 | - | |
1310 | - </td> | |
1311 | - <td>无截图</td> | |
1312 | -</tr> | |
1313 | - | |
1314 | -<tr class='passClass'> | |
1315 | - <td>upStream.test_upStream.test_upStream: 上游企业列表查询接口</td> | |
1316 | - <td>2</td> | |
1317 | - <td>2</td> | |
1318 | - <td>0</td> | |
1319 | - <td>0</td> | |
1320 | - <td><a href="javascript:showClassDetail('c1.9',2)">详情</a></td> | |
1321 | - <td> </td> | |
1322 | -</tr> | |
1323 | - | |
1324 | -<tr id='pt1.9.1' class='hiddenRow'> | |
1325 | - <td ><div class='testcase'>test_upStream_01: 成功查询上下游企业,无过滤条件</div></td> | |
1326 | - <td colspan='5' align='center'> | |
1327 | - | |
1328 | - <!--css div popup start--> | |
1329 | - <span class='status passCase'> | |
1330 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.9.1')" > | |
1331 | - 通过</a></span> | |
1332 | - | |
1333 | - <div id='div_pt1.9.1' class="popup_window"> | |
1334 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1335 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.9.1').style.display = 'none' " > | |
1336 | - [x]</a> | |
1337 | - </div> | |
1338 | - <pre> | |
1339 | - | |
1340 | -pt1.9.1: {'total': 221, 'rows': [{'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-28 17:11:15', 'idCard': '513001199302081011', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475423', 'cardNoFrontUrl': '178e3a7d988b480d9ab573716e5a63ce', 'name': '测', 'modified': '2021-06-28 17:11:15', 'userNames': '大梦想家', 'id': 361, 'sourceUserId': 131321, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-28 14:55:44', 'businessLicenseUrl': '7e449880e6014e8698bf52fd58122023', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '1123456', 'legalPerson': '发', 'telphone': '18722222222', 'name': '天', 'modified': '2021-06-28 14:55:44', 'userNames': '雪额外大', 'id': 360, 'sourceUserId': 616, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-24 15:08:51', 'idCard': '513000119930208155', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475463', 'cardNoFrontUrl': '', 'name': '爱情', 'modified': '2021-06-24 15:08:51', 'userNames': '大梦想家', 'id': 359, 'sourceUserId': 131321, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-23 16:34:50', 'businessLicenseUrl': 'c5806086695045808e6cbdacfc9dceff', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '123456', 'legalPerson': '22', 'telphone': '15623333333', 'name': '22', 'modified': '2021-06-23 16:34:50', 'userNames': '杨茂茂', 'id': 358, 'sourceUserId': 130495, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-17 17:32:11', 'idCard': '513001199802081052', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475463', 'cardNoFrontUrl': '', 'name': '15643', 'modified': '2021-06-17 17:32:11', 'userNames': '雪碧', 'id': 357, 'sourceUserId': 131272, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-11 14:56:28', 'idCard': '513001199802081528', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380475125', 'cardNoFrontUrl': '', 'name': '杨茂茂', 'modified': '2021-06-11 14:56:28', 'userNames': '雪碧', 'id': 356, 'sourceUserId': 131272, 'upstreamType': '个人'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:07:43', 'idCard': '110101198001011339', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '13111111111', 'cardNoFrontUrl': '', 'name': '001', 'modified': '2021-06-01 15:07:43', 'userNames': '六一测试', 'id': 353, 'sourceUserId': 131214, 'upstreamType': '个人'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:07:10', 'businessLicenseUrl': '', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '333', 'legalPerson': '111', 'telphone': '222', 'name': '001', 'modified': '2021-06-01 15:07:10', 'userNames': '六一测试', 'id': 352, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '下游', '$_upORdown': 20, 'created': '2021-06-01 15:06:40', 'businessLicenseUrl': '', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '', 'legalPerson': '', 'telphone': '', 'name': '下游', 'modified': '2021-06-01 15:06:40', 'userNames': '六一测试', 'id': 351, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-06-01 15:06:09', 'businessLicenseUrl': '04b99e521f0947039e5a6497184ac941', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '111', 'legalPerson': '111', 'telphone': '13111111111', 'name': '企业002', 'modified': '2021-06-01 15:06:09', 'userNames': '六一测试', 'id': 350, 'sourceUserId': 131214, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}]} | |
1341 | - | |
1342 | - | |
1343 | - </pre> | |
1344 | - </div> | |
1345 | - <!--css div popup end--> | |
1346 | - | |
1347 | - </td> | |
1348 | - <td>无截图</td> | |
1349 | -</tr> | |
1350 | - | |
1351 | -<tr id='pt1.9.2' class='hiddenRow'> | |
1352 | - <td ><div class='testcase'>test_upStream_02: 成功查询上下游企业,加入企业/个人名称过滤条件</div></td> | |
1353 | - <td colspan='5' align='center'> | |
1354 | - | |
1355 | - <!--css div popup start--> | |
1356 | - <span class='status passCase'> | |
1357 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.9.2')" > | |
1358 | - 通过</a></span> | |
1359 | - | |
1360 | - <div id='div_pt1.9.2' class="popup_window"> | |
1361 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1362 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.9.2').style.display = 'none' " > | |
1363 | - [x]</a> | |
1364 | - </div> | |
1365 | - <pre> | |
1366 | - | |
1367 | -pt1.9.2: {'total': 5, 'rows': [{'upORdown': '上游', '$_upORdown': 10, 'created': '2021-05-10 09:42:51', 'idCard': '', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '13540782311', 'cardNoFrontUrl': '', 'name': '111', 'modified': '2021-05-10 09:42:51', 'userNames': '雪额外大', 'id': 333, 'sourceUserId': 616, 'upstreamType': '个人'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-04-07 17:32:14', 'businessLicenseUrl': 'f8eae081aa35426d975406a03a4fd062', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '111', 'legalPerson': '哈哈哈', 'telphone': '13111111111', 'name': '企业上游111', 'modified': '2021-04-07 17:32:14', 'userNames': '该喝喝', 'id': 274, 'sourceUserId': 617, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-21 11:49:27', 'businessLicenseUrl': '8478adbc99224b5f812b54b931e93e30', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': '', 'license': '18989898989', 'legalPerson': '上游111', 'telphone': '18989898989', 'name': '上游111·', 'modified': '2021-01-21 17:30:59', 'userNames': '测试二号', 'id': 173, 'sourceUserId': 519, 'manufacturingLicenseUrl': '', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-14 14:53:44', 'businessLicenseUrl': '1993ceeb24504f43b16f06028ddd7ec7', '$_upstreamType': 20, 'marketId': 8, 'operationLicenseUrl': 'dd51ffc5f20944bc9c57d64b148f4b2f', 'license': '19925360686', 'legalPerson': '法人地脉000001111111', 'telphone': '19925360686', 'name': '上游企业0011111110000111', 'modified': '2021-01-14 14:53:44', 'userNames': 'null', 'id': 148, 'sourceUserId': 500, 'manufacturingLicenseUrl': '277ea39c03f94160a2cbe6d7dc3ec4f4', 'upstreamType': '企业'}, {'upORdown': '上游', '$_upORdown': 10, 'created': '2021-01-07 14:12:31', 'idCard': '513001199302081011', '$_upstreamType': 10, 'marketId': 8, 'cardNoBackUrl': '', 'telphone': '18380454588', 'cardNoFrontUrl': '', 'name': '111', 'modified': '2021-01-07 14:12:31', 'userNames': 'null', 'id': 102, 'sourceUserId': 438, 'upstreamType': '个人'}]} | |
1368 | - | |
1369 | - | |
1370 | - </pre> | |
1371 | - </div> | |
1372 | - <!--css div popup end--> | |
1373 | - | |
1374 | - </td> | |
1375 | - <td>无截图</td> | |
1376 | -</tr> | |
1377 | - | |
1378 | -<tr class='passClass'> | |
1379 | - <td>upStream.test_upStream.test_upStream01</td> | |
1380 | - <td>1</td> | |
1381 | - <td>1</td> | |
1382 | - <td>0</td> | |
1383 | - <td>0</td> | |
1384 | - <td><a href="javascript:showClassDetail('c1.10',1)">详情</a></td> | |
1385 | - <td> </td> | |
1386 | -</tr> | |
1387 | - | |
1388 | -<tr id='pt1.10.1' class='hiddenRow'> | |
1389 | - <td ><div class='testcase'>test_demo</div></td> | |
1390 | - <td colspan='5' align='center'> | |
1391 | - | |
1392 | - <!--css div popup start--> | |
1393 | - <span class='status passCase'> | |
1394 | - <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.10.1')" > | |
1395 | - 通过</a></span> | |
1396 | - | |
1397 | - <div id='div_pt1.10.1' class="popup_window"> | |
1398 | - <div style='text-align: right; color:red;cursor:pointer'> | |
1399 | - <a onfocus='this.blur();' onclick="document.getElementById('div_pt1.10.1').style.display = 'none' " > | |
1400 | - [x]</a> | |
1401 | - </div> | |
1402 | - <pre> | |
1403 | - | |
1404 | -pt1.10.1: test_demo | |
1405 | - | |
1406 | - | |
1407 | - </pre> | |
1408 | - </div> | |
1409 | - <!--css div popup end--> | |
1410 | - | |
1411 | - </td> | |
1412 | - <td>无截图</td> | |
1413 | -</tr> | |
1414 | - | |
1415 | -<tr id='total_row'> | |
1416 | - <th>统计</th> | |
1417 | - <th>24</th> | |
1418 | - <th>23</th> | |
1419 | - <th>1</th> | |
1420 | - <th>0</th> | |
1421 | - <th> </th> | |
1422 | - <th> </th> | |
1423 | -</tr> | |
1424 | -</table> | |
1425 | -<script> | |
1426 | - showCase(0,1); | |
1427 | - drawCircle('circle1',23, 1, 0); | |
1428 | -</script> | |
1429 | - | |
1430 | -<div id='ending'> </div> | |
1431 | - | |
1432 | -</body> | |
1433 | -</html> |
report/test.log
1 | +[2021-08-11 18:36:58] [INFO] : ====================================================================================== | |
2 | +[2021-08-11 18:36:58] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
3 | +{'data': None, 'json': {'userName': 'sy_chen', 'password': 'fvHJpuXln5KKDj8+h2W5fOA03kJ6o4zrcyu5G7nC3yGAX6tcPvPs5rpAb9SuEyzCtR1rR+kaxywIYwLJ54rHhDosD6v4KClehpMJnmZeSfAX2UCpBdygJBaJM01pS/y/ejTpK6PNEWJXbGGWJk6Lzu06Nol2mqk2yaFw/w/leI0='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
4 | + | |
5 | +[2021-08-11 18:36:59] [INFO] : ====================================================================================== | |
6 | +[2021-08-11 18:36:59] [INFO] : http://test.uap.diligrp.com/api/authenticationApi/loginWeb | |
7 | +{'data': None, 'json': {'userName': 'sygangda', 'password': 'E6iV/HhVcuw1IkMrrg6UWwEjnMQrZTNA+K1uOWNzxt/DFGM3gB7Y9GV69PN7+x1sefASsHhIVnr/YRWmemMZfV45/hZ2D0CLsgJLLZi1zH60ByW1b4rQ7FDYmZb4Z2aapI/RlVlglf6aJsvbHgD4JNUiMW7ke+Q35pwP9qsWq1I='}, 'headers': {'Content-Type': 'text/plain;charset=utf-8', 'Host': 'test.uap.diligrp.com', 'Content-Length': '209', 'Expect': '100-continue'}} | |
8 | + | |
9 | +[2021-08-11 18:36:59] [INFO] : ====================================================================================== | |
10 | +[2021-08-11 18:36:59] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
11 | +{"businessCode": "jmsf"} | |
12 | +{} | |
13 | + | |
14 | +[2021-08-11 18:37:00] [INFO] : ====================================================================================== | |
15 | +[2021-08-11 18:37:00] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
16 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | |
17 | +{} | |
18 | + | |
19 | +[2021-08-11 18:37:00] [INFO] : ====================================================================================== | |
20 | +[2021-08-11 18:37:00] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
21 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
22 | +{} | |
23 | + | |
24 | +[2021-08-11 18:37:00] [INFO] : ====================================================================================== | |
25 | +[2021-08-11 18:37:00] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
26 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
27 | +{} | |
28 | + | |
29 | +[2021-08-11 18:37:00] [INFO] : ====================================================================================== | |
30 | +[2021-08-11 18:37:00] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
31 | +None | |
32 | +{'params': {'pid': 'goods_tag'}} | |
33 | + | |
34 | +[2021-08-11 18:37:00] [INFO] : ====================================================================================== | |
35 | +[2021-08-11 18:37:00] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
36 | +{"province": "C", "city": null, "area": null} | |
37 | +{} | |
38 | + | |
39 | +[2021-08-11 18:37:01] [INFO] : ====================================================================================== | |
40 | +[2021-08-11 18:37:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
41 | +None | |
42 | +{'params': {'keyword': ''}} | |
43 | + | |
44 | +[2021-08-11 18:37:01] [INFO] : ====================================================================================== | |
45 | +[2021-08-11 18:37:01] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
46 | +None | |
47 | +{'params': {'pid': 'prove_type'}} | |
48 | + | |
49 | +[2021-08-11 18:37:02] [INFO] : ====================================================================================== | |
50 | +[2021-08-11 18:37:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
51 | +None | |
52 | +{} | |
53 | + | |
54 | +[2021-08-11 18:37:02] [INFO] : ====================================================================================== | |
55 | +[2021-08-11 18:37:02] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
56 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA99341", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 14158, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-11 18:37:02", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA99341", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\u90e8", "cateId": 14158, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": 70, "id": 0, "protocolId": null, "goodsTagId": 663} | |
57 | +{} | |
58 | + | |
59 | +[2021-08-11 18:37:02] [INFO] : ====================================================================================== | |
60 | +[2021-08-11 18:37:02] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
61 | +{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108110900125'} | |
62 | +{} | |
63 | + | |
64 | +[2021-08-11 18:37:03] [INFO] : ====================================================================================== | |
65 | +[2021-08-11 18:37:03] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/3971.action | |
66 | +None | |
67 | +{} | |
68 | + | |
69 | +[2021-08-11 18:37:04] [INFO] : ====================================================================================== | |
70 | +[2021-08-11 18:37:04] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
71 | +None | |
72 | +{} | |
73 | + | |
74 | +[2021-08-11 18:37:05] [INFO] : ====================================================================================== | |
75 | +[2021-08-11 18:37:05] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
76 | +None | |
77 | +{} | |
78 | + | |
79 | +[2021-08-11 18:37:05] [INFO] : ====================================================================================== | |
80 | +[2021-08-11 18:37:05] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
81 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 3971, 'goodsId': '3985', 'number': '202108110900125', 'modified': '2021-08-11 18:37:05', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A99341', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '14158', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-11 18:37:03', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '14436', 'driverTel': '', 'grossWeightDate': '2021-08-11 18:37:03', 'tareWeightDate': '2021-08-11 18:37:03', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
82 | +{} | |
83 | + | |
84 | +[2021-08-11 18:37:06] [INFO] : ====================================================================================== | |
85 | +[2021-08-11 18:37:06] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | |
86 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=3971&goodsId=3985&number=202108110900125&modified=2021-08-11%2018%3A37%3A03&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=389&fundAccount=105847&ic=888810032426&customerName=%E9%95%BF%E6%AD%8C%E4%B9%B0%E5%AE%B6%E7%9C%81%E5%86%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%98%BF&customerPhone=18011501258&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA99341&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=14158&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-11%2018%3A37%3A03&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-11%2018%3A37%3A03&tareWeightDate=2021-08-11%2018%3A37%3A03&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=105847&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A1000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
87 | +{} | |
88 | + | |
89 | +[2021-08-11 18:37:11] [INFO] : ====================================================================================== | |
90 | +[2021-08-11 18:37:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
91 | +{"businessCode": "jmsf"} | |
92 | +{} | |
93 | + | |
94 | +[2021-08-11 18:37:11] [INFO] : ====================================================================================== | |
95 | +[2021-08-11 18:37:11] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
96 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | |
97 | +{} | |
98 | + | |
99 | +[2021-08-11 18:37:11] [INFO] : ====================================================================================== | |
100 | +[2021-08-11 18:37:11] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
101 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
102 | +{} | |
103 | + | |
104 | +[2021-08-11 18:37:11] [INFO] : ====================================================================================== | |
105 | +[2021-08-11 18:37:11] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
106 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
107 | +{} | |
108 | + | |
109 | +[2021-08-11 18:37:11] [INFO] : ====================================================================================== | |
110 | +[2021-08-11 18:37:11] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
111 | +None | |
112 | +{'params': {'pid': 'goods_tag'}} | |
113 | + | |
114 | +[2021-08-11 18:37:12] [INFO] : ====================================================================================== | |
115 | +[2021-08-11 18:37:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
116 | +{"province": "C", "city": null, "area": null} | |
117 | +{} | |
118 | + | |
119 | +[2021-08-11 18:37:12] [INFO] : ====================================================================================== | |
120 | +[2021-08-11 18:37:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
121 | +None | |
122 | +{'params': {'keyword': ''}} | |
123 | + | |
124 | +[2021-08-11 18:37:12] [INFO] : ====================================================================================== | |
125 | +[2021-08-11 18:37:12] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
126 | +None | |
127 | +{'params': {'pid': 'prove_type'}} | |
128 | + | |
129 | +[2021-08-11 18:37:13] [INFO] : ====================================================================================== | |
130 | +[2021-08-11 18:37:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
131 | +None | |
132 | +{} | |
133 | + | |
134 | +[2021-08-11 18:37:13] [INFO] : ====================================================================================== | |
135 | +[2021-08-11 18:37:13] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/sparePartsWeighSave | |
136 | +{"driverTel": "", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "itemWeight": 11, "productId": 14158, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "qty": 33, "weighRemark": null, "weight": 220, "weighmanRecord": {"grossWeight": null, "grossWeightDate": null, "newWeight": null, "tareWeight": null, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "plate": "\u5dddA63866", "carTypeId": 53, "carTypeCode": "003", "carTypeName": "\u677f\u8f66", "pathAddress": "A4-BB-6D-0A-F4-13", "entryPlateInputType": 1, "feeDepId": 0, "feeDepName": null, "dep": 58, "depName": "\u6c34\u679c\u90e8", "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "type": 2, "tradeTypeId": 70, "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "goodsTagId": 663, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "trailerNumber": "\u5dddA63866", "cateId": 14158, "productState": "1"} | |
137 | +{} | |
138 | + | |
139 | +[2021-08-11 18:37:14] [INFO] : ====================================================================================== | |
140 | +[2021-08-11 18:37:14] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
141 | +{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108110900126'} | |
142 | +{} | |
143 | + | |
144 | +[2021-08-11 18:37:14] [INFO] : ====================================================================================== | |
145 | +[2021-08-11 18:37:14] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/3972.action | |
146 | +None | |
147 | +{} | |
148 | + | |
149 | +[2021-08-11 18:37:16] [INFO] : ====================================================================================== | |
150 | +[2021-08-11 18:37:16] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
151 | +None | |
152 | +{} | |
153 | + | |
154 | +[2021-08-11 18:37:16] [INFO] : ====================================================================================== | |
155 | +[2021-08-11 18:37:16] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
156 | +None | |
157 | +{} | |
158 | + | |
159 | +[2021-08-11 18:37:16] [INFO] : ====================================================================================== | |
160 | +[2021-08-11 18:37:16] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
161 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '2', 'id': 3972, 'goodsId': '3986', 'number': '202108110900126', 'modified': '2021-08-11 18:37:16', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A63866', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '0', 'tareWeight': '0', 'weight': '220', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '14158', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-11 18:37:14', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '14436', 'driverTel': '', 'grossWeightDate': '2021-08-11 18:37:14', 'tareWeightDate': '2021-08-11 18:37:14', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '22000', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
162 | +{} | |
163 | + | |
164 | +[2021-08-11 18:37:17] [INFO] : ====================================================================================== | |
165 | +[2021-08-11 18:37:17] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doPay.action | |
166 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=2&id=3972&goodsId=3986&number=202108110900126&modified=2021-08-11%2018%3A37%3A14&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=389&fundAccount=105847&ic=888810032426&customerName=%E9%95%BF%E6%AD%8C%E4%B9%B0%E5%AE%B6%E7%9C%81%E5%86%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%98%BF&customerPhone=18011501258&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA63866&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=&storeTareWeight=&proveType=665&grossWeight=0&tareWeight=0&weight=220&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=14158&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-11%2018%3A37%3A14&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-11%2018%3A37%3A14&tareWeightDate=2021-08-11%2018%3A37%3A14&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=22000&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=105847&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A1000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
167 | +{} | |
168 | + | |
169 | +[2021-08-11 18:37:22] [INFO] : ====================================================================================== | |
170 | +[2021-08-11 18:37:22] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
171 | +{"businessCode": "jmsf"} | |
172 | +{} | |
173 | + | |
174 | +[2021-08-11 18:37:22] [INFO] : ====================================================================================== | |
175 | +[2021-08-11 18:37:22] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
176 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | |
177 | +{} | |
178 | + | |
179 | +[2021-08-11 18:37:22] [INFO] : ====================================================================================== | |
180 | +[2021-08-11 18:37:22] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
181 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
182 | +{} | |
183 | + | |
184 | +[2021-08-11 18:37:22] [INFO] : ====================================================================================== | |
185 | +[2021-08-11 18:37:22] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
186 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
187 | +{} | |
188 | + | |
189 | +[2021-08-11 18:37:22] [INFO] : ====================================================================================== | |
190 | +[2021-08-11 18:37:22] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
191 | +None | |
192 | +{'params': {'pid': 'goods_tag'}} | |
193 | + | |
194 | +[2021-08-11 18:37:23] [INFO] : ====================================================================================== | |
195 | +[2021-08-11 18:37:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
196 | +{"province": "C", "city": null, "area": null} | |
197 | +{} | |
198 | + | |
199 | +[2021-08-11 18:37:23] [INFO] : ====================================================================================== | |
200 | +[2021-08-11 18:37:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
201 | +None | |
202 | +{'params': {'keyword': ''}} | |
203 | + | |
204 | +[2021-08-11 18:37:23] [INFO] : ====================================================================================== | |
205 | +[2021-08-11 18:37:23] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
206 | +None | |
207 | +{'params': {'pid': 'prove_type'}} | |
208 | + | |
209 | +[2021-08-11 18:37:24] [INFO] : ====================================================================================== | |
210 | +[2021-08-11 18:37:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
211 | +None | |
212 | +{} | |
213 | + | |
214 | +[2021-08-11 18:37:24] [INFO] : ====================================================================================== | |
215 | +[2021-08-11 18:37:24] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
216 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA35637", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 14158, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-11 18:37:24", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA35637", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\u90e8", "cateId": 14158, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": 70, "id": 0, "protocolId": null, "goodsTagId": 663} | |
217 | +{} | |
218 | + | |
219 | +[2021-08-11 18:37:25] [INFO] : ====================================================================================== | |
220 | +[2021-08-11 18:37:25] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
221 | +{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108110900127'} | |
222 | +{} | |
223 | + | |
224 | +[2021-08-11 18:37:25] [INFO] : ====================================================================================== | |
225 | +[2021-08-11 18:37:25] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/3973.action | |
226 | +None | |
227 | +{} | |
228 | + | |
229 | +[2021-08-11 18:37:27] [INFO] : ====================================================================================== | |
230 | +[2021-08-11 18:37:27] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
231 | +None | |
232 | +{} | |
233 | + | |
234 | +[2021-08-11 18:37:27] [INFO] : ====================================================================================== | |
235 | +[2021-08-11 18:37:27] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
236 | +None | |
237 | +{} | |
238 | + | |
239 | +[2021-08-11 18:37:27] [INFO] : ====================================================================================== | |
240 | +[2021-08-11 18:37:27] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
241 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 3973, 'goodsId': '3987', 'number': '202108110900127', 'modified': '2021-08-11 18:37:27', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A35637', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '14158', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-11 18:37:25', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '14436', 'driverTel': '', 'grossWeightDate': '2021-08-11 18:37:25', 'tareWeightDate': '2021-08-11 18:37:25', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
242 | +{} | |
243 | + | |
244 | +[2021-08-11 18:37:28] [INFO] : ====================================================================================== | |
245 | +[2021-08-11 18:37:28] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
246 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=3973&goodsId=3987&number=202108110900127&modified=2021-08-11%2018%3A37%3A25&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=389&fundAccount=105847&ic=888810032426&customerName=%E9%95%BF%E6%AD%8C%E4%B9%B0%E5%AE%B6%E7%9C%81%E5%86%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%98%BF&customerPhone=18011501258&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA35637&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=14158&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-11%2018%3A37%3A25&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-11%2018%3A37%3A25&tareWeightDate=2021-08-11%2018%3A37%3A25&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=105847&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A1000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
247 | +{} | |
248 | + | |
249 | +[2021-08-11 18:37:32] [INFO] : ====================================================================================== | |
250 | +[2021-08-11 18:37:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
251 | +{"businessCode": "jmsf"} | |
252 | +{} | |
253 | + | |
254 | +[2021-08-11 18:37:32] [INFO] : ====================================================================================== | |
255 | +[2021-08-11 18:37:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
256 | +{"marketId": 9, "state": 1, "keyword": "\u852c\u83dc"} | |
257 | +{} | |
258 | + | |
259 | +[2021-08-11 18:37:32] [INFO] : ====================================================================================== | |
260 | +[2021-08-11 18:37:32] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
261 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
262 | +{} | |
263 | + | |
264 | +[2021-08-11 18:37:32] [INFO] : ====================================================================================== | |
265 | +[2021-08-11 18:37:32] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
266 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
267 | +{} | |
268 | + | |
269 | +[2021-08-11 18:37:32] [INFO] : ====================================================================================== | |
270 | +[2021-08-11 18:37:32] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
271 | +None | |
272 | +{'params': {'pid': 'goods_tag'}} | |
273 | + | |
274 | +[2021-08-11 18:37:33] [INFO] : ====================================================================================== | |
275 | +[2021-08-11 18:37:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
276 | +{"province": "C", "city": null, "area": null} | |
277 | +{} | |
278 | + | |
279 | +[2021-08-11 18:37:33] [INFO] : ====================================================================================== | |
280 | +[2021-08-11 18:37:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
281 | +None | |
282 | +{'params': {'keyword': ''}} | |
283 | + | |
284 | +[2021-08-11 18:37:33] [INFO] : ====================================================================================== | |
285 | +[2021-08-11 18:37:33] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
286 | +None | |
287 | +{'params': {'pid': 'prove_type'}} | |
288 | + | |
289 | +[2021-08-11 18:37:34] [INFO] : ====================================================================================== | |
290 | +[2021-08-11 18:37:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
291 | +None | |
292 | +{} | |
293 | + | |
294 | +[2021-08-11 18:37:34] [INFO] : ====================================================================================== | |
295 | +[2021-08-11 18:37:34] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
296 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA12345", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 14152, "productName": "\u852c\u83dc", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-11 18:37:34", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA12345", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\u90e8", "cateId": 14152, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": 70, "id": 0, "protocolId": null, "goodsTagId": 663} | |
297 | +{} | |
298 | + | |
299 | +[2021-08-11 18:37:35] [INFO] : ====================================================================================== | |
300 | +[2021-08-11 18:37:35] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/view/3974.action | |
301 | +None | |
302 | +{} | |
303 | + | |
304 | +[2021-08-11 18:37:36] [INFO] : ====================================================================================== | |
305 | +[2021-08-11 18:37:36] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCarType | |
306 | +{"businessCode": "jmsf"} | |
307 | +{} | |
308 | + | |
309 | +[2021-08-11 18:37:37] [INFO] : ====================================================================================== | |
310 | +[2021-08-11 18:37:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/cusCategory/getTree | |
311 | +{"marketId": 9, "state": 1, "keyword": "\u96ea\u83b2\u679c"} | |
312 | +{} | |
313 | + | |
314 | +[2021-08-11 18:37:37] [INFO] : ====================================================================================== | |
315 | +[2021-08-11 18:37:37] [INFO] : http://test.gateway.diligrp.com:8285/dili-uap/userApi/listByExample.api | |
316 | +{"firmCode": "sy", "departmentId": 58, "keyword": ""} | |
317 | +{} | |
318 | + | |
319 | +[2021-08-11 18:37:37] [INFO] : ====================================================================================== | |
320 | +[2021-08-11 18:37:37] [INFO] : http://test.gateway.diligrp.com:8285/assets-service/api/tradeType/query | |
321 | +{"pageNum": 100, "pageSize": 100, "marketId": 9} | |
322 | +{} | |
323 | + | |
324 | +[2021-08-11 18:37:37] [INFO] : ====================================================================================== | |
325 | +[2021-08-11 18:37:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
326 | +None | |
327 | +{'params': {'pid': 'goods_tag'}} | |
328 | + | |
329 | +[2021-08-11 18:37:37] [INFO] : ====================================================================================== | |
330 | +[2021-08-11 18:37:37] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/address | |
331 | +{"province": "C", "city": null, "area": null} | |
332 | +{} | |
333 | + | |
334 | +[2021-08-11 18:37:38] [INFO] : ====================================================================================== | |
335 | +[2021-08-11 18:37:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/dep | |
336 | +None | |
337 | +{'params': {'keyword': ''}} | |
338 | + | |
339 | +[2021-08-11 18:37:38] [INFO] : ====================================================================================== | |
340 | +[2021-08-11 18:37:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/jmsf/query/listCodeByPid | |
341 | +None | |
342 | +{'params': {'pid': 'prove_type'}} | |
343 | + | |
344 | +[2021-08-11 18:37:38] [INFO] : ====================================================================================== | |
345 | +[2021-08-11 18:37:38] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/appCommon/duplicateToken.action | |
346 | +None | |
347 | +{} | |
348 | + | |
349 | +[2021-08-11 18:37:39] [INFO] : ====================================================================================== | |
350 | +[2021-08-11 18:37:39] [INFO] : http://test.gateway.diligrp.com:8285/jmsf-web/api/entrace/wholeCarWeighSave | |
351 | +{"carTypeCode": "003", "carTypeId": 53, "carTypeName": "\u677f\u8f66", "carTypeWeight": 333, "plate": "\u5dddA68670", "inGreeterId": 223, "inGreeterName": "\u6d4b\u8bd5\u6c88\u9633", "productId": 14158, "productName": "\u96ea\u83b2\u679c", "proveTypeCode": 665, "proveTypeName": "\u98df\u54c1\u5b89\u5168", "weighRemark": "\u5907\u6ce8", "weighmanRecord": {"grossWeight": 432, "grossWeightDate": "2021-08-11 18:37:39", "newWeight": 99, "tareWeight": 333, "tareWeightDate": null, "weighImgs": []}, "productCode": null, "trailerNumber": "\u5dddA68670", "pathAddress": "A4-BB-6D-0A-F4-13", "haveTruckWeight": false, "source": 4, "entryPlateInputType": 1, "dep": 58, "depName": "\u6c34\u679c\u90e8", "cateId": 14158, "notice": 0, "backSkinTwo": -1, "recordOriginId": 0, "recordOriginName": null, "recordProductId": 0, "recordProductName": null, "recordWeight": null, "codeIc": null, "codeId": 0, "difference": 0, "bindRecordSign": 0, "recordDesc": null, "hasCodeItems": false, "customerId": 0, "customerName": "", "driverIc": null, "driverName": null, "totalPrice": null, "originId": 500101, "origin": "\u4e07\u5dde\u533a", "originCode": "023", "tradeType": "9001", "tradeTypeName": "\u6c88\u96331\u53f7", "weight": 2.0, "pwd": "", "type": 1, "ic": "", "boothNumber": "210728154359", "productState": "1", "accountId": 0, "passCheckId": 0, "passCheckName": null, "tradeTypeId": 70, "id": 0, "protocolId": null, "goodsTagId": 663} | |
352 | +{} | |
353 | + | |
354 | +[2021-08-11 18:37:39] [INFO] : ====================================================================================== | |
355 | +[2021-08-11 18:37:39] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/listPage.action | |
356 | +{'rows': '10', 'page': '1', 'sort': 'et.created', 'order': 'desc', 'metadata[created]': '{"provider": "datetimeProvider", "index": 10, "field": "created"}', 'metadata[totalPrice]': '{"provider": "moneyProvider", "index": 20, "field": "totalPrice"}', 'metadata[paymentTime]': '{"provider": "datetimeProvider", "index": 30, "field": "paymentTime"}', 'metadata[type]': '{"provider": "entranceFeeBillTypeProvider", "index": 40, "field": "type"}', 'metadata[status]': '{"provider": "entranceFeeBillStateProvider", "index": 50, "field": "status"}', 'attr': 'number', 'attrValue': '202108110900129'} | |
357 | +{} | |
358 | + | |
359 | +[2021-08-11 18:37:40] [INFO] : ====================================================================================== | |
360 | +[2021-08-11 18:37:40] [INFO] : http://test.jmsf.diligrp.com:8385/entranceFeeBill/pay/3975.action | |
361 | +None | |
362 | +{} | |
363 | + | |
364 | +[2021-08-11 18:37:41] [INFO] : ====================================================================================== | |
365 | +[2021-08-11 18:37:41] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/icCheck?ic=888810032426 | |
366 | +None | |
367 | +{} | |
368 | + | |
369 | +[2021-08-11 18:37:42] [INFO] : ====================================================================================== | |
370 | +[2021-08-11 18:37:42] [INFO] : http://test.jmsf.diligrp.com:8385/api/jmsf/ajax/city/?name=万州&query=万州 | |
371 | +None | |
372 | +{} | |
373 | + | |
374 | +[2021-08-11 18:37:42] [INFO] : ====================================================================================== | |
375 | +[2021-08-11 18:37:42] [INFO] : http://test.jmsf.diligrp.com:8385/calculate/index.action | |
376 | +{'protocolId': '', 'pwd': '', 'clientRedirectTag': '', 'viewType': 'pay', 'optType': '0', 'optUrl': '', 'correctInfo': '1', 'weightType': '1', 'id': 3975, 'goodsId': '3989', 'number': '202108110900129', 'modified': '2021-08-11 18:37:42', 'status': '2', 'source': '1', 'updateFeeItems': '', 'correctDiscount': '1', 'totalAmount': '', 'customerId': '0', 'fundAccount': '', 'accountId': '', 'ic': '', 'customerName': '', 'customerPhone': '', 'payway': '刷卡', 'plate': '川A68670', 'autocomplete-cartype': '003(板车)', 'carTypeName': '板车', 'carTypeCode': '003', 'carTypeId': '53', 'carTypeWeight': '333', 'storeTareWeight': '', 'proveType': '665', 'grossWeight': '432', 'tareWeight': '333', 'weight': '99', 'goodsNum': '', 'itemWeight': '', 'productPrice': '1.00000', 'unitPrice': '100.0', 'depName': '水果部', 'calcDepId': '58', 'regionName': '', 'regionId': '0', 'productName': '雪莲果', 'productId': '14158', 'productArea': '重庆,重庆市,万州区', 'parentId': '', 'levelType': '', 'originId': 500101, 'tradeTypeId': '70', 'chargeTotalAmount': '', 'chargeTotalAmountYuan': '', 'freezeMoneySymbol': '', 'comparisonFreezeAmount': '', 'created': '2021-08-11 18:37:40', 'remark': 'false', 'goodsTagIds': '663', 'shareRatio': '0', 'handlingTeam': '', 'handlingRatio': '', 'handActualAmount': '', 'handManageAmount': '', 'handCollectionAmount': '', 'receivableAmount': '', 'categoryName': '水果', 'categoryId': '14436', 'driverTel': '', 'grossWeightDate': '2021-08-11 18:37:40', 'tareWeightDate': '2021-08-11 18:37:40', 'grossPathName': '', 'grossPathId': '', 'tarePathId': '', 'goodsRemark': '', 'inGreeterName': '测试沈阳', 'inGreeterId': '223', 'outGreeterId': '', 'sumPrice': '9900', 'shipperName': '', 'shipperId': '', 'shipperPhone': '', 'feeDepName': '', 'calcFeeDepId': ''} | |
377 | +{} | |
378 | + | |
379 | +[2021-08-11 18:37:42] [INFO] : ====================================================================================== | |
380 | +[2021-08-11 18:37:42] [INFO] : http://test.jmsf.diligrp.com:8385/entranceTrade/doFreeze.action | |
381 | +protocolId=&pwd=111111&clientRedirectTag=&viewType=pay&optType=0&optUrl=&correctInfo=1&weightType=1&id=3975&goodsId=3989&number=202108110900129&modified=2021-08-11%2018%3A37%3A40&status=2&source=1&updateFeeItems=&correctDiscount=1&totalAmount=800&customerId=389&fundAccount=105847&ic=888810032426&customerName=%E9%95%BF%E6%AD%8C%E4%B9%B0%E5%AE%B6%E7%9C%81%E5%86%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%98%BF&customerPhone=18011501258&payway=%E5%88%B7%E5%8D%A1&plate=%E5%B7%9DA68670&autocomplete-cartype=003%28%E6%9D%BF%E8%BD%A6%29&carTypeName=%E6%9D%BF%E8%BD%A6&carTypeCode=003&carTypeId=53&carTypeWeight=333&storeTareWeight=&proveType=665&grossWeight=432&tareWeight=333&weight=99&goodsNum=&itemWeight=&productPrice=1.00000&unitPrice=100.0&depName=%E6%B0%B4%E6%9E%9C%E9%83%A8&calcDepId=58&dep=58®ionName=®ionId=72&productName=%E9%9B%AA%E8%8E%B2%E6%9E%9C&productId=14158&productArea=%E9%87%8D%E5%BA%86%2C%E9%87%8D%E5%BA%86%E5%B8%82%2C%E4%B8%87%E5%B7%9E%E5%8C%BA&parentId=&levelType=&originId=500101&tradeTypeId=70&chargeTotalAmount=800&chargeTotalAmountYuan=8&freezeMoneySymbol=13&comparisonFreezeAmount=13&created=2021-08-11%2018%3A37%3A40&remark=&goodsTagIds=663&marketFlag=sy&totalMoney=800&receivable=1300&collectionPrice=0&discountAmount=500&handReceivableAmount=0&itemReceivableAmount=1300&shareRatio=0&handlingTeam=&handActualAmount=0&handManageAmount=0&handCollectionAmount=0&receivableAmount=1300&categoryName=%E6%B0%B4%E6%9E%9C&categoryId=53&driverTel=&grossWeightDate=2021-08-11%2018%3A37%3A40&tareWeightDate=2021-08-11%2018%3A37%3A40&grossPathName=&grossPathId=&tarePathId=&goodsRemark=&inGreeterName=&inGreeterId=0&outGreeterId=&sumPrice=9900&shipperName=&shipperId=&shipperPhone=&feeDepName=&calcFeeDepId=&feeDepId=&accountId=105847&correctDiscount=1&billItems=&billItemsDic=&billItemCheckIds=103&103=10.00&billItems=%7B%22discount%22%3A500%2C%22id%22%3A103%2C%22name%22%3A%22%E4%BA%A4%E6%98%93%E7%AE%A1%E7%90%86%E8%B4%B9%22%2C%22receivable%22%3A1000%2C%22require%22%3A1%7D&billItemDicCheckIds=105&billItemsDic=%7B%22discount%22%3A0%2C%22id%22%3A105%2C%22name%22%3A%22%E4%BC%98%E6%83%A0%E6%94%B6%E8%B4%B9%22%2C%22receivable%22%3A500%2C%22require%22%3A0%7D&billItemCheckIds=106&106=3.00&billItems=%7B%22discount%22%3A0%2C%22id%22%3A106%2C%22name%22%3A%22%E6%A3%80%E6%B5%8B%E8%B4%B9%22%2C%22receivable%22%3A300%2C%22require%22%3A1%7D | |
382 | +{} | |
383 | + | ... | ... |
testcase/FeedbackCustomerController/test_fc_add.py
... | ... | @@ -11,17 +11,20 @@ class test_fc_add(unittest.TestCase): |
11 | 11 | "返还人管理——新增返还人" |
12 | 12 | @classmethod |
13 | 13 | def setUpClass(cls): |
14 | - # my.post(url=fc.url, headers=fc.header, data=fc.body.encode('utf-8')) | |
15 | 14 | pass |
15 | + # def setUp(self): | |
16 | + # | |
16 | 17 | |
17 | 18 | def test_fc_add_01(self): |
18 | - body = fc.body.replace("888810054630","888810054630").replace("你好",ra.name()).replace("relation\ | |
19 | - CardTemp=888810054630","relationCardTemp=888810054630").replace("relationalCard[0].cardNumber\ | |
20 | - =888810054630","relationalCard[0].cardNumber=888810054630") | |
19 | + body = fc.body.replace("18828281176",ra.phone_number()).\ | |
20 | + replace("你好",ra.name()).\ | |
21 | + replace("888810054630","888810054630") | |
22 | + # replace("relationCardTemp=888810054630","relationCardTemp=888810054630").\ | |
23 | + # replace("relationalCard[0].cardNumber=888810054630","relationalCard[0].cardNumber=888810054630") | |
21 | 24 | # print(body) |
22 | 25 | re = sy1.post(url=fc.url, headers=fc.header, data=body.encode('utf-8')) |
23 | 26 | # print(re.headers) |
24 | - # print(re.json()) | |
27 | + print(re.json()) | |
25 | 28 | self.assertTrue("操作成功" in str(re.json())) |
26 | 29 | return re |
27 | 30 | ... | ... |
testcase/FeedbackCustomerController/test_fc_edit.py
... | ... | @@ -3,20 +3,41 @@ import urllib3 |
3 | 3 | from commons.MySession import my,sy1 |
4 | 4 | from commons.api.fc_edit import fc_edit |
5 | 5 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) |
6 | - | |
6 | +from commons.Faker import random_data | |
7 | +from commons.api.fc_add import fc_add | |
8 | +ra = random_data() | |
9 | +fca = fc_add() | |
10 | +import commons.ConfigDB as db | |
7 | 11 | |
8 | 12 | fc=fc_edit() |
9 | 13 | class test_fc_edit(unittest.TestCase): |
10 | 14 | "返还人管理——修改返还人" |
11 | 15 | @classmethod |
12 | 16 | def setUpClass(cls): |
13 | - # my.post(url=fc.url, headers=fc.header, data=fc.body.encode('utf-8')) | |
14 | 17 | pass |
18 | + def setUp(self): | |
19 | + body = fc.body.replace("18828281176", ra.phone_number()). \ | |
20 | + replace("你好", ra.name()). \ | |
21 | + replace("888810054630", "888810054630") | |
15 | 22 | |
23 | + # body = fca.body.replace("888810054630", "888810054630"). \ | |
24 | + # replace("你好", ra.name()). \ | |
25 | + # replace("relationCardTemp=888810054630", "relationCardTemp=888810054630"). \ | |
26 | + # replace("relationalCard[0].cardNumber=888810054630", "relationalCard[0].cardNumber=888810054630") | |
27 | + # print(body) | |
28 | + re = sy1.post(url=fc.url, headers=fc.header, data=body.encode('utf-8')) | |
29 | + self.mesg = db.mysql_selectOne('''SELECT id,name,mobile,card_number | |
30 | +FROM `dili_jmsf`.`feedback_customer` WHERE market_id = '''+str(sy1.user["sy_user01"]["firmId"])+''' ORDER BY `id` DESC LIMIT 1''') | |
31 | + # print(self.mesg) | |
16 | 32 | def test_fc_edit_01(self): |
33 | + "id=40&name=农交&mobile=18828281176&cardNumber=888810054630&\ | |
34 | + relationCardTemp=210720133001&relationalCard[0].cardNumber=210720131533" | |
17 | 35 | |
18 | - body = fc.body.replace("relationalCard[0].cardNumber=210720131533",\ | |
19 | - "relationalCard[0].cardNumber=210720125142") | |
36 | + body = fc.body.replace("id=40","id="+str(self.mesg[0])).\ | |
37 | + replace("农交",str(self.mesg[1])).\ | |
38 | + replace("18828281176",str(self.mesg[2])).\ | |
39 | + replace("888810054630",str(self.mesg[3])).\ | |
40 | + replace("relationalCard[0].cardNumber=210720131533","relationalCard[0].cardNumber=210720125142") | |
20 | 41 | # print(body) |
21 | 42 | re = sy1.post(url=fc.url, headers=fc.header, data=body.encode('utf-8')) |
22 | 43 | # print(re.headers) | ... | ... |
testcase/FeedbackCustomerController/test_fc_view.py
... | ... | @@ -9,27 +9,24 @@ ad = fc_add() |
9 | 9 | vi = fc_view() |
10 | 10 | |
11 | 11 | class test_fc_view(unittest.TestCase): |
12 | - "查看返还人" | |
12 | + "返还人管理——查看返还人" | |
13 | 13 | |
14 | 14 | @classmethod |
15 | 15 | def setUpClass(cls): |
16 | - # # 通过字段配置接口提前配置新增页的字段配置 | |
17 | - # my.post(url = ad.url, headers = ad.header, data = ad.body.encode('utf-8')) | |
18 | 16 | pass |
19 | 17 | |
20 | 18 | def setUp(self): |
21 | - # 准备数据 | |
22 | - my.post(url=ad.url, headers=ad.header, data=ad.body.encode('utf-8')) | |
23 | 19 | # 获取数据:从MYSQL获取新增返还人的id号 |
24 | - self.code = db.mysql_selectOne("SELECT * FROM `dili_jmsf`.`feedback_customer` ORDER BY `id` DESC LIMIT 1")[0] | |
25 | - # print("查询出返还人id", self.code) | |
20 | + self.code = db.mysql_selectOne('''SELECT * FROM `dili_jmsf`.`feedback_customer` WHERE | |
21 | + market_id = '''+str(sy1.user["sy_user01"]["firmId"])+''' ORDER BY `id` DESC LIMIT 1''')[0] | |
22 | + | |
26 | 23 | |
27 | 24 | # @unittest.case_mark(my.mark()) |
28 | 25 | def test_fc_view_01(self): |
29 | - "返还人管理——查看返还人" | |
26 | + | |
30 | 27 | # 请求url中的需要替换为新增返还人的id |
31 | 28 | url = vi.url.replace("40", str(self.code)) |
32 | - print("数据处理后的url", url) | |
29 | + # print("数据处理后的url", url) | |
33 | 30 | # 进行GET请求 |
34 | 31 | re = sy1.get(url=url, headers=vi.header) |
35 | 32 | # 打印请求结果(可删除该代码,一般只在调试时使用) | ... | ... |
testcase/FeedbackCustomerController/test_feedback_customer_disable.py
1 | 1 | import unittest |
2 | 2 | import urllib3 |
3 | -from commons.MySession import sy1 | |
3 | +from commons.MySession import my,sy1 | |
4 | 4 | from commons.api.feedback_customer_disable import feedback_customer_disable |
5 | 5 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) |
6 | 6 | fcd = feedback_customer_disable() |
... | ... | @@ -13,7 +13,9 @@ class test_feedback_customer_disable(unittest.TestCase): |
13 | 13 | pass |
14 | 14 | |
15 | 15 | def setUp(self): |
16 | - self.ids = db.mysql_selectOne("SELECT id FROM `dili_jmsf`.`feedback_customer` WHERE `status` = '1' ORDER BY `id` DESC LIMIT 1")[0] | |
16 | + self.ids = db.mysql_selectOne('''SELECT id FROM `dili_jmsf`.`feedback_customer` | |
17 | + WHERE `status` = '1' and market_id = '''+str(sy1.user["sy_user01"]["firmId"])+''' | |
18 | + ORDER BY `id` DESC LIMIT 1''')[0] | |
17 | 19 | # print("查询出返还人id", self.id) |
18 | 20 | |
19 | 21 | def test_feedback_customer_disable_01(self): | ... | ... |
testcase/FeedbackCustomerController/test_feedback_customer_enable.py
... | ... | @@ -15,7 +15,9 @@ class test_feedback_customer_enable(unittest.TestCase): |
15 | 15 | pass |
16 | 16 | |
17 | 17 | def setUp(self): |
18 | - self.ids = db.mysql_selectOne("SELECT id FROM `dili_jmsf`.`feedback_customer` WHERE `status` = '2' ORDER BY `id` DESC LIMIT 1")[0] | |
18 | + self.ids = db.mysql_selectOne(''' | |
19 | + SELECT id FROM `dili_jmsf`.`feedback_customer` WHERE `status` = '2' and | |
20 | + market_id='''+str(sy1.user["sy_user01"]["firmId"])+''' ORDER BY `id` DESC LIMIT 1''')[0] | |
19 | 21 | print(self.ids) |
20 | 22 | def test_feedback_customer_enable_01(self): |
21 | 23 | ... | ... |
testcase/FeedbackCustomerController/test_feedback_customer_query.py
... | ... | @@ -4,6 +4,7 @@ from commons.MySession import my,sy1 |
4 | 4 | from commons.api.feedback_customer_query import feedback_customer_query |
5 | 5 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) |
6 | 6 | import datetime |
7 | +import commons.ConfigDB as db | |
7 | 8 | fcq = feedback_customer_query() |
8 | 9 | |
9 | 10 | class test_feedback_customer_query(unittest.TestCase): |
... | ... | @@ -11,17 +12,19 @@ class test_feedback_customer_query(unittest.TestCase): |
11 | 12 | @classmethod |
12 | 13 | def setUpClass(cls): |
13 | 14 | pass |
14 | - | |
15 | + def setUp(self): | |
16 | + self.name1 = db.mysql_selectOne('''SELECT name FROM `dili_jmsf`.`feedback_customer` | |
17 | + WHERE market_id = ''' + str(sy1.user["sy_user01"]["firmId"]) + ''' ORDER BY `id` DESC LIMIT 1''')[0] | |
15 | 18 | def test_feedback_customer_query_01(self): |
16 | 19 | print(fcq.url) |
17 | - body = fcq.body.replace("史芳", "孟莹").\ | |
20 | + body = fcq.body.replace("潘婷婷", str(self.name1)).\ | |
18 | 21 | replace("2021-07-02 00:00:00",(datetime.datetime.now() - datetime.timedelta(days = 30)).strftime("%Y-%m-%d %H:%M:%S")).\ |
19 | 22 | replace("2021-08-03 23:59:59",datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) |
20 | - | |
21 | - re = sy1.post(url = fcq.url, data = body.encode('utf-8'),headers = fcq.header) | |
23 | + # print(body) | |
24 | + re = sy1.post(url = fcq.url, data = body.replace("\n","").encode('utf-8'),headers = fcq.header,proxies = my.proxies) | |
22 | 25 | # print(re.headers) |
23 | - # print(re.json()) | |
24 | - self.assertTrue("孟莹" in str(re.json())) | |
26 | + # print(re.text) | |
27 | + self.assertTrue(str(self.name1) in str(re.text)) | |
25 | 28 | |
26 | 29 | @classmethod |
27 | 30 | def tearDownClass(cls): | ... | ... |
testcase/FeedbackOrderController/test_feedback_order_settlement.py
... | ... | @@ -37,8 +37,9 @@ class test_feedback_order_settlement(unittest.TestCase): |
37 | 37 | self.cardNumber = re2.json()["cardNumber"] |
38 | 38 | |
39 | 39 | def test_feedback_order_settlement_01(self): |
40 | - body = fos.body.replace("id=25","id="+str(self.idd)).replace("888810057654",str(self.cardNumber))\ | |
41 | - .replace("settleAmount=2","settleAmount="+str(self.Amount)).\ | |
40 | + body = fos.body.replace("id=25","id="+str(self.idd)).\ | |
41 | + replace("888810057654",str(self.cardNumber)).\ | |
42 | + replace("settleAmount=2","settleAmount="+str(self.Amount)).\ | |
42 | 43 | replace("ids=12034","ids="+str(self.ids)).\ |
43 | 44 | replace("feedbackCustomerId=25","feedbackCustomerId="+str(self.idd)).\ |
44 | 45 | replace("feedbackCustomerName=验证员工推送到CRM","feedbackCustomerName="+str(self.name)).\ | ... | ... |
testcase/feedbackOrderController_settlementlist/feedbackOrderController_querySumAmount.py
... | ... | @@ -15,8 +15,8 @@ class test_feedbackOrderController_querySumAmount(unittest.TestCase): |
15 | 15 | pass |
16 | 16 | |
17 | 17 | def test_feedbackOrderController_querySumAmount_01(self): |
18 | - body = qsa.body.replace("2021-07-05 00:00:00", (datetime.datetime.now() - datetime.timedelta(days = 30)).strftime("%Y-%m-%d %H:%M:%S"))\ | |
19 | - .replace("2021-08-05 09:46:25", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) | |
18 | + body = qsa.body.replace("2021-07-05 00:00:00", (datetime.datetime.now() - datetime.timedelta(days = 30)).strftime("%Y-%m-%d %H:%M:%S")).\ | |
19 | + replace("2021-08-05 09:46:25", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) | |
20 | 20 | |
21 | 21 | re = sy1.post(url=qsa.url, data=body, headers=qsa.header) |
22 | 22 | self.assertEqual(re.status_code, 200) | ... | ... |
testcase/feedbackOrderController_settlementlist/test_feedbackOrderController_settlementlist.py
... | ... | @@ -16,9 +16,9 @@ class test_feedbackOrderController_settlementlist(unittest.TestCase): |
16 | 16 | pass |
17 | 17 | |
18 | 18 | def test_feedbackOrderController_settlementlist_01(self): |
19 | - body = focsl.body.replace("2021-08-04 00:00:00", (datetime.datetime.now() - datetime.timedelta(days = 30)).strftime("%Y-%m-%d %H:%M:%S"))\ | |
20 | - .replace("2021-08-05 23:59:59", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))\ | |
21 | - .replace("feedbackCustomerId=25", "feedbackCustomerId=26") | |
19 | + body = focsl.body.replace("2021-08-04 00:00:00", (datetime.datetime.now() - datetime.timedelta(days = 30)).strftime("%Y-%m-%d %H:%M:%S")).\ | |
20 | + replace("2021-08-05 23:59:59", datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")).\ | |
21 | + replace("feedbackCustomerId=25", "feedbackCustomerId=26") | |
22 | 22 | print(body) |
23 | 23 | re = sy1.post(url=focsl.url, data=body, headers=focsl.header) |
24 | 24 | # print(re.json()) | ... | ... |
testcase/test_SJ/__init__.py
0 → 100644
testcase/test_SJ/test_SJ.py
0 → 100644
1 | +# -*- coding: utf-8 -*- | |
2 | + | |
3 | +# @Time : 2021/8/11 16:35 | |
4 | +# @Author : Ljq | |
5 | +# @File : test_SJ.py | |
6 | +# @Software: PyCharm | |
7 | + | |
8 | +""" | |
9 | + | |
10 | +""" | |
11 | + | |
12 | +import json | |
13 | +import unittest | |
14 | +from commons.scripts.readConf import rC | |
15 | +from commons.api import zcApi as zcA | |
16 | +from commons.api import entranceFeeBillList as eFBL | |
17 | +from commons.api import sjApi | |
18 | +import time,random | |
19 | + | |
20 | +class test_ZCCreate(unittest.TestCase): | |
21 | + """整车-创建整车进门单""" | |
22 | + def setUp(self) -> None: | |
23 | + pass | |
24 | + | |
25 | + def tearDown(self) -> None: | |
26 | + pass | |
27 | + | |
28 | + | |
29 | + @classmethod | |
30 | + def setUpClass(cls) -> None: | |
31 | + cls.gatewayHost = rC.returnOptionsItems("host", "gatewayHost") | |
32 | + cls.jmsfHost = rC.returnOptionsItems("host", "jmsfHost") | |
33 | + | |
34 | + @classmethod | |
35 | + def tearDownClass(cls) -> None: | |
36 | + pass | |
37 | + | |
38 | + def test_createSJ(self): | |
39 | + # 依赖数据 | |
40 | + plate = f"川A{random.randint(10000, 99999)}" | |
41 | + trailerNumber = plate | |
42 | + productState = "1" | |
43 | + itemWeight = "10" | |
44 | + qty = "22" | |
45 | + | |
46 | + | |
47 | + # 获取车型 | |
48 | + carType = zcA.get_carType(host=self.gatewayHost) | |
49 | + print(carType.text) | |
50 | + print(carType.json()["data"][0]) | |
51 | + carTypeCode = carType.json()["data"][0]["code"] | |
52 | + carTypeId = carType.json()["data"][0]["id"] | |
53 | + carTypeName = carType.json()["data"][0]["carTypeName"] | |
54 | + | |
55 | + # 获取商品 | |
56 | + categoryByCondition = zcA.get_listCategoryByCondition(host=self.gatewayHost) | |
57 | + print(categoryByCondition.json()) | |
58 | + cateId = categoryByCondition.json()["data"][0]["id"] | |
59 | + productId = categoryByCondition.json()["data"][0]["id"] | |
60 | + productName = categoryByCondition.json()["data"][0]["name"] | |
61 | + | |
62 | + # 获取接车员 | |
63 | + listByExample = zcA.get_listByExample(host=self.gatewayHost) | |
64 | + print(listByExample.json()) | |
65 | + inGreeterId = listByExample.json()["data"][0]["id"] | |
66 | + inGreeterName = listByExample.json()["data"][0]["realName"] | |
67 | + | |
68 | + # 获取交易类型 | |
69 | + transactionType = zcA.query_transactionType(host=self.gatewayHost) | |
70 | + print(transactionType.json()) | |
71 | + tradeType = transactionType.json()["rows"][0]["code"] | |
72 | + tradeTypeId = transactionType.json()["rows"][0]["id"] | |
73 | + tradeTypeName = transactionType.json()["rows"][0]["name"] | |
74 | + | |
75 | + # 获取货物标签 | |
76 | + goodsTag = zcA.get_goodsTag(host=self.gatewayHost) | |
77 | + print(goodsTag.json()) | |
78 | + goodsTagId = goodsTag.json()["data"][0]["id"] | |
79 | + | |
80 | + # 产地信息获取 | |
81 | + address = zcA.get_address(host=self.gatewayHost) | |
82 | + print(address.json()) | |
83 | + originId = address.json()["data"][0]["id"] | |
84 | + origin = address.json()["data"][0]["name"] | |
85 | + originCode = address.json()["data"][0]["cityCode"] | |
86 | + | |
87 | + # 查询部门信息 | |
88 | + depRes = zcA.get_dep(host=self.gatewayHost) | |
89 | + print(depRes.json()) | |
90 | + feeDepId = depRes.json()["data"][0]["id"] | |
91 | + feeDepName = depRes.json()["data"][0]["name"] | |
92 | + | |
93 | + # 获取证明类型 | |
94 | + proveType = zcA.get_proveType(host=self.gatewayHost) | |
95 | + print(proveType.json()) | |
96 | + proveTypeCode = proveType.json()["data"][0]["id"] | |
97 | + proveTypeName = proveType.json()["data"][0]["name"] | |
98 | + | |
99 | + # 获取防重token | |
100 | + duplicateTokenRes = zcA.get_duplicateToken(host=self.gatewayHost) | |
101 | + print(duplicateTokenRes.json()) | |
102 | + duplicateToken = duplicateTokenRes.json()["data"] | |
103 | + | |
104 | + # 重量信息准备 | |
105 | + weight = int(itemWeight) * int(qty) | |
106 | + | |
107 | + # 创建进门单 | |
108 | + cre_res = sjApi.create_sparePartsWeighSave(host=self.gatewayHost, duplicateToken=duplicateToken, | |
109 | + carTypeCode=carTypeCode, carTypeId=carTypeId, | |
110 | + carTypeName=carTypeName, plate=plate, weight=weight, | |
111 | + productId=productId, productName=productName, proveTypeCode=proveTypeCode, | |
112 | + proveTypeName=proveTypeName, trailerNumber=trailerNumber, | |
113 | + depName=feeDepName, | |
114 | + cateId=cateId, originId=originId, origin=origin, originCode=originCode, | |
115 | + tradeType=tradeType, tradeTypeName=tradeTypeName, | |
116 | + productState=productState, | |
117 | + tradeTypeId=tradeTypeId, goodsTagId=goodsTagId, inGreeterId=inGreeterId, | |
118 | + inGreeterName=inGreeterName, dep=feeDepId) | |
119 | + print(cre_res.json()) | |
0 | 120 | \ No newline at end of file | ... | ... |
testcase/test_ZC/demo.py
... | ... | @@ -7,4 +7,35 @@ |
7 | 7 | |
8 | 8 | """ |
9 | 9 | |
10 | -""" | |
11 | 10 | \ No newline at end of file |
11 | +""" | |
12 | + | |
13 | + | |
14 | + | |
15 | +a = ["protocolId","pwd","clientRedirectTag","viewType","optType","optUrl","correctInfo","weightType","id","goodsId","number","modified","status","source","updateFeeItems","correctDiscount","totalAmount","customerId","fundAccount","accountId","ic","customerName","customerPhone","payway","plate","autocomplete-cartype","carTypeName","carTypeCode","carTypeId","carTypeWeight","storeTareWeight","proveType","grossWeight","tareWeight","weight","goodsNum","itemWeight","productPrice","unitPrice","depName","dep","regionId","productName","productId","productArea","originId","tradeTypeId","chargeTotalAmount","chargeTotalAmountYuan","freezeMoneySymbol","comparisonFreezeAmount","created","remark","goodsTagIds","shareRatio","handlingTeam","steveTeamId","handlingRatio","handActualAmount","handManageAmount","handCollectionAmount","marketFlag","totalMoney","receivable","collectionPrice","discountAmount","handReceivableAmount","itemReceivableAmount","correctDiscount","billItems","billItemsDic","billItemCheckIds","103","billItems","billItemDicCheckIds","billItemsDic","billItemCheckIds","106","billItems","receivableAmount","categoryName","categoryId","driverTel","grossWeightDate","tareWeightDate","grossPathName","grossPathId","tarePathId","goodsRemark","inGreeterName","inGreeterId","outGreeterId","sumPrice","shipperName","shipperId","shipperPhone","feeDepId"] | |
16 | +b = ["protocolId","pwd","clientRedirectTag","viewType","optType","optUrl","correctInfo","weightType","id","goodsId","number","modified","status","source","updateFeeItems","correctDiscount","totalAmount","customerId","fundAccount","accountId","ic","customerName","customerPhone","payway","plate","autocomplete-cartype","carTypeName","carTypeCode","carTypeId","carTypeWeight","storeTareWeight","proveType","grossWeight","tareWeight","weight","goodsNum","itemWeight","productPrice","unitPrice","depName","calcDepId","dep","regionName","regionId","productName","productId","productArea","parentId","levelType","originId","tradeTypeId","chargeTotalAmount","chargeTotalAmountYuan","freezeMoneySymbol","comparisonFreezeAmount","created","remark","goodsTagIds","shareRatio","handlingTeam","handActualAmount","handManageAmount","handCollectionAmount","marketFlag","totalMoney","receivable","collectionPrice","discountAmount","handReceivableAmount","itemReceivableAmount","correctDiscount","billItems","billItemsDic","billItemCheckIds","103","billItems","billItemDicCheckIds","billItemsDic","billItemCheckIds","106","billItems","receivableAmount","categoryName","categoryId","driverTel","grossWeightDate","tareWeightDate","grossPathName","grossPathId","tarePathId","goodsRemark","inGreeterName","inGreeterId","outGreeterId","sumPrice","shipperName","shipperId","shipperPhone","feeDepName","calcFeeDepId","feeDepId"] | |
17 | + | |
18 | +c = list(set(a)^set(b)) | |
19 | +# print(c) | |
20 | + | |
21 | +aa = [] | |
22 | +bb = [] | |
23 | + | |
24 | +for i in c: | |
25 | + if i not in a: | |
26 | + aa.append(i) | |
27 | + if i not in b: | |
28 | + bb.append(i) | |
29 | + | |
30 | +print(aa) | |
31 | +print(bb) | |
32 | + | |
33 | +from bs4 import BeautifulSoup | |
34 | + | |
35 | +with open("demo_b.html",encoding="utf-8") as com: | |
36 | + data = com.read() | |
37 | + | |
38 | +# print(data) | |
39 | + | |
40 | +orderDetailsList = BeautifulSoup(data, "html.parser").findAll("input") | |
41 | +orderDetailsDict = {i.get("name"): i.get("value") for i in orderDetailsList} | |
42 | +print(orderDetailsDict) | |
12 | 43 | \ No newline at end of file | ... | ... |
testcase/test_ZC/demo_a.html
0 → 100644
1 | +HTTP/1.1 200 | |
2 | +Server: nginx/1.14.2 | |
3 | +Date: Wed, 11 Aug 2021 10:06:38 GMT | |
4 | +Content-Type: text/html;charset=UTF-8 | |
5 | +Connection: keep-alive | |
6 | +Access-Control-Expose-Headers: UAP_accessToken | |
7 | +Cache-Control: no-store | |
8 | +Content-Language: zh-CN | |
9 | +Content-Length: 8660 | |
10 | + | |
11 | +<style> | |
12 | + .table-chrgeitem td, | |
13 | + .table-chrgeitem th { | |
14 | + padding: .5rem .45rem; | |
15 | + height: auto; | |
16 | + } | |
17 | +</style> | |
18 | +<input type="hidden" id="marketFlag" name="marketFlag" value="sy"> | |
19 | +<input type="hidden" id="goodsAllocationText" value="无"> | |
20 | +<input type="hidden" id="requireItemZeroMsg" value=""> | |
21 | +<input type="hidden" id="checkItemAllZero" value="0"> | |
22 | +<input type="hidden" id="itemFee" value="交易管理费:¥5.00 检测费:¥3.00 "> | |
23 | +<input type="hidden" id="receivedInWords" value="零元整"> | |
24 | +<input type="hidden" id="e" value=""> | |
25 | +<input type="hidden" id="ctotal" value="8.00"> | |
26 | +<input type="hidden" id="creceivable" value="13.00"> | |
27 | +<input type="hidden" id="cdiscount" value="5.00"> | |
28 | + | |
29 | +<input type="hidden" id="ctotalLong" name="totalMoney" value="800"> | |
30 | +<input type="hidden" id="creceivableLong" name="receivable" value="1300"> | |
31 | +<input type="hidden" id="ccollectionLong" name="collectionPrice" value="0"> | |
32 | +<input type="hidden" id="discountAmountLong" name="discountAmount" value="500"> | |
33 | +<input type="hidden" id="handReceivableAmountLong" name="handReceivableAmount" value="0"> | |
34 | +<input type="hidden" id="itemReceivableAmountLong" name="itemReceivableAmount" value="1300"> | |
35 | +<input type="hidden" id="correctDiscount" name="correctDiscount" value="1"> | |
36 | + | |
37 | +<table class="table table-hover table-bordered mt-2 table-chrgeitem"> | |
38 | + <tr class="row px-3"> | |
39 | + <th class="col-3">收费项目应收<span id="gz-tag" style="display: none;color: red;">【已更正】</span></th> | |
40 | + <th class="col-3">收费项目优惠1</th> | |
41 | + <th class="col-3">收费项目优惠2</th> | |
42 | + <th class="col-3">收费项目实收</th> | |
43 | + </tr> | |
44 | + <input type="hidden" name="billItems" value=''> | |
45 | + <input type="hidden" name="billItemsDic" value=''> | |
46 | + | |
47 | + | |
48 | + | |
49 | + <tr class="row px-3"> | |
50 | + <td class="col-3"> | |
51 | + <div class="itemwrap row"> | |
52 | + <div class="col-auto item chargeitem"> | |
53 | + <div class="form-group"> | |
54 | + <div class="d-flex align-items-center"> | |
55 | + <input type="checkbox" name="billItemCheckIds" value="103" data-name="交易管理费" | |
56 | + data-req="1" checked readonly onclick="return false"> | |
57 | + <div class="input-group-prepend"> | |
58 | + 交易管理费: | |
59 | + </div> | |
60 | + <input type="text" title="" class="form-control fees bold" | |
61 | + name="103" maxlength="15" data-old="10.00" | |
62 | + data-old-receivable="1000" value="10.00" readonly> | |
63 | + <input type="hidden" name="billItems" value='{"discount":500,"id":103,"name":"交易管理费","receivable":1000,"require":1}'> | |
64 | + </div> | |
65 | + </div> | |
66 | + </div> | |
67 | + </div> | |
68 | + </td> | |
69 | + <td class="col-3"> | |
70 | + <div class="itemwrap row"> | |
71 | + | |
72 | + | |
73 | + <div class="col-auto item offeritem red" data-req="1"> | |
74 | + <div class="form-group"> | |
75 | + <div class="d-flex align-items-center"> | |
76 | + | |
77 | + <input type="checkbox" name="billItemDicCheckIds" value="105" data-req="1" | |
78 | + checked onclick="return false"> | |
79 | + <div class="input-group-prepend"> | |
80 | + 优惠收费: | |
81 | + </div> | |
82 | + <input type="text" class="form-control fees bold" | |
83 | + value="-5.00" readonly> | |
84 | + <input type="hidden" name="billItemsDic" value='{"discount":0,"id":105,"name":"优惠收费","receivable":500,"require":1}'> | |
85 | + </div> | |
86 | + </div> | |
87 | + </div> | |
88 | + | |
89 | + </div> | |
90 | + </td> | |
91 | + <td class="col-3"> | |
92 | + <div class="itemwrap row"> | |
93 | + <div class="col-auto item offeritem" > | |
94 | + <div class="form-group"> | |
95 | + <div class="d-flex align-items-center"> | |
96 | + 返点的钱 : | |
97 | + <input type="text" class="form-control fees bold" | |
98 | + value="0.00" readonly> | |
99 | + </div> | |
100 | + </div> | |
101 | + </div> | |
102 | + </div> | |
103 | + </td> | |
104 | + <td class="col-3"> | |
105 | + <span class="bold singleRealfee">5.00</span> | |
106 | + | |
107 | + </td> | |
108 | + </tr> | |
109 | + | |
110 | + | |
111 | + <tr class="row px-3"> | |
112 | + <td class="col-3"> | |
113 | + <div class="itemwrap row"> | |
114 | + <div class="col-auto item chargeitem"> | |
115 | + <div class="form-group"> | |
116 | + <div class="d-flex align-items-center"> | |
117 | + <input type="checkbox" name="billItemCheckIds" value="106" data-name="检测费" | |
118 | + data-req="1" checked readonly onclick="return false"> | |
119 | + <div class="input-group-prepend"> | |
120 | + 检测费: | |
121 | + </div> | |
122 | + <input type="text" title="" class="form-control fees bold" | |
123 | + name="106" maxlength="15" data-old="3.00" | |
124 | + data-old-receivable="300" value="3.00" readonly> | |
125 | + <input type="hidden" name="billItems" value='{"discount":0,"id":106,"name":"检测费","receivable":300,"require":1}'> | |
126 | + </div> | |
127 | + </div> | |
128 | + </div> | |
129 | + </div> | |
130 | + </td> | |
131 | + <td class="col-3"> | |
132 | + <div class="itemwrap row"> | |
133 | + | |
134 | + </div> | |
135 | + </td> | |
136 | + <td class="col-3"> | |
137 | + <div class="itemwrap row"> | |
138 | + <div class="col-auto item offeritem" > | |
139 | + </div> | |
140 | + </div> | |
141 | + </td> | |
142 | + <td class="col-3"> | |
143 | + <span class="bold singleRealfee">3.00</span> | |
144 | + | |
145 | + </td> | |
146 | + </tr> | |
147 | + | |
148 | + | |
149 | + | |
150 | + | |
151 | +</table> | |
152 | + | |
153 | + | |
154 | + | |
155 | + | |
156 | + | |
157 | + | |
158 | + | |
159 | + | |
160 | + | |
161 | +<script> | |
162 | + $(function () { | |
163 | + /* 可选项的收费项目才能选择优惠项目 */ | |
164 | + $('#feeitemedit .chargeitem [data-req="-1"]').each(function () { | |
165 | + // offeritem所有优惠项目,offeritemReq必填优惠项目 | |
166 | + var offeritem = $(this).closest('tr').find('.offeritem :checkbox'); | |
167 | + var offeritemReq = $(this).closest('tr').find('.offeritem [data-req="1"]'); | |
168 | + if ($(this).is(':checked')) { | |
169 | + offeritem.not(offeritemReq).attr('disabled', false); | |
170 | + offeritemReq.prop('checked', true); | |
171 | + } else { | |
172 | + offeritem.not(offeritemReq).attr('disabled', true); | |
173 | + offeritem.prop('checked', false); | |
174 | + } | |
175 | + }) | |
176 | + var uItem = $("#updateFeeItems").val(); | |
177 | + if (uItem == 2) { | |
178 | + $("#gz-tag").show(); | |
179 | + } | |
180 | + }) | |
181 | + | |
182 | + $('#feeitemedit :checkbox').change(function () { | |
183 | + calculate(); | |
184 | + }) | |
185 | + // 收费项目金额千位分隔符四舍五入显示2位小数.00 | |
186 | + $('#feeitemedit .chargeitem .fees').on('blur', function () { | |
187 | + var old = $(this).attr("data-old"); | |
188 | + var now = $(this).val(); | |
189 | + //console.log("old:"+old+",new:"+now); | |
190 | + if (old == now) { | |
191 | + //没有变动 | |
192 | + //console.log("没有变动old:"+old+",new:"+now); | |
193 | + return; | |
194 | + } | |
195 | + | |
196 | + var fees = parseFloat($(this).val().replace(/[^\d\.]/g, '')); | |
197 | + var feesThousand; | |
198 | + if (fees === '' || isNaN(fees) || fees < 0) { | |
199 | + fees = 0 | |
200 | + $(this).val('0.00') | |
201 | + } else { | |
202 | + fees = Math.round(fees).toFixed(2); | |
203 | + feesThousand = fees.replace(/(\d{1,3})(?=(\d{3})+(?:$|\.))/g, "$1,"); | |
204 | + $(this).val(feesThousand) | |
205 | + } | |
206 | + var price = new Number(fees); | |
207 | + var temp1 = new Number(100); | |
208 | + var receivable = price.mul(temp1); | |
209 | + var old = $(this).attr("data-old-receivable"); | |
210 | + if (old == receivable) { | |
211 | + //没有变动 | |
212 | + //console.log("没有变动old:"+old+",new:"+receivable); | |
213 | + return; | |
214 | + } | |
215 | + | |
216 | + var info = $(this).siblings()[0]; | |
217 | + var req = $(info).attr("data-req"); | |
218 | + var dateid = $(info).val(); | |
219 | + var itemName = $(info).attr("data-name"); | |
220 | + var feeItemParamHtml = new Object(); | |
221 | + feeItemParamHtml.id = dateid; | |
222 | + feeItemParamHtml.name = itemName; | |
223 | + feeItemParamHtml.require = req; | |
224 | + feeItemParamHtml.receivable = receivable; | |
225 | + var result = JSON.stringify(feeItemParamHtml); | |
226 | + $(this).next().val(result); | |
227 | + if ($("#correctInfo").val() == 2) { | |
228 | + $("#updateFeeItems").val(2); | |
229 | + } | |
230 | + calculate(); | |
231 | + }) | |
232 | + | |
233 | + | |
234 | +</script> | |
0 | 235 | \ No newline at end of file | ... | ... |
testcase/test_ZC/demo_b.html
0 → 100644
1 | +HTTP/1.1 200 | |
2 | +Server: nginx/1.14.2 | |
3 | +Date: Wed, 11 Aug 2021 10:15:53 GMT | |
4 | +Content-Type: text/html;charset=UTF-8 | |
5 | +Connection: keep-alive | |
6 | +Access-Control-Expose-Headers: UAP_accessToken | |
7 | +Cache-Control: no-store | |
8 | +Content-Language: zh-CN | |
9 | +Content-Length: 145710 | |
10 | + | |
11 | +<!doctype html> | |
12 | +<html lang="zh-ch"> | |
13 | +<head> | |
14 | + <!-- Required meta tags --> | |
15 | + <meta charset="utf-8"> | |
16 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
17 | + <!-- Bootstrap CSS --> | |
18 | + <link rel="stylesheet" href="/resources/bui/lib/bootstrap-4.4.1-dist/css/bootstrap.min.css" > | |
19 | + <link rel="stylesheet" href="/resources/bui/lib/font-awesome-4.7.0/css/font-awesome.min.css"> | |
20 | + <link rel="stylesheet" href="/resources/bui/lib/bootstrap4pop/css/bs4.pop.css"> | |
21 | + <link rel="stylesheet" href="/resources/bui/lib/bootstrap-table/dist/bootstrap-table.min.css"/> | |
22 | + <link rel="stylesheet" href="/resources/bui/lib/select2-4.0.13/dist/css/select2.min.css"/> | |
23 | + <link rel="stylesheet" href="/resources/bui/css/common.css"> | |
24 | + <script src="/resources/bui/lib/jquery/jquery-3.2.1.min.js"></script> | |
25 | + <script src="/resources/bui/js/datetimer.js"></script> | |
26 | + <title>bui</title> | |
27 | + <script> | |
28 | + let loggerContextPath = 'http://test.logger.diligrp.com:8283'; | |
29 | + $(function () { $(document).on("change", "input[type=text]:not(:disabled), textarea:not(:disabled)", function () { $(this).val($.trim($(this).val())) }) }) | |
30 | + // 全局登陆超时拦截 | |
31 | + $.ajaxSetup({ | |
32 | + statusCode: { | |
33 | + 401: function() { | |
34 | + bs4pop.alert('登陆超时', {type: 'error', closeBtn: false}, function () { | |
35 | + window.top.postMessage('toLogin','http://test.uap.diligrp.com'); | |
36 | + }); | |
37 | + } | |
38 | + } | |
39 | + }); | |
40 | + </script> | |
41 | +</head> | |
42 | +<body> | |
43 | + | |
44 | +<style> | |
45 | + .container-fluid { | |
46 | + font-weight: 700; | |
47 | + } | |
48 | + | |
49 | + .container-fluid, | |
50 | + .form-control, | |
51 | + .btn, | |
52 | + .input-group-text { | |
53 | + font-size: 18px; | |
54 | + } | |
55 | + .freezePriceError{ | |
56 | + width: 100%; | |
57 | + margin-top: .25rem; | |
58 | + font-size: 80%; | |
59 | + color: #dc3545; | |
60 | + } | |
61 | +</style> | |
62 | +<!-- main-container start --> | |
63 | +<div class="container-fluid"> | |
64 | + <form class="form-search form-add" role="form" id="feeForm" targetId="3970"> | |
65 | + <input type="hidden" name="protocolId" id="protocolId" value=""> | |
66 | + <input type="hidden" name="pwd" value="" id="pwd"> | |
67 | + <input type="hidden" id="clientRedirectTag" name="clientRedirectTag" value=""> | |
68 | + <input type="hidden" id="viewType" name="viewType" value="unfreeze"> | |
69 | + <input type="hidden" id="optType" name="optType" value="0"> | |
70 | + <input type="hidden" id="optUrl" name="optUrl" value=""> | |
71 | + <input type="hidden" id="correctInfo" name="correctInfo" value="1"> | |
72 | + | |
73 | + <input type="hidden" name="weightType" id="weightType" value="1"> | |
74 | + <input type="hidden" name="id" id="idFee" value="3970"> | |
75 | + <input type="hidden" name="goodsId" id="goodsId" value="3984"> | |
76 | + <input type="hidden" name="number" id="number" value="202108110900124"> | |
77 | + <input type="hidden" id="modified" name="modified" value="2021-08-11 18:06:26"> | |
78 | + <input type="hidden" id="status" name="status" value="3"> | |
79 | + | |
80 | + <input type="hidden" id="operatorName" value="沈阳长歌"> | |
81 | + <input type="hidden" id="tollName" value=""> | |
82 | + <input type="hidden" id="source" name="source" value="1"> | |
83 | + <input type="hidden" id="updateFeeItems" name="updateFeeItems" value=""> | |
84 | + <input type="hidden" id="correctDiscount" name="correctDiscount" value="1"> | |
85 | + <input type="hidden" id="market_short" value="$!codeUtil.getByDdNotes(8000)"> | |
86 | + | |
87 | + <h5 class="row row-cols-6 red ml-2"> | |
88 | + <strong class="fz16">车号川B00001</strong> | |
89 | + <strong class="fz16">收费单号202108110900124</strong> | |
90 | + <strong class="fz16">总金额<span id="totalAmountSymbol" class="bold"></span></strong> | |
91 | + <input type="hidden" name="totalAmount" id="totalAmount"> | |
92 | + <input type="hidden" name="" id="totalAmountYuan"> | |
93 | + </h5> | |
94 | + <div class="breadcrumb"> | |
95 | + 基础信息 | |
96 | + <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#baseInfo" | |
97 | + aria-expanded="true" aria-controls="baseInfo">收起 <i class="fa fa-angle-double-up" | |
98 | + aria-hidden="true"></i></a> | |
99 | + </div> | |
100 | + <div class="row row-cols-6 collapse show form-group-wrap" id="baseInfo"> | |
101 | + <div class="form-group col-4"> | |
102 | + <label class=" text-primary">客户卡号∗</label> | |
103 | + <input type="hidden" name="customerId" value="389" id="customerId"> | |
104 | + <input type="hidden" name="fundAccount" value="105847" id="fundAccount"> | |
105 | + <input type="hidden" name="accountId" value="105847" id="accountId"> | |
106 | + <div class="input-group"> | |
107 | + <input type="text" class="form-control " name="ic"value="888810032426" title="888810032426" readonly> | |
108 | + </div> | |
109 | + </div> | |
110 | + <div class="form-group col"> | |
111 | + <label>客户姓名</label> | |
112 | + <input type="text" name="customerName" id="customerName" class="form-control" readonly value="长歌买家省内啊啊啊嘿"> | |
113 | + </div> | |
114 | + <div class="form-group col"> | |
115 | + <label>手机号码</label> | |
116 | + <input type="text" name="customerPhone" id="customerPhone" class="form-control " readonly | |
117 | + value="18011501258"> | |
118 | + </div> | |
119 | + <div class="form-group col"> | |
120 | + <label>卡余额</label> | |
121 | + <input type="text" class="form-control red bold fz17" value="1,109,352.33" | |
122 | + title="1,109,352.33" id="balance" size="11" readonly> | |
123 | + </div> | |
124 | + | |
125 | + <div class="form-group col red"> | |
126 | + <label class="text-right ">支付方式</label> | |
127 | + <input type="text" name="payway" class="form-control" readonly value="刷卡"> | |
128 | + </div> | |
129 | + | |
130 | + <div class="form-group col"> | |
131 | + <label>车号</label> | |
132 | + <input type="text" name="plate" class="form-control" value="川B00001" id="plate"> | |
133 | + </div> | |
134 | + <div class="form-group col"> | |
135 | + <label>挂号</label> | |
136 | + <input type="text" class="form-control" id="trailerNumber" value="川B00001"> | |
137 | + </div> | |
138 | + | |
139 | + <div class="form-group col"> | |
140 | + <label class="text-right text-primary" tlog>车型*</label> | |
141 | + <input type="text" tlog class="form-control" name="autocomplete-cartype" value="003(板车)" /> | |
142 | + <input type="hidden" name="carTypeName" id="carTypeName" value="板车" /> | |
143 | + <input type="hidden" name="carTypeCode" id="carTypeCode" value="003" /> | |
144 | + <input type="hidden" name="carTypeId" id="carTypeId" value="53" /> | |
145 | + <label class="error defi-error red" id="autocomplete-cartype-error"></label> | |
146 | + </div> | |
147 | + <div class="form-group col"> | |
148 | + <label>车型自重</label> | |
149 | + <input type="text" class="form-control" name="carTypeWeight" readonly id="ctypew" | |
150 | + value="333"> | |
151 | + </div> | |
152 | + <div class="form-group col"> | |
153 | + <label>存皮重量</label> | |
154 | + <input type="text" class="form-control" name="storeTareWeight" readonly value=""> | |
155 | + </div> | |
156 | + <div class="form-group col"> | |
157 | + <label>证明类型</label> | |
158 | + <input type="hidden" class="form-control" readonly value="1621" id="proveType" name="proveType"> | |
159 | + <input type="text" class="form-control" readonly value="绿色蔬菜" id="proveTypeName"> | |
160 | + | |
161 | + </div> | |
162 | + <div class="form-group col text-primary"> | |
163 | + <label tlog>毛重 ∗ </label> | |
164 | + <input required type="text" tlog class="form-control" name="grossWeight" id="grossWeight" value="353" > | |
165 | + <label class="error defi-error" id="grossWeighterror"></label> | |
166 | + </div> | |
167 | + <div class="form-group col"> | |
168 | + <label tlog>皮重 ∗ </label> | |
169 | + <input type="text" required class="form-control" name="tareWeight" id="tareWeight" value="333" > | |
170 | + <label class="error defi-error red" id="tareWeighterror"></label> | |
171 | + </div> | |
172 | + <div class="form-group col"> | |
173 | + <label tlog>净重</label> | |
174 | + <input type="text" class="form-control " readonly name="weight" readonly value="20" id="weight"> | |
175 | + </div> | |
176 | + <div class="form-group col"> | |
177 | + <label tlog>件数</label> | |
178 | + <input type="text" class="form-control isInt" range="0 999999" name="goodsNum" id="goodsNum" value="" readonly > | |
179 | + </div> | |
180 | + <div class="form-group col"> | |
181 | + <label tlog>件重</label> | |
182 | + <input type="text" class="form-control isInt" range="0 999999" name="itemWeight" | |
183 | + id="itemWeight" value="" readonly > | |
184 | + </div> | |
185 | + <div class="form-group col text-primary"> | |
186 | + <label>单价</label> | |
187 | + <input type="text" class="form-control" readonly value="1.00000" name="productPrice"id="unitPriceSymbol"> | |
188 | + <input type="hidden" name="unitPrice" value="100.0" id="unitPrice"> | |
189 | + </div> | |
190 | + <!--hr ----> | |
191 | + <div class="form-group col"> | |
192 | + <label>接车部门∗</label> | |
193 | + <input type="text" class="form-control" readonly value="水果部" id="depName" name="depName" > | |
194 | + <input type="hidden" name="dep" value="58" id="dep"> | |
195 | + | |
196 | + </div> | |
197 | + <div class="form-group col-4"> | |
198 | + <label tlog>货区∗</label> | |
199 | + | |
200 | + <div class="input-group"> | |
201 | + <input type="text" class="form-control district-no" readonly value="001"> | |
202 | + <input type="text" class="form-control" readonly value="A1区" > | |
203 | + <input type="hidden" class="form-control" name="regionId" value="72"id="district" > | |
204 | + </div> | |
205 | + </div> | |
206 | + <div class="form-group col text-primary"> | |
207 | + <label tlog>商品*</label> | |
208 | + | |
209 | + <input type="text" tlog required class="form-control" readonly name="productName" value="雪莲果"> | |
210 | + <input type="hidden" name="productId" id="productId" value="14158"> | |
211 | + </div> | |
212 | + <div class="form-group col"> | |
213 | + <label>货物产地∗</label> | |
214 | + <input type="text" name="productArea" class="form-control" readonly value="重庆,重庆市,万州区"/> | |
215 | + <input type="hidden" name="originId" id="originId" value="500101"> | |
216 | + </div> | |
217 | + <div> | |
218 | + <label>交易类型</label> | |
219 | + | |
220 | + | |
221 | + <input type="text" class="form-control" readonly value="沈阳2号" > | |
222 | + <input type="hidden" class="form-control" name="tradeTypeId" value="71" > | |
223 | + </div> | |
224 | + <div class="form-group col"> | |
225 | + <label>有无摊位</label> | |
226 | + <input type="text" class="form-control" readonly value="无" id="goodsAllocation"> | |
227 | + </div> | |
228 | + <!--hr---> | |
229 | + <div class="form-group col"> | |
230 | + <label>收费总额</label> | |
231 | + <div class="input-group"> | |
232 | + <input type="text" id="chargeTotalAmountSymbol" class="form-control red bold fz17" size="11" | |
233 | + readonly value="434.00"> | |
234 | + <input type="hidden" id="chargeTotalAmount" name="chargeTotalAmount"> | |
235 | + <input type="hidden" id="chargeTotalAmountYuan" name="chargeTotalAmountYuan"> | |
236 | + <div class="input-group-prepend" id="cal"> | |
237 | + <span class="input-group-text calculate text-primary font-weight-bold"><a href="javascript:;" >计算</a></span> | |
238 | + </div> | |
239 | + | |
240 | + </div> | |
241 | + </div> | |
242 | + <div class="form-group col"> | |
243 | + <input type="hidden" id="printViewYuan" value="0"> | |
244 | + <input type="hidden" id="printViewSymbol" value="0"> | |
245 | + <label>冻结金额</label> | |
246 | + <input name="freezeMoneySymbol" type="text" id="freezeMoneySymbol" class="form-control red bold fz17 " readonly> | |
247 | + <input type="hidden" id="freezePriceVal" name="comparisonFreezeAmount"> | |
248 | + <label class="freezePriceError" id="freezePriceError"></label> | |
249 | + </div> | |
250 | + <div class="form-group col"> | |
251 | + <label>状态</label> | |
252 | + <input type="text" class="form-control" name="" readonly id="" value="已冻结"> | |
253 | + </div> | |
254 | + <div class="form-group col"> | |
255 | + <label>进场时间</label> | |
256 | + <input type="text" class="form-control" readonly name="created" | |
257 | + value="2021-08-11 18:06:22"> | |
258 | + </div> | |
259 | + <div class="form-group col"> | |
260 | + <label>收费时间</label> | |
261 | + <input type="text" class="form-control" name="" readonly value="2021-08-11 18:06:28"> | |
262 | + </div> | |
263 | + <!--hr---> | |
264 | + <div class="form-group col"> | |
265 | + <label>收费员</label> | |
266 | + <input type="text" class="form-control" name="" readonly value="沈阳长歌"> | |
267 | + </div> | |
268 | + <div class="form-group col"> | |
269 | + <label>二次回皮</label> | |
270 | + | |
271 | + <input type="text" class="form-control" readonly value="否"> | |
272 | + | |
273 | + </div> | |
274 | + <div class="form-group col"> | |
275 | + <label>持卡人</label> | |
276 | + <input type="text" class="form-control" name="" readonly value="长歌买家省啊"> | |
277 | + </div> | |
278 | + <div class="form-group col"> | |
279 | + <label>持卡人电话</label> | |
280 | + <input type="text" class="form-control" name="" readonly value="18011501251"> | |
281 | + </div> | |
282 | + <div class="form-group col-4"> | |
283 | + <label tlog>备注</label> | |
284 | + <textarea class="form-control" id="remark" cols="30" rows="1" tlog maxlength="50" name="remark" | |
285 | + title=""></textarea> | |
286 | + </div> | |
287 | + <!--hr---> | |
288 | + <div class="col-12"> | |
289 | + <label>货物标签</label> | |
290 | + <input type="hidden" id="tags" value="货物标签测试"> | |
291 | + | |
292 | + | |
293 | + | |
294 | + <div class="checkbox goods-tags"> | |
295 | + <label >有机食品 </label> | |
296 | + <label >无 </label> | |
297 | + <label ><input name="goodsTagIds" type="radio" value="1900" readonly checked>货物标签测试</label> | |
298 | + </div> | |
299 | + | |
300 | + | |
301 | + | |
302 | + | |
303 | + </div> | |
304 | + | |
305 | + | |
306 | + </div> | |
307 | + <!--hr---> | |
308 | + <div class="breadcrumb"> | |
309 | + 装卸费用 | |
310 | + <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#steveInfo" | |
311 | + aria-expanded="true" aria-controls="steveInfo">收起 <i class="fa fa-angle-double-up" | |
312 | + aria-hidden="true"></i></a> | |
313 | + </div> | |
314 | + <div class="row row-cols-6 collapse show form-group-wrap" id="steveInfo"> | |
315 | + <div class="form-group col text-primary"> | |
316 | + <label>装卸队</label> | |
317 | + <input type="hidden" id="shareRatioVal" name="shareRatio" value="0"> | |
318 | + <input type="text" class="form-control" name="handlingTeam" readonly value=""> | |
319 | + <input type="hidden" id="handlingTeamId" name="steveTeamId" value=""> | |
320 | + | |
321 | + <input type="hidden" id="steveTeamIdSelect" value="1"> | |
322 | + <label class="steveTeamIdError" id="steveTeamIdError"></label> | |
323 | + </div> | |
324 | + <div class="form-group col text-primary"> | |
325 | + <label>卸货比例</label> | |
326 | + <input type="hidden" id="handlingRatioVal" name="handlingRatio" value="" > | |
327 | + <input type="hidden" id="handlingRatioOld" value=""> | |
328 | + <input type="text" class="form-control" value="%" readonly> | |
329 | + </div> | |
330 | + <div class="form-group col"> | |
331 | + <label>装卸费</label> | |
332 | + <input type="text" id="handActualAmountSymbol" class="form-control" readonly value=""> | |
333 | + <input type="hidden" id="handActualAmount" name="handActualAmount" value=""> | |
334 | + </div> | |
335 | + <div class="form-group col"> | |
336 | + <label>应收装卸费</label> | |
337 | + <input type="text" id="handReceivableAmountSymbol" class="form-control" readonly value=""> | |
338 | + </div> | |
339 | + <div class="form-group col"> | |
340 | + <label>装卸管理费</label> | |
341 | + <input type="text" id="handManageAmountSymbol" class="form-control" readonly value=""> | |
342 | + <input type="hidden" id="handManageAmount" name="handManageAmount"> | |
343 | + </div> | |
344 | + <div class="form-group col"> | |
345 | + <label>代收装卸费</label> | |
346 | + <input type="text" id="handCollectionAmountSymbol" class="form-control" readonly value=""> | |
347 | + <input type="hidden" id="handCollectionAmount" name="handCollectionAmount"> | |
348 | + </div> | |
349 | + | |
350 | + <!--hr---> | |
351 | + <div class="col-12 feeitemedit" id="feeitemedit"> | |
352 | + </div> | |
353 | + </div> | |
354 | + <!---hr---> | |
355 | + <div class="breadcrumb"> | |
356 | + 其他信息 | |
357 | + <a href="javascript:;" class="ml-auto" data-toggle="collapse" data-target="#otherInfo" | |
358 | + aria-expanded="true" aria-controls="otherInfo">收起 <i class="fa fa-angle-double-up"aria-hidden="true"></i></a> | |
359 | + </div> | |
360 | + <div class="row row-cols-6 collapse show form-group-wrap height0" id="otherInfo"> | |
361 | + <div class="form-group col"> | |
362 | + <label>应收金额</label> | |
363 | + <input type="text" id="receivableAmountSymbol" class="form-control red bold fz17" | |
364 | + value="" readonly> | |
365 | + <input name="receivableAmount" type="hidden" id="receivableAmount"> | |
366 | + </div> | |
367 | + <div class="form-group col"> | |
368 | + <label class="text-right red">优惠金额</label> | |
369 | + <input type="text" id="discountAmountSymbol" class="form-control red bold fz17" readonly | |
370 | + value="-"> | |
371 | + </div> | |
372 | + <div class="form-group col"> | |
373 | + | |
374 | + <label>返点金额</label> | |
375 | + | |
376 | + <input type="text" id="collectionAmountSymbol" class="form-control red bold fz17" readonly | |
377 | + value=""> | |
378 | + </div> | |
379 | + | |
380 | + <div class="form-group col"> | |
381 | + <label>商品品类</label> | |
382 | + <input type="text" class="form-control" name="categoryName" id="parentName" readonly | |
383 | + value="水果"> | |
384 | + <input type="hidden" class="form-control" name="categoryId" id="categoryId" | |
385 | + value="14436"> | |
386 | + </div> | |
387 | + <div class="form-group col"> | |
388 | + <label>司机手机</label> | |
389 | + <input type="text" class="form-control " readonly name="driverTel" value=""> | |
390 | + </div> | |
391 | + <div class="form-group col"> | |
392 | + <label>称重员</label> | |
393 | + <input type="text" class="form-control" readonly value="沈阳长歌"> | |
394 | + </div> | |
395 | + <!---hr ---> | |
396 | + <div class="form-group col"> | |
397 | + <label>称重类型</label> | |
398 | + <input type="text" class="form-control" readonly value="整车称重"> | |
399 | + </div> | |
400 | + <div class="form-group col"> | |
401 | + <label>毛重时间</label> | |
402 | + <input type="text" class="form-control" readonly name="grossWeightDate" value="2021-08-11 18:06:22" > | |
403 | + | |
404 | + </div> | |
405 | + <div class="form-group col"> | |
406 | + <label>皮重时间</label> | |
407 | + <input type="text" class="form-control " readonly name="tareWeightDate" value="2021-08-11 18:06:22"> | |
408 | + </div> | |
409 | + <div class="form-group col"> | |
410 | + <label>毛重通道</label> | |
411 | + <input type="text" name="grossPathName" class="form-control" readonly value=""> | |
412 | + <input type="hidden" name="grossPathId" class="form-control" readonly value=""> | |
413 | + </div> | |
414 | + <div class="form-group col"> | |
415 | + <label>皮重通道</label> | |
416 | + <input type="text" class="form-control" readonly value=""> | |
417 | + <input type="hidden" name="tarePathId" class="form-control" readonly value=""> | |
418 | + </div> | |
419 | + <div class="form-group col"> | |
420 | + <label>皮重员</label> | |
421 | + <input type="text" class="form-control" readonly value=""> | |
422 | + </div> | |
423 | + <!---hr---> | |
424 | + <div class="form-group col"> | |
425 | + <label>带货回皮</label> | |
426 | + | |
427 | + <input type="text" class="form-control" readonly value="否"> | |
428 | + | |
429 | + </div> | |
430 | + | |
431 | + <div class="form-group col-4"> | |
432 | + <label tlog>称重备注</label> | |
433 | + <textarea class="form-control" cols="30" rows="1" maxlength="50" id="goodsRemark" name="goodsRemark" | |
434 | + title="备注" >备注</textarea> | |
435 | + </div> | |
436 | + <div class="form-group col"> | |
437 | + <label class="text-right text-primary" tlog>进门接车员</label> | |
438 | + <input type="text" class="form-control" tlog name="inGreeterName" | |
439 | + id="inGreeterName" value="通用测试"> | |
440 | + <input type="hidden" name="inGreeterId" id="inGreeterId" value="274"> | |
441 | + <label class="error defi-error"></label> | |
442 | + </div> | |
443 | + <div class="form-group col"> | |
444 | + <label tlog>出门接车员</label> | |
445 | + <input type="text" class="form-control" tlog name="outGreeterName" id="outGreeterName" | |
446 | + value=""> | |
447 | + <input type="hidden" name="outGreeterId" id="outGreeterId" value=""> | |
448 | + <label class="error defi-error"></label> | |
449 | + </div> | |
450 | + <div class="col"> | |
451 | + <a href="javascript:viewImgNew();" class="lookPound ml-2">查看称重图片</a> | |
452 | + <input type="hidden" id="imgs" value='[]'> | |
453 | + </div> | |
454 | + <!----hr --> | |
455 | + <div class="form-group col"> | |
456 | + <label>交易额</label> | |
457 | + <input type="text" id="sumPriceSymbol" class="form-control" readonly value="20.00"> | |
458 | + <input type="hidden" name="sumPrice" value="2000" id="sumPrice"> | |
459 | + </div> | |
460 | + | |
461 | + <div class="form-group col"> | |
462 | + <label>货主姓名</label> | |
463 | + <input type="text" name="shipperName" id="goodsCusName" class="form-control" maxlength="22" | |
464 | + value=""> | |
465 | + <input type="hidden" name="shipperId" id="shipperId" value=""> | |
466 | + </div> | |
467 | + <div class="form-group col"> | |
468 | + <label>货主手机</label> | |
469 | + <input type="text" name="shipperPhone" id="goodsCusTel" class="form-control isMobile" | |
470 | + value=""> | |
471 | + </div> | |
472 | + <div class="form-group col"> | |
473 | + <label>收费部门</label> | |
474 | + <input type="text" class="form-control" readonly value="" id="feeDepName" > | |
475 | + <input type="hidden" name="feeDepId" value="0" id="feeDepId"> | |
476 | + </div> | |
477 | + </div> | |
478 | +</div> | |
479 | +</form> | |
480 | +</div> | |
481 | + | |
482 | +<!-- Optional JavaScript --> | |
483 | +<!-- jQuery first, then Popper.js, then Bootstrap JS --> | |
484 | +<script src="/resources/bui/lib/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js"></script> | |
485 | +<script src="/resources/bui/lib/bootstrap4pop/js/bs4.pop.js"></script> | |
486 | +<script src="/resources/bui/lib/bootstrap-table/dist/bootstrap-table.min.js"></script> | |
487 | +<script src="/resources/bui/lib/bootstrap-table/dist/locale/bootstrap-table-zh-CN.min.js"></script> | |
488 | +<script src="/resources/bui/lib/laydate/laydate.js"></script> | |
489 | +<script src="/resources/bui/lib/jquery-validation-1.19.1/jquery.validate.min.js"></script> | |
490 | +<script src="/resources/bui/lib/jquery-validation-1.19.1/jquery.validate-extend.js"></script> | |
491 | +<script src="/resources/bui/lib/jquery/jquery.autocomplete.min.js"></script> | |
492 | +<script src="/resources/bui/lib/select2-4.0.13/dist/js/select2.full.min.js"></script> | |
493 | +<script src="/resources/bui/lib/select2-4.0.13/dist/js/i18n/zh-CN.js"></script> | |
494 | +<script src="/resources/bui/lib/moment/moment-with-locales.min.js"></script> | |
495 | +<script src="/resources/bui/lib/vendor/art-template.js"></script> | |
496 | +<script src="/resources/bui/lib/log/logger.js"></script> | |
497 | +<script src="/resources/bui/js/common.js"></script> | |
498 | +<script src="/resources/bui/js/global.js"></script> | |
499 | +</body> | |
500 | +<script id="radioItem" type="text/html"> | |
501 | + <div class="custom-control custom-radio custom-control-inline"> | |
502 | + <input type="radio" {{_log?index == 0? '_log='+_log : '' : ''}} id="r_{{containerId}}{{value}}" value="{{value}}" name="{{name}}" class="custom-control-input" {{checked ? | |
503 | + 'checked':''}} {{required ? 'required':''}}> | |
504 | + <label class="custom-control-label" for="r_{{containerId}}{{value}}">{{text}}</label> | |
505 | + </div> | |
506 | +</script> | |
507 | +<script id="checkboxItem" type="text/html"> | |
508 | + <div class="custom-control custom-checkbox custom-control-inline"> | |
509 | + <input type="checkbox" {{_log?index == 0? '_log='+_log : '' : ''}} id="c_{{containerId}}{{value}}" value="{{value}}" name="{{name}}" class="custom-control-input" {{checked | |
510 | + ? 'checked':''}} {{required ? 'required':''}}> | |
511 | + <label class="custom-control-label" for="c_{{containerId}}{{value}}">{{text}}</label> | |
512 | + </div> | |
513 | +</script> | |
514 | +<script id="optionItem" type="text/html"> | |
515 | + <option value="{{value}}" {{selected ? 'selected':''}}>{{text}}</option> | |
516 | +</script> | |
517 | +<script type="text/javascript"> | |
518 | + /*********************************************** 页面组件驱动执行 begin ***********************************************************/ | |
519 | + $(function () { | |
520 | + //表单jquery对象获取提交字段的json信息 | |
521 | + $.fn.serializeObject = function (containsNull) { | |
522 | + var o = {}; | |
523 | + var a = this.serializeArray(); | |
524 | + $.each(a, function () { | |
525 | + if (o[this.name] !== undefined) { | |
526 | + if (!o[this.name].push && o[this.name] != null && o[this.name] != "") { | |
527 | + o[this.name] = [o[this.name]]; | |
528 | + o[this.name].push(this.value || ''); | |
529 | + } else if (this.value != null) { | |
530 | + o[this.name].push(this.value || ''); | |
531 | + } else { | |
532 | + if (containsNull && containsNull == true) { | |
533 | + o[this.name].push(''); | |
534 | + } | |
535 | + } | |
536 | + } else { | |
537 | + if (this.value != null && this.value != "") { | |
538 | + o[this.name] = this.value || ''; | |
539 | + } else { | |
540 | + if (containsNull && containsNull == true) { | |
541 | + o[this.name] = ''; | |
542 | + } | |
543 | + } | |
544 | + } | |
545 | + }); | |
546 | + return o; | |
547 | + }; | |
548 | + | |
549 | + $('.date').each(function () { | |
550 | + let self = this; | |
551 | + laydate.render({ | |
552 | + elem: self,//或 elem: document.getElementById('test')、elem: lay('#test') 等 | |
553 | + type: 'datetime', | |
554 | + theme: '#007bff', | |
555 | + trigger:'click' | |
556 | + }); | |
557 | + }); | |
558 | + }); | |
559 | + /*********************************************** 页面组件驱动执行 end ***********************************************************/ | |
560 | + | |
561 | + /*********************************************** 页面组件变量及处理函数 begin ***********************************************************/ | |
562 | + var bui = (function () { | |
563 | + /** | |
564 | + * table button icon | |
565 | + * **/ | |
566 | + let icons = { | |
567 | + paginationSwitchDown: 'fa-caret-square-o-down', | |
568 | + paginationSwitchUp: 'fa-caret-square-o-up', | |
569 | + refresh: 'fa-refresh', | |
570 | + toggleOff: 'fa-toggle-off', | |
571 | + toggleOn: 'fa-toggle-on', | |
572 | + columns: 'fa-th-list', | |
573 | + fullscreen: 'fa-arrows-alt', | |
574 | + detailOpen: 'fa-plus', | |
575 | + detailClose: 'fa-minus', | |
576 | + export: 'fa-download' | |
577 | + }; | |
578 | + | |
579 | + | |
580 | + let loading = (function () { | |
581 | + //弹出加载层 | |
582 | + function show(text) { | |
583 | + $("#loading-text").text(text || "loading..."); | |
584 | + $("#loading").show(); | |
585 | + } | |
586 | + | |
587 | + //取消加载层 | |
588 | + function hide() { | |
589 | + $("#loading").hide(); | |
590 | + } | |
591 | + | |
592 | + function initLoading() { | |
593 | + $("body").append(` | |
594 | + <div id="loading" class="loading" style="display: none;"> | |
595 | + <div class="cover"></div> | |
596 | + <aside class="loading-wrapper"> | |
597 | + <div> | |
598 | + <div class="loading-animation"> | |
599 | + <span></span> | |
600 | + <span></span> | |
601 | + <span></span> | |
602 | + <span></span> | |
603 | + <span></span> | |
604 | + </div> | |
605 | + <div><span id="loading-text"></span></div> | |
606 | + </div> | |
607 | + </aside> | |
608 | + </div>` | |
609 | + ); | |
610 | + } | |
611 | + | |
612 | + //初始化遮罩层 | |
613 | + initLoading(); | |
614 | + return {show, hide}; | |
615 | + })(); | |
616 | + | |
617 | + /******************************** excel导出函数定义 begin *********************************/ | |
618 | + let bexport = (function () { | |
619 | + function S4() { | |
620 | + return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); | |
621 | + }; | |
622 | + | |
623 | + //token生成器 | |
624 | + function guid() { | |
625 | + return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4()); | |
626 | + }; | |
627 | + | |
628 | + //通过token判断导出是否完成 | |
629 | + function checkFinished(token) { | |
630 | + let exporterPath = 'http://test.exporter.diligrp.com:8288'; | |
631 | + let url = exporterPath == "" ? "/export/isFinished.action?token=" + token : exporterPath + "/exporter/isFinished.action?token=" + token; | |
632 | + $.ajax({ | |
633 | + type: "POST", | |
634 | + url: url, | |
635 | + processData: true, | |
636 | + dataType: "json", | |
637 | + success: function (data) { | |
638 | + if (data == true || data == "true") { | |
639 | + bui.loading.hide(); | |
640 | + } | |
641 | + }, | |
642 | + error: function (XMLHttpRequest, textStatus, errorThrown) { | |
643 | + bs4pop.alert('远程访问失败:' + XMLHttpRequest.status + XMLHttpRequest.statusText + "," + textStatus, {type: 'error'}); | |
644 | + } | |
645 | + }); | |
646 | + } | |
647 | + | |
648 | + /*** | |
649 | + * grid **tableID | |
650 | + * formId **查询参数表单ID | |
651 | + * exportUrl 导出URL | |
652 | + * extendQueryParams 导出扩展参数 | |
653 | + * */ | |
654 | + function doExport(gridId, formId, exportUrl , extendQueryParams) { | |
655 | + var opts = $('#' + gridId).bootstrapTable('getOptions'); | |
656 | + //没有url就没有查询过,不作导出 | |
657 | + if (opts.url == null || opts.url == '') | |
658 | + return; | |
659 | + var _gridExportQueryParams; | |
660 | + if (formId == null || formId === '') { | |
661 | + try { | |
662 | + _gridExportQueryParams = $.table.bindGridMeta2Form(null); | |
663 | + } catch (e) { | |
664 | + console.log('未引入VUE。。。') | |
665 | + } | |
666 | + } else { | |
667 | + _gridExportQueryParams = bindGridMeta2Form(gridId, formId); | |
668 | + } | |
669 | + _gridExportQueryParams["sort"] = opts.sortName; | |
670 | + _gridExportQueryParams["order"] = opts.sortOrder; | |
671 | + var param = {}; | |
672 | + //多表头遍历 | |
673 | + for (let cols of opts.columns) { | |
674 | + for (let col of cols) { | |
675 | + if (col.checkbox || col.radio) { | |
676 | + col['hidden'] = true; | |
677 | + } else { | |
678 | + col['hidden'] = !col.visible; | |
679 | + } | |
680 | + | |
681 | + //opts.sortName默认取到的是fieldName | |
682 | + if (col.field === opts.sortName) { | |
683 | + _gridExportQueryParams["sort"] = col.sortName || opts.sortName; | |
684 | + } | |
685 | + } | |
686 | + } | |
687 | + param.columns = JSON.stringify(opts.columns); | |
688 | + param.queryParams = JSON.stringify($.extend(_gridExportQueryParams, extendQueryParams)); | |
689 | + param.title = opts.title; | |
690 | + var serverPath = 'http://test.jmsf.diligrp.com:8385'; | |
691 | + param.url = serverPath + opts.url; | |
692 | + param.contentType = opts.contentType; | |
693 | + param.token = guid(); | |
694 | + exportByUrl(param); | |
695 | + } | |
696 | + | |
697 | + /** | |
698 | + * 根据controller url导出 | |
699 | + * controller方法调用ExportUtils完成导出, 示例: | |
700 | + * @RequestMapping("/export") | |
701 | + * public @ResponseBody void export( HttpServletRequest request, HttpServletResponse response, @RequestParam("queryParams") String queryParams){...} | |
702 | + * @param exportUrl | |
703 | + * @param params | |
704 | + */ | |
705 | + function exportByUrl(param) { | |
706 | + var exporterPath = 'http://test.exporter.diligrp.com:8288'; | |
707 | + //如果配置了exporter.contextPath, 则使用导出器 | |
708 | + var exportUrl = exporterPath == "" ? '/export/serverExport.action' : exporterPath+'/exporter/serverExport.action'; | |
709 | + if ($("#_exportForm").length <= 0) { | |
710 | + var formStr = "<div id='_exportFormDiv'><form id='_exportForm' action='" + exportUrl + "' method='post' target=''>" + | |
711 | + "<input type='hidden' id='columns' name='columns'/>" + | |
712 | + "<input type='hidden' id='queryParams' name='queryParams'/>" + | |
713 | + "<input type='hidden' id='title' name='title'/>" + | |
714 | + "<input type='hidden' id='url' name='url'/>" + | |
715 | + "<input type='hidden' id='token' name='token'/>" + | |
716 | + "<input type='hidden' id='contentType' name='contentType'/>" + | |
717 | + "</form></div>"; | |
718 | + $(formStr).appendTo("body"); | |
719 | + } | |
720 | + $('#columns').val(param.columns); | |
721 | + $('#queryParams').val(param.queryParams); | |
722 | + $('#title').val(param.title); | |
723 | + $('#url').val(param.url); | |
724 | + $('#token').val(param.token); | |
725 | + $('#contentType').val(param.contentType); | |
726 | + // 显示进度条 | |
727 | + bui.loading.show('数据导出中,请稍候。。。'); | |
728 | + checkFinished(param.token); | |
729 | + $('#_exportForm').submit(); | |
730 | + } | |
731 | + | |
732 | + return {doExport, exportByUrl,guid}; | |
733 | + })(); | |
734 | + /******************************** excel导出函数定义 end *********************************/ | |
735 | + | |
736 | + //表单回显数据,加载json数据到表单 | |
737 | + let loadFormData = function (jsonStr) { | |
738 | + var obj = typeof (jsonStr) == 'string' ? eval("(" + jsonStr + ")") : jsonStr; | |
739 | + var key, value, tagName, type, arr; | |
740 | + for (x in obj) { | |
741 | + key = x; | |
742 | + value = obj[x]; | |
743 | + | |
744 | + $("[name='" + key + "'],[name='" + key + "[]']").each(function () { | |
745 | + tagName = $(this)[0].tagName; | |
746 | + type = $(this).attr('type'); | |
747 | + if (tagName == 'INPUT') { | |
748 | + if (type == 'radio') { | |
749 | + $(this).attr('checked', $(this).val() == value); | |
750 | + } else if (type == 'checkbox') { | |
751 | + arr = value.split(','); | |
752 | + for (var i = 0; i < arr.length; i++) { | |
753 | + if ($(this).val() == arr[i]) { | |
754 | + $(this).attr('checked', true); | |
755 | + break; | |
756 | + } | |
757 | + } | |
758 | + } else { | |
759 | + $(this).val(value); | |
760 | + } | |
761 | + } else if (tagName == 'SELECT' || tagName == 'TEXTAREA') { | |
762 | + $(this).val(value); | |
763 | + } | |
764 | + | |
765 | + }); | |
766 | + } | |
767 | + } | |
768 | + | |
769 | + //从后台获取原始值的key的前缀 | |
770 | + let orginal_key_prefix = '$_'; | |
771 | + | |
772 | + //获取datagrid行数据中的原始值(有orginal_key_prefix开头的key的值),用于form load | |
773 | + function getOriginalData(json) { | |
774 | + var obj = {}; | |
775 | + for (key in json) { | |
776 | + if (key.startsWith(orginal_key_prefix)) { | |
777 | + continue; | |
778 | + } | |
779 | + //如果已有orginal_key_prefix为前缀的同名原始属性,则使用原始属性 | |
780 | + if (json.hasOwnProperty(orginal_key_prefix + key)) { | |
781 | + obj[key] = json[orginal_key_prefix + key]; | |
782 | + } else { | |
783 | + obj[key] = json[key]; | |
784 | + } | |
785 | + } | |
786 | + return obj; | |
787 | + } | |
788 | + | |
789 | + //为json对象key中添加开始字符串,如果已经是以startStr开始,则跳过 | |
790 | + // 主要是为了获取下拉框等有provider的字段的原值 | |
791 | + // 如var json = {id:1, name:"value"}; | |
792 | + // addKeyStartWith(json, "_") | |
793 | + // 结果是:{_id:1, _name:"value"}; | |
794 | + function addKeyStartWith(json, startStr) { | |
795 | + for (key in json) { | |
796 | + if (key.startsWith(startStr)) { | |
797 | + continue; | |
798 | + } | |
799 | + //如果已有add startStr后的同名属性,则跳过,并且移除key | |
800 | + if (json.hasOwnProperty(startStr + key)) { | |
801 | + delete json[key]; | |
802 | + continue; | |
803 | + } | |
804 | + json[startStr + key] = json[key]; | |
805 | + delete json[key]; | |
806 | + } | |
807 | + return json; | |
808 | + } | |
809 | + | |
810 | + //删除json对象key中的开始字符串, | |
811 | + // 如var json = {_id:1, _name:"value"}; | |
812 | + // 调用removeByStart(json, "_") | |
813 | + // 结果是:{id:1, name:"value"}; | |
814 | + function removeKeyStartWith(json, startStr) { | |
815 | + for (key in json) { | |
816 | + if (key.startsWith(startStr)) { | |
817 | + //如果已有remove掉startStr后的同名属性,则跳过,并且移除key | |
818 | + if (json.hasOwnProperty(key.slice(startStr.length))) { | |
819 | + delete json[key]; | |
820 | + continue; | |
821 | + } | |
822 | + json[key.slice(startStr.length)] = json[key]; | |
823 | + delete json[key]; | |
824 | + } | |
825 | + } | |
826 | + return json; | |
827 | + } | |
828 | + | |
829 | + /** | |
830 | + * 初始化自动完成框 | |
831 | + */ | |
832 | + function initAutoComplete(option) { | |
833 | + $(option.selector).on('input', function () { | |
834 | + $(this).siblings('input').val(''); | |
835 | + }); | |
836 | + //产地联系输入 | |
837 | + $(option.selector).autocomplete($.extend(true, { | |
838 | + type: 'get', | |
839 | + noCache: 1, | |
840 | + deferRequestBy: 300, | |
841 | + autoFill: true, | |
842 | + dataType: 'json', | |
843 | + width: 'auto', | |
844 | + paramName: 'value', | |
845 | + onSearchComplete: function (query, suggestions) { | |
846 | + }, | |
847 | + showNoSuggestionNotice: true, | |
848 | + noSuggestionNotice: "无匹配结果" | |
849 | + }, option)); | |
850 | + } | |
851 | + | |
852 | + /** | |
853 | + * 为表单绑定表格的metadata,保持原有的meta信息 | |
854 | + * 返回绑定好的对象 | |
855 | + * @param gridId | |
856 | + * @param formId | |
857 | + * @returns {*} | |
858 | + */ | |
859 | + function bindGridMeta2Form(gridId, formId, containsNull) { | |
860 | + var param = bindMetadata(gridId); | |
861 | + if (!formId) return param; | |
862 | + var formData = $("#" + formId).serializeObject(containsNull); | |
863 | + return $.extend(param, formData); | |
864 | + } | |
865 | + | |
866 | + /** | |
867 | + * 绑定实体的metadata信息,用于提供者转换 | |
868 | + * @param gridId datagrid Id | |
869 | + * @returns {queryParams|{provider}|*|string|{}} | |
870 | + */ | |
871 | + function bindMetadata(gridId) { | |
872 | + var opts = $("#" + gridId).bootstrapTable('getOptions'); | |
873 | + return bindColumnsMetadata(opts.columns); | |
874 | + } | |
875 | + | |
876 | + /** | |
877 | + * originColumns 表头 (获取实际字段的表头(可能是多表头)) | |
878 | + * */ | |
879 | + function bindColumnsMetadata(originColumns) { | |
880 | + var columns = originColumns.flat().filter(item => item["field"]); | |
881 | + //赋默认值 | |
882 | + var params = {}; | |
883 | + params["metadata"] = {}; | |
884 | + //提供者的默认排序索引 | |
885 | + var index = 10; | |
886 | + for (var column in columns) { | |
887 | + var _provider = columns[column]["provider"]; | |
888 | + var _data = columns[column]["data"]; | |
889 | + //优先解析直接数据的_data属性 | |
890 | + if (_data != null) { | |
891 | + var field = columns[column]["field"]; | |
892 | + var fieldMetadata = {}; | |
893 | + fieldMetadata["provider"] = "simpleDataProvider"; | |
894 | + fieldMetadata["data"] = _data; | |
895 | + params["metadata"][field] = JSON.stringify(fieldMetadata); | |
896 | + continue; | |
897 | + } | |
898 | + //没有_data属性,则解析_table,_valueField和_textField等其它属性 | |
899 | + var _table = columns[column]["table"]; | |
900 | + //如果有_table属性,则按simpleValueProvider处理 | |
901 | + if (_table != null) { | |
902 | + _provider = "simpleValueProvider"; | |
903 | + } | |
904 | + if (_provider != null) { | |
905 | + //设值 | |
906 | + var field = columns[column]["field"]; | |
907 | + var fieldMetadata = {}; | |
908 | + fieldMetadata["provider"] = _provider; | |
909 | + fieldMetadata["table"] = _table; | |
910 | + fieldMetadata["valueField"] = columns[column]["valueField"]; | |
911 | + fieldMetadata["textField"] = columns[column]["textField"]; | |
912 | + fieldMetadata["queryParams"] = columns[column]["queryParams"]; | |
913 | + fieldMetadata["index"] = columns[column]["index"] == null ? index : columns[column]["index"]; | |
914 | + fieldMetadata["field"] = field; | |
915 | + //设置通用批量提供者参数 | |
916 | + fieldMetadata["_escapeFileds"] = columns[column]["escapeFileds"]; | |
917 | + fieldMetadata["_relationTablePkField"] = columns[column]["relationTablePkField"]; | |
918 | + fieldMetadata["_relationTable"] = columns[column]["relationTable"]; | |
919 | + fieldMetadata["_fkField"] = columns[column]["fkField"]; | |
920 | + params["metadata"][field] = JSON.stringify(fieldMetadata); | |
921 | + index += 10; | |
922 | + } | |
923 | + } | |
924 | + return params; | |
925 | + } | |
926 | + | |
927 | + /** | |
928 | + * table-export科学计算法处理 | |
929 | + * @param cell | |
930 | + * @param row | |
931 | + * @param col | |
932 | + * @returns {string} | |
933 | + * @constructor | |
934 | + */ | |
935 | + function doOnMsoNumberFormat(cell, row, col) { | |
936 | + var result = ""; | |
937 | + if (row > 0 && col == 0) | |
938 | + result = "\\@"; | |
939 | + return result; | |
940 | + } | |
941 | + | |
942 | + /** | |
943 | + * 为表单number类型进行元转分 | |
944 | + * @param obj 数据对象 如:$('form').serializeObject()得到number数据为 | |
945 | + * @returns {*} | |
946 | + */ | |
947 | + function yuanToCentForMoneyEl(obj){ | |
948 | + for(let field in obj){ | |
949 | + let value = obj[field]; | |
950 | + if($('[name='+field+']').hasClass('money')){ | |
951 | + if(value instanceof Array){ | |
952 | + value.forEach(function(val,index,arr){ | |
953 | + arr[index] = Number(val).mul(100); | |
954 | + }) | |
955 | + }else{ | |
956 | + obj[field] = Number(value).mul(100); | |
957 | + } | |
958 | + } | |
959 | + } | |
960 | + return obj; | |
961 | + } | |
962 | + | |
963 | + /** | |
964 | + * 反转义html | |
965 | + * @param str | |
966 | + * @returns {*} | |
967 | + */ | |
968 | + function HTMLDecode(str) { | |
969 | + var s = ""; | |
970 | + if (str.length == 0) return ""; | |
971 | + s = str.replace(/&/g, "&"); | |
972 | + s = s.replace(/</g, "<"); | |
973 | + s = s.replace(/>/g, ">"); | |
974 | + s = s.replace(/ /g, " "); | |
975 | + s = s.replace(/'/g, "\'"); | |
976 | + s = s.replace(/"/g, "\""); | |
977 | + s = s.replace(/<br\/>/g, "\n"); | |
978 | + return s; | |
979 | + } | |
980 | + | |
981 | + /** | |
982 | + * fn [function] 需要防抖的函数 | |
983 | + * wait [number] 毫秒,防抖期限值 | |
984 | + * immediate 是否立即执行 | |
985 | + */ | |
986 | + const debounce = (fn, wait, immediate = false) => { | |
987 | + let timer; | |
988 | + | |
989 | + return function() { | |
990 | + if(timer) clearTimeout(timer); | |
991 | + if(immediate) { | |
992 | + let trigger = !timer; | |
993 | + timer = setTimeout(() => { | |
994 | + timer = null; | |
995 | + }, wait); | |
996 | + | |
997 | + if(trigger) { | |
998 | + return fn.apply(this, arguments); | |
999 | + } | |
1000 | + return false; | |
1001 | + } | |
1002 | + | |
1003 | + timer = setTimeout(() => { | |
1004 | + return fn.apply(this, arguments); | |
1005 | + }, wait); | |
1006 | + return false; | |
1007 | + } | |
1008 | + }; | |
1009 | + | |
1010 | + | |
1011 | + return { | |
1012 | + variable: { | |
1013 | + icons | |
1014 | + }, | |
1015 | + util: { | |
1016 | + //自动完成框初始化 | |
1017 | + initAutoComplete, | |
1018 | + //构建Meta(provider)和Form 字段信息 | |
1019 | + bindGridMeta2Form, | |
1020 | + //构建meta信息 | |
1021 | + bindMetadata, | |
1022 | + //构建列meta信息 | |
1023 | + bindColumnsMetadata, | |
1024 | + //table-export科学计算法处理 | |
1025 | + doOnMsoNumberFormat, | |
1026 | + bexport, | |
1027 | + //列表页导出 | |
1028 | + doExport: debounce(bexport.doExport,1000,true), | |
1029 | + //URL导出 | |
1030 | + exportByUrl: debounce(bexport.exportByUrl,1000,true), | |
1031 | + //表单回显数据,加载json数据到表单 | |
1032 | + loadFormData, | |
1033 | + //获取table-row原始数据 | |
1034 | + getOriginalData, | |
1035 | + //data字段添加key前缀 | |
1036 | + addKeyStartWith, | |
1037 | + //移除data字段添加的前缀 | |
1038 | + removeKeyStartWith, | |
1039 | + //为表单number类型进行元转分 | |
1040 | + yuanToCentForMoneyEl, | |
1041 | + //反转义HTML | |
1042 | + HTMLDecode, | |
1043 | + //防抖 | |
1044 | + debounce | |
1045 | + }, | |
1046 | + //遮罩层 | |
1047 | + loading | |
1048 | + } | |
1049 | + })(); | |
1050 | + /*********************************************** 页面组件变量及处理函数 end ***********************************************************/ | |
1051 | + | |
1052 | +</script> | |
1053 | + | |
1054 | +</html><!-- main-container end --> | |
1055 | + | |
1056 | +<script> | |
1057 | + $(function () { | |
1058 | + // update/view/pay/correct/amend/invalid/refund/unfreeze | |
1059 | + | |
1060 | + var viewType = $("#viewType").val(); | |
1061 | + if(viewType =="pay"){ | |
1062 | + | |
1063 | + $("#plate").attr("readonly","true"); | |
1064 | + $("#trailerNumber").attr("readonly","true"); | |
1065 | + $("#product").attr("readonly","true"); | |
1066 | + $("#grossWeight").attr("readonly","true"); | |
1067 | + $("#tareWeight").attr("readonly","true"); | |
1068 | + $("#autocomplete-cartype").attr("readonly","true"); | |
1069 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1070 | + $("#outGreeterName").attr("disabled","true"); | |
1071 | + $("#inGreeterName").attr("readonly","true"); | |
1072 | + $("#goodsRemark").attr("readonly","true"); | |
1073 | + console.info("-----------this pay"); | |
1074 | + | |
1075 | + }else if(viewType =="view"){ | |
1076 | + $("#ic").attr("readonly","true"); | |
1077 | + $("#plate").attr("readonly","true"); | |
1078 | + $("#trailerNumber").attr("readonly","true"); | |
1079 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1080 | + $("#grossWeight").attr("readonly","true"); | |
1081 | + $("#tareWeight").attr("readonly","true"); | |
1082 | + $("#regionCode").attr("readonly","true"); | |
1083 | + $("#autocomplete-cartype").attr("readonly","true"); | |
1084 | + $("#productArea").attr("readonly","true"); | |
1085 | + $("#outGreeterName").attr("disabled","true"); | |
1086 | + $("#inGreeterName").attr("readonly","true"); | |
1087 | + $("#goodsCusName").attr("readonly","true"); | |
1088 | + $("#goodsCusTel").attr("readonly","true"); | |
1089 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1090 | + $("#remark").attr("readonly","true"); | |
1091 | + $("#goodsRemark").attr("readonly","true"); | |
1092 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1093 | + console.info("------------this view"); | |
1094 | + }else if(viewType =="update"){ | |
1095 | + $("#ic").attr("readonly","true"); | |
1096 | + $("#plate").attr("readonly","true"); | |
1097 | + $("#trailerNumber").attr("readonly","true"); | |
1098 | + $("#product").attr("readonly","true"); | |
1099 | + $("#grossWeight").attr("readonly","true"); | |
1100 | + $("#tareWeight").attr("readonly","true"); | |
1101 | + $("#regionCode").attr("readonly","true"); | |
1102 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1103 | + /*$("#productArea").attr("readonly","true");*/ | |
1104 | + $("#outGreeterName").attr("disabled","true"); | |
1105 | + $("#inGreeterName").attr("readonly","true"); | |
1106 | + $("#goodsCusName").attr("readonly","true"); | |
1107 | + $("#goodsCusTel").attr("readonly","true"); | |
1108 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1109 | + $("#goodsRemark").attr("readonly","true"); | |
1110 | + console.info("----------this modify"); | |
1111 | + }else if(viewType =="correct"){ | |
1112 | + $("#ic").attr("readonly","true"); | |
1113 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1114 | + console.info("----------this gengzheng"); | |
1115 | + }else if(viewType =="amend"){ | |
1116 | + $("#ic").attr("readonly","true"); | |
1117 | + | |
1118 | + //$("#trailerNumber").attr("readonly","true"); | |
1119 | + $("#product").attr("readonly","true"); | |
1120 | + $("#grossWeight").attr("readonly","true"); | |
1121 | + $("#tareWeight").attr("readonly","true"); | |
1122 | + $("#regionCode").attr("readonly","true"); | |
1123 | + //$("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1124 | + $("#productArea").attr("readonly","true"); | |
1125 | + $("#outGreeterName").attr("disabled","true"); | |
1126 | + $("#inGreeterName").attr("readonly","true"); | |
1127 | + $("#goodsCusName").attr("readonly","true"); | |
1128 | + $("#goodsCusTel").attr("readonly","true"); | |
1129 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1130 | + $("#goodsRemark").attr("readonly","true"); | |
1131 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1132 | + console.info("--------------this xiuzheng"); | |
1133 | + }else if(viewType =="refund"){ | |
1134 | + $("#ic").attr("readonly","true"); | |
1135 | + $("#goodsNum").attr("readonly","true"); | |
1136 | + $("#itemWeight").attr("readonly","true"); | |
1137 | + $("#plate").attr("readonly","true"); | |
1138 | + $("#trailerNumber").attr("readonly","true"); | |
1139 | + $("#autocomplete-category").attr("readonly","true"); | |
1140 | + $("#grossWeight").attr("readonly","true"); | |
1141 | + $("#tareWeight").attr("readonly","true"); | |
1142 | + $("#regionCode").attr("readonly","true"); | |
1143 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1144 | + $("#productArea").attr("readonly","true"); | |
1145 | + $("#outGreeterName").attr("disabled","true"); | |
1146 | + $("#inGreeterName").attr("readonly","true"); | |
1147 | + $("#goodsCusName").attr("readonly","true"); | |
1148 | + $("#goodsCusTel").attr("readonly","true"); | |
1149 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1150 | + /*$("#remark").attr("readonly","true");*/ | |
1151 | + $("#goodsRemark").attr("readonly","true"); | |
1152 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1153 | + console.info("-----this refund"); | |
1154 | + }else if(viewType =="invalid"){ | |
1155 | + $("#ic").attr("readonly","true"); | |
1156 | + $("#plate").attr("readonly","true"); | |
1157 | + $("#trailerNumber").attr("readonly","true"); | |
1158 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1159 | + $("#grossWeight").attr("readonly","true"); | |
1160 | + $("#tareWeight").attr("readonly","true"); | |
1161 | + $("#regionCode").attr("readonly","true"); | |
1162 | + $("#autocomplete-cartype").attr("readonly","true"); | |
1163 | + $("#productArea").attr("readonly","true"); | |
1164 | + $("#outGreeterName").attr("disabled","true"); | |
1165 | + $("#inGreeterName").attr("readonly","true"); | |
1166 | + $("#goodsCusName").attr("readonly","true"); | |
1167 | + $("#goodsCusTel").attr("readonly","true"); | |
1168 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1169 | + /*$("#remark").attr("readonly","true");*/ | |
1170 | + $("#goodsRemark").attr("readonly","true"); | |
1171 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1172 | + console.info("this invalid"); | |
1173 | + }else if(viewType =="unfreeze"){ | |
1174 | + $("#ic").attr("readonly","true"); | |
1175 | + $("#plate").attr("readonly","true"); | |
1176 | + $("#trailerNumber").attr("readonly","true"); | |
1177 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1178 | + $("#grossWeight").attr("readonly","true"); | |
1179 | + $("#tareWeight").attr("readonly","true"); | |
1180 | + $("#regionCode").attr("readonly","true"); | |
1181 | + $("#autocomplete-cartype").attr("readonly","true"); | |
1182 | + $("#productArea").attr("readonly","true"); | |
1183 | + $("#outGreeterName").attr("disabled","true"); | |
1184 | + $("#inGreeterName").attr("readonly","true"); | |
1185 | + $("#goodsCusName").attr("readonly","true"); | |
1186 | + $("#goodsCusTel").attr("readonly","true"); | |
1187 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1188 | + //$("#remark").attr("readonly","true"); | |
1189 | + $("#goodsRemark").attr("readonly","true"); | |
1190 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1191 | + console.info("this unfreeze"); | |
1192 | + }else if(viewType =="back"){ | |
1193 | + //$("#ic").attr("readonly","true"); | |
1194 | + $("#plate").attr("readonly","true"); | |
1195 | + $("#trailerNumber").attr("readonly","true"); | |
1196 | + $("#autocomplete-category").attr("readonly","true"); | |
1197 | + $("#grossWeight").attr("readonly","true"); | |
1198 | + $("#tareWeight").attr("readonly","true"); | |
1199 | + $("#regionCode").attr("readonly","true"); | |
1200 | + $("input[name='autocomplete-cartype']").attr("readonly","true"); | |
1201 | + $("#productArea").attr("readonly","true"); | |
1202 | + $("#outGreeterName").attr("disabled","true"); | |
1203 | + $("#inGreeterName").attr("readonly","true"); | |
1204 | + $("#goodsCusName").attr("readonly","true"); | |
1205 | + $("#goodsCusTel").attr("readonly","true"); | |
1206 | + $("#freezeMoneySymbol").attr("readonly","true"); | |
1207 | + $("#remark").attr("readonly","true"); | |
1208 | + $("#goodsRemark").attr("readonly","true"); | |
1209 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
1210 | + console.info("this back"); | |
1211 | + } | |
1212 | + | |
1213 | + $('input[readonly],input[disabled],textarea[readonly],textarea[disabled]').attr('tabindex', -1); | |
1214 | + }); | |
1215 | + | |
1216 | + function calculate() { | |
1217 | + console.info("this -new- calculate"); | |
1218 | + $.post("/calculate/index.action", | |
1219 | + $('#feeForm').serialize(), | |
1220 | + function (data, status) { | |
1221 | + $("#feeitemedit").html(data); | |
1222 | + showAllAmount(); | |
1223 | +// 计算后触发重新校验冻结金额 | |
1224 | + $('#freezeMoneySymbol').blur(); | |
1225 | + $("#goodsAllocation").val($("#goodsAllocationText").val()); | |
1226 | + }); | |
1227 | + } | |
1228 | + | |
1229 | + function icCheck() { | |
1230 | + var ic = $("#ic").val(); | |
1231 | + console.info(ic+"this ic check"); | |
1232 | + $.ajax({ | |
1233 | + type: 'get', | |
1234 | + url: '/api/jmsf/ajax/icCheck?ic='+ic, | |
1235 | + dataType: 'json', | |
1236 | + async: false, | |
1237 | + success: function (ret) { | |
1238 | + if (ret.code == "success") { | |
1239 | + var aInfo = ret.data.aInfo; | |
1240 | + $("#customerName").val(aInfo.name); | |
1241 | + $("#customerPhone").val(aInfo.mobile); | |
1242 | + $("#customerId").val(aInfo.customerId); | |
1243 | + $("#accountId").val(aInfo.accountId); | |
1244 | + $("#balance").val(aInfo.balanceSymbol); | |
1245 | + $("#fundAccount").val(aInfo.fundAccountId); | |
1246 | + calcTotalPrice(); | |
1247 | + } else { | |
1248 | + $("#ic").val(""); | |
1249 | + $("#customerName").val(""); | |
1250 | + $("#customerPhone").val(""); | |
1251 | + $("#customerId").val(""); | |
1252 | + $("#ic").attr("icstatus", "-1"); | |
1253 | + $("#balance").val(""); | |
1254 | + showWarning('此卡无效,不能交易!'); | |
1255 | + return false; | |
1256 | + } | |
1257 | + } | |
1258 | + }); | |
1259 | + } | |
1260 | + | |
1261 | + /** 错误消息提示框 */ | |
1262 | + function showError(message) { | |
1263 | + bs4pop.alert(message, {type : "error"}); | |
1264 | + } | |
1265 | + | |
1266 | + /** 提示消息弹出框 */ | |
1267 | + function showInfo(message) { | |
1268 | + bs4pop.alert(message, {type : "info"}); | |
1269 | + } | |
1270 | + | |
1271 | + /** 警示消息框 */ | |
1272 | + function showWarning(message) { | |
1273 | + bs4pop.alert(message, {type : "warning"}); | |
1274 | + } | |
1275 | + | |
1276 | + function viewImgNew() { | |
1277 | + var imsg = $("#imgs").val(); | |
1278 | + console.info(imsg); | |
1279 | + if (typeof (callbackObj) == "undefined") return; | |
1280 | + callbackObj.showPictureView(imsg); | |
1281 | + } | |
1282 | + | |
1283 | +</script> | |
1284 | +<script> | |
1285 | + $(()=>{ | |
1286 | + // 必填边框加红晚上看不到 | |
1287 | + $('.form-control[required]').addClass('border border-danger') | |
1288 | + }) | |
1289 | + function cancel(){ | |
1290 | + var clientRedirectTag = $("#clientRedirectTag").val(); | |
1291 | + if(clientRedirectTag=="true"){ | |
1292 | + winHrefList(); | |
1293 | + }else { | |
1294 | + var source=$("#source").val(); | |
1295 | + history.go(-source); | |
1296 | + } | |
1297 | + } | |
1298 | + //合并时,接受沈阳版本 | |
1299 | + //产地联系输入 | |
1300 | + $("#productArea").autocomplete({ | |
1301 | + noCache: 1, | |
1302 | + serviceUrl: '/api/jmsf/ajax/city/', //数据地址 | |
1303 | + //lookup: countries, 本地测试模拟数据使用结合上面的var countries | |
1304 | + dataType: 'json', | |
1305 | + onSearchComplete: function (query, suggestions) { | |
1306 | + | |
1307 | + if ($(this).data('selectVal') != $('#productArea').val()) { | |
1308 | + //console.log("1:"+$(this).data('selectVal')+"2:"+$('#productArea').val()) | |
1309 | + $("#originId").val(""); | |
1310 | + $("#parentId").val(""); | |
1311 | + } | |
1312 | + }, | |
1313 | + showNoSuggestionNotice: true, | |
1314 | + noSuggestionNotice: "不存在,请重输!", | |
1315 | + onSelect: function (suggestion) { | |
1316 | + $(this).data('selectVal', suggestion.value); | |
1317 | + setTimeout(function () { | |
1318 | + $("#productArea").val(suggestion.value); | |
1319 | + $("#originId").val(suggestion.id); | |
1320 | + $("#parentId").val(suggestion.parentId); | |
1321 | + calcTotalPrice(); | |
1322 | + }, 50); | |
1323 | + } | |
1324 | + }); | |
1325 | + | |
1326 | + // 货主姓名联想输入 | |
1327 | + $('#goodsCusName').autocomplete({ | |
1328 | + dataType: 'json', | |
1329 | + noCache: 1, | |
1330 | + serviceUrl: '/api/jmsf/ajax/customerForEntrance', //数据地址 | |
1331 | + showNoSuggestionNotice: true, | |
1332 | + noSuggestionNotice: "不存在,请重输!", | |
1333 | + onSearchComplete: function (query, suggestions) { | |
1334 | + if($(this).data('selectVal')!=$('#goodsCusName').val()){ | |
1335 | + $('#shipperId').val(''); | |
1336 | + $('#goodsCusTel').val(""); | |
1337 | + } | |
1338 | + }, | |
1339 | + onSelect: function (suggestion) { | |
1340 | + $(this).data('selectVal', suggestion.value); | |
1341 | + setTimeout(function () { | |
1342 | + $('#goodsCusName').val(suggestion.name); | |
1343 | + $('#goodsCusTel').val(suggestion.contactsPhone); | |
1344 | + $('#shipperId').val(suggestion.id); | |
1345 | + //$('#goodsCusTel').trigger("blur") | |
1346 | + calcTotalPrice(); | |
1347 | + }, 50); | |
1348 | + } | |
1349 | + }); | |
1350 | + $('#goodsCusName').blur(function () { | |
1351 | + if($(this).val()==""){ | |
1352 | + $('#shipperId').val(''); | |
1353 | + calcTotalPrice(); | |
1354 | + } | |
1355 | + }); | |
1356 | + | |
1357 | + //计算金额 | |
1358 | + $('.calculate').on("click", function () { | |
1359 | + console.log("-1--点击计算-------") | |
1360 | + $('#updateFeeItems').val(1); | |
1361 | + $('#correctDiscount').val(1); | |
1362 | + $("#gz-tag").hide(); | |
1363 | + calcTotalPrice(); | |
1364 | + | |
1365 | + }); | |
1366 | + | |
1367 | + function calcTotalPrice() { | |
1368 | + console.log("-触发计算-------") | |
1369 | + calculate(); | |
1370 | + } | |
1371 | + | |
1372 | + $('[name="dep"]').change(function () { | |
1373 | + $("#unitPrice").val(""); | |
1374 | + var departId = $(this).val(); | |
1375 | + var depName = $(this).children('option:selected').html(); | |
1376 | + $("#depName").val(depName); | |
1377 | + $("#district").empty(); | |
1378 | + $(".district-no").val(""); | |
1379 | + var defaultHtml = '<option value="">请选择</option>'; | |
1380 | + $("#district").append(defaultHtml); | |
1381 | + //console.info("-------------清空区域") | |
1382 | + findDistrict(departId); | |
1383 | + var goodId = $("#goodsId").val(); | |
1384 | + getUnitPrice(departId, goodId); | |
1385 | + calcTotalPrice(); | |
1386 | + }); | |
1387 | + $("#grossWeight").blur(function(){ | |
1388 | + calcTotalPrice(); | |
1389 | + }); | |
1390 | + $("#tareWeight").blur(function () { | |
1391 | + calcTotalPrice(); | |
1392 | + }) | |
1393 | + $('[name="feeDepId"]').change(function () { | |
1394 | + calcTotalPrice(); | |
1395 | + }); | |
1396 | + $('[name="regionId"]').change(function () { | |
1397 | + calcTotalPrice(); | |
1398 | + }); | |
1399 | + | |
1400 | + | |
1401 | + | |
1402 | + $(".district-name").change(function () { | |
1403 | + var ss = $(this).children('option:selected'); | |
1404 | + if (ss.html() != "请选择") { | |
1405 | + var reName = ss.attr("bind-name"); | |
1406 | + $("#regionName").val(reName); | |
1407 | + $(".district-no").val(ss.attr('bind-index')); | |
1408 | + } | |
1409 | + }); | |
1410 | + | |
1411 | + //$('[name="dep"]').trigger('change'); | |
1412 | + //选择货区 | |
1413 | + | |
1414 | + $('.district-no').on('input', function(){ | |
1415 | + this.value = this.value.replace(/[^\d]/g, ''); | |
1416 | + var thisVal = $(this).val(); | |
1417 | + if( thisVal !=='' && $('.district-name').find('option[bind-index=' + thisVal + ']').length ) { | |
1418 | + $('.district-name option').prop('selected', false); | |
1419 | + $('.district-name').find('option[bind-index=' + thisVal + ']').prop('selected', true); | |
1420 | + } else { | |
1421 | + $('.district-name option').prop('selected', false); | |
1422 | + $('.district-name option:first-child').prop('selected', true); | |
1423 | + } | |
1424 | + | |
1425 | + }); | |
1426 | + | |
1427 | + function findDistrict(depId) { | |
1428 | + $.ajax({ | |
1429 | + type: 'get', | |
1430 | + url: '/api/jmsf/ajax/district/search.action', | |
1431 | + data: {depId: depId}, | |
1432 | + dataType: 'json', | |
1433 | + async: false, | |
1434 | + success: function (data) { | |
1435 | + if (data.code == "200") { | |
1436 | + var array = []; | |
1437 | + var data = $.map(data.data, function (obj) { | |
1438 | + obj.text = obj.text || obj.name; | |
1439 | + return obj; | |
1440 | + }); | |
1441 | + for (var x = 0;x < data.length; x++) { | |
1442 | + array.push(data[x]); | |
1443 | + } | |
1444 | + | |
1445 | + } | |
1446 | + ret=array; | |
1447 | + for (var index = 0;index < array.length; index++){ | |
1448 | + var preTxt = ""; | |
1449 | + if(ret[index].number){ | |
1450 | + preTxt = ret[index].number + " | "; | |
1451 | + } | |
1452 | + var optionItemHtml = '<option bind-name="'+ret[index].name+'" + bind-index="' + ( ret[index].number==undefined ? '' :ret[index].number ) + '" value="' + ret[index].id + '">' + preTxt + ret[index].name + '</option>'; | |
1453 | + $("#district").append(optionItemHtml); | |
1454 | + } | |
1455 | + } | |
1456 | + }); | |
1457 | + } | |
1458 | + | |
1459 | + function getUnitPrice(depId, goodsId) { | |
1460 | + var productId = $("#productId").val(); | |
1461 | + console.info("getUnitPrice depId:"+depId+",productId:"+productId) | |
1462 | + $.ajax({ | |
1463 | + type: 'get', | |
1464 | + url: '/api/jmsf/ajax/unitPrice', | |
1465 | + data: {depId: depId, goodsId: goodsId,productId:productId}, | |
1466 | + dataType: 'json', | |
1467 | + async: false, | |
1468 | + success: function (ret) { | |
1469 | + //console.log("ret:"+ret.price+":"+ret.priceSymbol+":"+ret.sumPrice+":"+ret.sumPriceSymbol); | |
1470 | + var priceAndSumPrice = ret.priceAndSumPrice; | |
1471 | + if(priceAndSumPrice.productPrice=="0"){ | |
1472 | + $("#unitPriceSymbol").val(""); | |
1473 | + $("#sumPriceSymbol").val(""); | |
1474 | + showWarning("当前商品单价为空"); | |
1475 | + }else{ | |
1476 | + $("#unitPrice").val(priceAndSumPrice.productPrice); | |
1477 | + $("#sumPrice").val(priceAndSumPrice.sumPriceLong); | |
1478 | + $("#unitPriceSymbol").val(priceAndSumPrice.productPriceView); | |
1479 | + $("#sumPriceSymbol").val(priceAndSumPrice.sumPriceDoubleView); | |
1480 | + } | |
1481 | + | |
1482 | + //$("#weight").val(ret.weight); | |
1483 | + | |
1484 | + } | |
1485 | + }); | |
1486 | + } | |
1487 | + | |
1488 | + $("#icReader").click(function () { | |
1489 | + var ic = reader(); | |
1490 | + if (typeof(ic) == "undefined") { | |
1491 | + showWarning('请检查读卡的设备是否已连接!'); | |
1492 | + } else if (ic == -1) { | |
1493 | + showWarning('读卡异常,请重新放置卡!'); | |
1494 | + } else { | |
1495 | + icCheck(); | |
1496 | + } | |
1497 | + | |
1498 | + }); | |
1499 | + $("#bankReader").click(function () { | |
1500 | + var ic = bankReader(); | |
1501 | + if (typeof(ic) == "undefined") { | |
1502 | + showWarning('请检查读卡的设备是否已连接!'); | |
1503 | + } else if (ic == -1) { | |
1504 | + showWarning('读卡异常,请重新放置卡!'); | |
1505 | + } else { | |
1506 | + icCheck(); | |
1507 | + } | |
1508 | + | |
1509 | + }); | |
1510 | + | |
1511 | + // 读园区卡 | |
1512 | + function readerIc() { | |
1513 | + if (typeof(callbackObj) == "undefined") return false; | |
1514 | + var json = JSON.parse(callbackObj.readCardNumber()); | |
1515 | + var result = { | |
1516 | + message: json.message, | |
1517 | + card: '' | |
1518 | + } | |
1519 | + if(json.code == 0){ | |
1520 | + result['card'] = json.data; | |
1521 | + } | |
1522 | + return result; | |
1523 | + }; | |
1524 | + function reader() { | |
1525 | + var ic = readerIc() | |
1526 | + if(ic.card) { | |
1527 | + $("#ic").val(ic.card); | |
1528 | + return ic.card; | |
1529 | + } else { | |
1530 | + bs4pop.alert(ic.message, {type : "error"}); | |
1531 | + } | |
1532 | + return card; | |
1533 | + }; | |
1534 | + // 读银行卡 | |
1535 | + function readerBankIc() { | |
1536 | + if (typeof(callbackObj) == "undefined") return false; | |
1537 | + var json = JSON.parse(callbackObj.readBackCardNumber()); | |
1538 | + var result = { | |
1539 | + message: json.message, | |
1540 | + card: '' | |
1541 | + } | |
1542 | + if(json.code == 0){ | |
1543 | + result['card'] = json.data; | |
1544 | + } | |
1545 | + return result; | |
1546 | + }; | |
1547 | + function bankReader() { | |
1548 | + var ic = readerBankIc() | |
1549 | + if(ic.card) { | |
1550 | + $("#ic").val(ic.card); | |
1551 | + return ic.card; | |
1552 | + } else { | |
1553 | + bs4pop.alert(ic.message, {type : "error"}); | |
1554 | + } | |
1555 | + return card; | |
1556 | + } | |
1557 | + | |
1558 | + //园区卡输入 | |
1559 | + function onKeyUpEnter(e) { | |
1560 | + | |
1561 | + if (e.keyCode == 13) { | |
1562 | + checkCardAndCalc(); | |
1563 | + } | |
1564 | + } | |
1565 | + function checkCardAndCalc() { | |
1566 | + var ic = $("#ic").val(); | |
1567 | + if(ic == ""){ | |
1568 | + $("#ic").val(""); | |
1569 | + $("#customerName").val(""); | |
1570 | + $("#customerPhone").val(""); | |
1571 | + $("#customerId").val(""); | |
1572 | + $("#accountId").val(""); | |
1573 | + $("#ic").attr("icstatus", "-1"); | |
1574 | + $("#balance").val(""); | |
1575 | + calcTotalPrice(); | |
1576 | + } | |
1577 | + icCheck(); | |
1578 | + } | |
1579 | + function checkCard() { | |
1580 | + var ic = $("#ic").val(); | |
1581 | + if(ic == ""){ | |
1582 | + $("#ic").val(""); | |
1583 | + $("#customerName").val(""); | |
1584 | + $("#customerPhone").val(""); | |
1585 | + $("#customerId").val(""); | |
1586 | + $("#accountId").val(""); | |
1587 | + $("#ic").attr("icstatus", "-1"); | |
1588 | + $("#balance").val(""); | |
1589 | + } | |
1590 | + icCheck(); | |
1591 | + } | |
1592 | + $("#ic").blur(function(){ | |
1593 | + var viewType = $("#viewType").val(); | |
1594 | + if(viewType =="pay"){ | |
1595 | + checkCard() | |
1596 | + } | |
1597 | + }); | |
1598 | + $("#freezeMoneySymbol").blur(function () { | |
1599 | + freezeGtTotal(); | |
1600 | + }) | |
1601 | + | |
1602 | + String.prototype.replaceAll = function(s1,s2){ | |
1603 | + return this.replace(new RegExp(s1,"gm"),s2); | |
1604 | + } | |
1605 | + // 展开收起] | |
1606 | + $('.switchshow-btn').on('click', function() { | |
1607 | + if($(this).text() === '收起') { | |
1608 | + $(this).text('展开') | |
1609 | + } else { | |
1610 | + $(this).text('收起') | |
1611 | + } | |
1612 | + $(this).parent().siblings('.form-group-wrap').toggleClass('height0'); | |
1613 | + }) | |
1614 | + function myFixed(str){ | |
1615 | + var r = /^([0-9]+\.\d{2})5[0]*$/g; | |
1616 | + var r1 = /^([0-9]+\.\d{2})5[0-9]*[1-9][0-9]*$/g; | |
1617 | + if(r.test(str)){ | |
1618 | + str = str.replace(r,"$1"); | |
1619 | + } | |
1620 | + else if(r1.test(str)){ | |
1621 | + str = str.replace(r1,"$16"); | |
1622 | + } | |
1623 | + str = parseFloat(str).toFixed(0); | |
1624 | + return str; | |
1625 | + } | |
1626 | + function viewImg(){ | |
1627 | + if (typeof(callbackObj) == "undefined"){ | |
1628 | + showWarning('请检查设备是否已连接!'); | |
1629 | + return; | |
1630 | + }else{ | |
1631 | + var imgInfo = new Object(); | |
1632 | + imgInfo.image1=$("#image1").val(); | |
1633 | + imgInfo.image2=$("#image2").val(); | |
1634 | + imgInfo.image3=$("#image3").val(); | |
1635 | + imgInfo.image4=$("#image4").val(); | |
1636 | + imgInfo.image5=$("#image5").val(); | |
1637 | + imgInfo.image6=$("#image6").val(); | |
1638 | + var result =JSON.stringify(imgInfo); | |
1639 | + callbackObj.doorCaptureShow(result); | |
1640 | + } | |
1641 | + } | |
1642 | + | |
1643 | + | |
1644 | + | |
1645 | + | |
1646 | + | |
1647 | + function accDiv(arg1,arg2){ | |
1648 | + var t1=0,t2=0,r1,r2; | |
1649 | + try{ | |
1650 | + t1=arg1.toString().split(".")[1].length}catch(e){ | |
1651 | + }try{ | |
1652 | + t2=arg2.toString().split(".")[1].length}catch(e){} | |
1653 | + with(Math){ r1=Number(arg1.toString().replace(".","")) | |
1654 | + r2=Number(arg2.toString().replace(".","")) | |
1655 | + return (r1/r2)*pow(10,t2-t1); } | |
1656 | + } | |
1657 | + function accMul(arg1,arg2){ | |
1658 | + var m=0,s1=arg1.toString(), | |
1659 | + s2=arg2.toString(); | |
1660 | + try{ | |
1661 | + m+=s1.split(".")[1].length}catch(e){} | |
1662 | + try{ | |
1663 | + m+=s2.split(".")[1].length}catch(e){} | |
1664 | + return Number(s1.replace(".",""))*Number(s2.replace(".",""))/Math.pow(10,m | |
1665 | + )} | |
1666 | + function accAdd(arg1,arg2){ | |
1667 | + var r1,r2,m; | |
1668 | + try{ | |
1669 | + r1=arg1.toString().split(".")[1].length | |
1670 | + }catch(e){ | |
1671 | + r1=0} try{ | |
1672 | + r2=arg2.toString().split(".")[1].length}catch(e){r2=0} m=Math.pow(10,Math.max(r1,r2)) | |
1673 | + return (arg1*m+arg2*m)/m | |
1674 | + } | |
1675 | + Number.prototype.div = function (arg){ | |
1676 | + return accDiv(this, arg); | |
1677 | + } | |
1678 | + Number.prototype.mul = function (arg){ | |
1679 | + return accMul(arg, this); | |
1680 | + } | |
1681 | + Number.prototype.add = function (arg){ | |
1682 | + return accAdd(arg,this); | |
1683 | + } | |
1684 | +</script><script> | |
1685 | + var weightType= $("#weightType").val(); | |
1686 | + function checkPoundWeight(weightVal, errorbox) { | |
1687 | + $("#weight").val(""); | |
1688 | + var valid = true; | |
1689 | + var grossWeight = $("#grossWeight").val(); | |
1690 | + var tareWeight = $("#tareWeight").val(); | |
1691 | + if (weightVal === ''|| weightVal ==undefined) { | |
1692 | + errorbox.html("必填"); | |
1693 | + valid = false; | |
1694 | + } else if (!checkWeightInt(grossWeight, 'grossWeight')) { | |
1695 | + $('#grossWeight + .defi-error').html("请输整数"); | |
1696 | + valid = false; | |
1697 | + } else if (!checkWeightInt(tareWeight, 'tareWeight')) { | |
1698 | + $('#tareWeight + .defi-error').html("请输整数"); | |
1699 | + valid = false; | |
1700 | + } else if (0 <= weightVal && weightVal <= 999999) { | |
1701 | + if (parseInt(grossWeight) <= parseInt(tareWeight)) { | |
1702 | + errorbox.html("毛重需大于皮重"); | |
1703 | + valid = false; | |
1704 | + } else { | |
1705 | + $("#weight").val(parseInt(grossWeight) - parseInt(tareWeight)); | |
1706 | + $('#grossWeight + .defi-error, #tareWeight + .defi-error').html(""); | |
1707 | + } | |
1708 | + } else { | |
1709 | + errorbox.html("请输0到999999之间数"); | |
1710 | + valid = false; | |
1711 | + } | |
1712 | + return valid; | |
1713 | + } | |
1714 | + | |
1715 | + | |
1716 | + function checkWeightInt(weight, iderror) { | |
1717 | + var valid = false; | |
1718 | + if (/^\d+$/.test(weight)) { | |
1719 | + $('#' + iderror + ' + .defi-error').html(""); | |
1720 | + valid = true; | |
1721 | + } | |
1722 | + return valid; | |
1723 | + } | |
1724 | + | |
1725 | + | |
1726 | + function sumWeight() { | |
1727 | + var num = $("#goodsNum").val(); | |
1728 | + var itemW = $("#itemWeight").val(); | |
1729 | + $("#weight").val(num * itemW); | |
1730 | + } | |
1731 | + | |
1732 | + | |
1733 | + if (weightType== 1) { //整车称重 | |
1734 | + $("#grossWeight").change(function () { | |
1735 | + checkPoundWeight($(this).val(), $("#grossWeighterror")) | |
1736 | + }); | |
1737 | + | |
1738 | + $("#tareWeight").change(function () { | |
1739 | + checkPoundWeight($(this).val(), $("#tareWeighterror")) | |
1740 | + | |
1741 | + }); | |
1742 | + } else { | |
1743 | + $("#goodsNum").keyup(function () { | |
1744 | + sumWeight(); | |
1745 | + }); | |
1746 | + $("#itemWeight").keyup(function () { | |
1747 | + sumWeight(); | |
1748 | + }); | |
1749 | + } | |
1750 | + | |
1751 | + | |
1752 | + // 验证-- | |
1753 | + $('form').validate(); | |
1754 | + | |
1755 | + $("#save_btn").click(function () { | |
1756 | + //checkCard(); | |
1757 | + var viewType= $("#viewType").val(); | |
1758 | + if(viewType=='pay' ||viewType=='update'){ | |
1759 | + if($("#handReceivableAmountLong").val()>0){ | |
1760 | + var steveTeams = $("#steveTeams").children('option:selected').val(); | |
1761 | + if(steveTeams==undefined || steveTeams == ""){ | |
1762 | + flag = true; | |
1763 | + bs4pop.confirm('请选择装卸队!', { | |
1764 | + type: 0, | |
1765 | + title: '提示', | |
1766 | + btn: ['确定'] | |
1767 | + }); | |
1768 | + return true; | |
1769 | + } | |
1770 | + } | |
1771 | + } | |
1772 | + | |
1773 | + | |
1774 | + if ($("#customerId").val() == "" && $("#ic").val() != "") { | |
1775 | + $("#customerId + label.error").text("不存在,请重输") | |
1776 | + return; | |
1777 | + } | |
1778 | + | |
1779 | + var fp = $("#freezePriceError").html(); | |
1780 | + if (fp!=undefined && fp != "") { | |
1781 | + return; | |
1782 | + } | |
1783 | + var fp = $("#freezeMoneySymbol-error").html(); | |
1784 | + if (fp!=undefined && fp != "") { | |
1785 | + return; | |
1786 | + } | |
1787 | + | |
1788 | + if ($("#feeForm").validate().form() === true) { | |
1789 | + var canSubmit = true; | |
1790 | + if ($("#productArea").val() == "" || ($("#productArea").val() != "" && $("#originId").val() != "")) { | |
1791 | + | |
1792 | + } else { | |
1793 | + $("#productArea + label.error").text("不存在,请重输") | |
1794 | + canSubmit = false; | |
1795 | + } | |
1796 | + | |
1797 | + if (weightType != "2") { | |
1798 | + if ($("#carType").val() != "") { | |
1799 | + } else { | |
1800 | + $("#carType + label.error").text("不存在,请重输") | |
1801 | + | |
1802 | + canSubmit = false; | |
1803 | + } | |
1804 | + } | |
1805 | + if ($("#productId").val() != "") { | |
1806 | + | |
1807 | + } else { | |
1808 | + $("#productId+ label.error").text("不存在,请重输") | |
1809 | + canSubmit = false; | |
1810 | + } | |
1811 | + | |
1812 | + if ($("#inGreeterId").val() != "") { | |
1813 | + } else { | |
1814 | + $("#inGreeterId + label.error").text("不存在,请重输") | |
1815 | + | |
1816 | + canSubmit = false; | |
1817 | + } | |
1818 | + if ($("#outGreeterName").val() != "" && $("#outGreeterId").val() == "") { | |
1819 | + $("#outGreeterId + label.error").text("不存在,请重输") | |
1820 | + canSubmit = false; | |
1821 | + } | |
1822 | + $('.feeitemedit .fees').each(function(){ | |
1823 | + if(this.value === '') { | |
1824 | + bs4pop.alert("项目收费金额不能为空或小于0", {type: 0}); | |
1825 | + canSubmit = false; | |
1826 | + } | |
1827 | + }) | |
1828 | + if(optType=="gz" && weightType==1){ | |
1829 | + if (!checkPoundWeight($("#grossWeight").val(), $("#grossWeighterror")) || !checkPoundWeight($("#tareWeight").val(), $("#tareWeighterror"))) { | |
1830 | + canSubmit = false; | |
1831 | + } | |
1832 | + } | |
1833 | + | |
1834 | + | |
1835 | + var itemErrorCount = $('#feeitemedit .singleRealfee.red').length; | |
1836 | + console.log("itemErrorCount:"+itemErrorCount); | |
1837 | + if(itemErrorCount>0){ | |
1838 | + canSubmit = false; | |
1839 | + bs4pop.confirm('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!', { | |
1840 | + type: 0, | |
1841 | + title: '提示', | |
1842 | + btn: ['确定'] | |
1843 | + }); | |
1844 | + return true; | |
1845 | + } | |
1846 | + if('sy'==$("#marketFlag").val()){ | |
1847 | + var carTypeID = $("#carType").val(); | |
1848 | + if(carTypeID==5||carTypeID==6){ | |
1849 | + var trailerNumber =$("#trailerNumber").val(); | |
1850 | + if(trailerNumber == ""){ | |
1851 | + canSubmit = false; | |
1852 | + bs4pop.confirm('该车型需要填挂号!', { | |
1853 | + type: 0, | |
1854 | + title: '提示', | |
1855 | + btn: ['确定'] | |
1856 | + }); | |
1857 | + return true; | |
1858 | + } | |
1859 | + } | |
1860 | + } | |
1861 | + | |
1862 | + if (canSubmit) { | |
1863 | + $.ajax({ | |
1864 | + type: 'post', | |
1865 | + url: '/entranceFeeBill/edit', | |
1866 | + data: $('#feeForm').serialize(), | |
1867 | + dataType: 'json', | |
1868 | + async: false, | |
1869 | + success: function (ret) { | |
1870 | + if (ret.success == true) { | |
1871 | + //TLOG.component.editNewData($('#feeForm'),$("#number").val()); | |
1872 | + bs4pop.alert(ret.msg, {type: 0}, function () { | |
1873 | + history.go(-1); | |
1874 | + }); | |
1875 | + }else{ | |
1876 | + bs4pop.alert(ret.msg, {type: 0}); | |
1877 | + } | |
1878 | + }, | |
1879 | + error: function () { | |
1880 | + bs4pop.alert("修改失败,请稍后重试!", {type: 0}, function () { | |
1881 | + history.go(-1); | |
1882 | + }); | |
1883 | + } | |
1884 | + }); | |
1885 | + } | |
1886 | + } | |
1887 | + }); | |
1888 | + | |
1889 | + | |
1890 | + $("#proveType").change(function () { | |
1891 | + var ss = $(this).children('option:selected'); | |
1892 | + $("#proveTypeName").val(ss.html()); | |
1893 | + calcTotalPrice(); | |
1894 | + }); | |
1895 | + $('[name="goodsTagIds"]').change(function () { | |
1896 | + calcTotalPrice(); | |
1897 | + }); | |
1898 | + | |
1899 | + // 车型联想 | |
1900 | + $('#autocomplete-cartype').autocomplete({ | |
1901 | + dataType: 'json', | |
1902 | + noCache: 1, | |
1903 | + serviceUrl: '/api/jmsf/ajax/ctc', //数据地址 | |
1904 | + showNoSuggestionNotice: true, | |
1905 | + noSuggestionNotice: "不存在,请重输!", | |
1906 | + onSearchComplete: function (query, suggestions) { | |
1907 | + var has = false; | |
1908 | + if (suggestions && suggestions.length > 0) { | |
1909 | + for (var i = 0; i < suggestions.length; i++) { | |
1910 | + if (suggestions[i].value == $('#autocomplete-cartype').val()) { | |
1911 | + has = true; | |
1912 | + break; | |
1913 | + } | |
1914 | + } | |
1915 | + } | |
1916 | + if ($(this).data('selectVal') != $('#autocomplete-cartype').val() && !has) { | |
1917 | + $("#carType").val(""); | |
1918 | + $("#ctypew").val(""); | |
1919 | + } | |
1920 | +// if (suggestions.length == 0) { | |
1921 | +// $('.autocomplete-suggestions').eq(0).show(); | |
1922 | +// $('.autocomplete-suggestions').eq(0).html('<span>该车型名称不存在,请重新输入</span>'); | |
1923 | +// } | |
1924 | + }, | |
1925 | + onSelect: function (suggestion) { | |
1926 | + $(this).data('selectVal', suggestion.value); | |
1927 | + $("#autocomplete-cartype").val(suggestion.value); | |
1928 | + $("#carTypeId").val(suggestion.id); | |
1929 | + $("#ctypew").val(suggestion.data); | |
1930 | + $("#carTypeName").val(suggestion.name); | |
1931 | + $("#carTypeCode").val(suggestion.code); | |
1932 | + $("#autocomplete-cartype-error").text(""); | |
1933 | + if('' == 1){ | |
1934 | + console.info("hasBackSkin true"); | |
1935 | + }else { | |
1936 | + console.info("hasBackSkin false"); | |
1937 | + if (weightType== 1) { //整车称重 | |
1938 | + $("#tareWeight").val(suggestion.data); | |
1939 | + if(suggestion.data ==undefined){ | |
1940 | + $("#autocomplete-cartype-error").text("公共车型自重未配置"); | |
1941 | + } | |
1942 | + checkPoundWeight(suggestion.data, $("#tareWeighterror")) | |
1943 | + } | |
1944 | + } | |
1945 | + | |
1946 | + calcTotalPrice(); | |
1947 | + } | |
1948 | + }); | |
1949 | + | |
1950 | + //商品联想 | |
1951 | + $('#autocomplete-category').autocomplete({ | |
1952 | + serviceUrl: '/api/jmsf/ajax/category', | |
1953 | + dataType: 'json', | |
1954 | + noCache: 1, | |
1955 | + params: {'allFlag': false}, | |
1956 | + showNoSuggestionNotice: true, | |
1957 | + noSuggestionNotice: "不存在,请重输!", | |
1958 | + onSearchComplete: function (query, suggestions) { | |
1959 | + var has = false; | |
1960 | + if (suggestions && suggestions.length > 0) { | |
1961 | + for (var i = 0; i < suggestions.length; i++) { | |
1962 | + if (suggestions[i].value == $('#autocomplete-category').val()) { | |
1963 | + has = true; | |
1964 | + break; | |
1965 | + } | |
1966 | + } | |
1967 | + } | |
1968 | + if ($(this).data('selectVal') != $('#autocomplete-category').val() && !has) { | |
1969 | + $("#productId").val(""); | |
1970 | + } | |
1971 | + | |
1972 | + }, | |
1973 | + onSelect: function (suggestion) { | |
1974 | + $(this).data('selectVal', suggestion.value); | |
1975 | + $("#autocomplete-category").val(suggestion.value); | |
1976 | + $("#productId").val(suggestion.id); | |
1977 | + $("#parentName").val(suggestion.parentName); | |
1978 | + if(suggestion.parent==0){ | |
1979 | + $("#categoryId").val(suggestion.id); | |
1980 | + }else { | |
1981 | + $("#categoryId").val(suggestion.parent); | |
1982 | + } | |
1983 | + $("#autocomplete-category + label.error").text(""); | |
1984 | + calcTotalPrice(); | |
1985 | + findHandTeam(); | |
1986 | + } | |
1987 | + }); | |
1988 | + | |
1989 | + $("#autocomplete-cartype").keyup(function () { | |
1990 | + if ($(this).val() == "" && '1' == 1) { | |
1991 | + $("#ctypew").val(""); | |
1992 | + } | |
1993 | + }); | |
1994 | + | |
1995 | + $('#inGreeterName').autocomplete({ | |
1996 | + serviceUrl: '/api/jmsf/ajax/greeteName', | |
1997 | + dataType: 'json', | |
1998 | + noCache: 1, | |
1999 | + params: {'allFlag': false}, | |
2000 | + showNoSuggestionNotice: true, | |
2001 | + noSuggestionNotice: "不存在,请重输!", | |
2002 | + onSearchComplete: function (query, suggestions) { | |
2003 | + var has = false; | |
2004 | + if (suggestions && suggestions.length > 0) { | |
2005 | + for (var i = 0; i < suggestions.length; i++) { | |
2006 | + if (suggestions[i].value == $('#inGreeterName').val()) { | |
2007 | + has = true; | |
2008 | + break; | |
2009 | + } | |
2010 | + } | |
2011 | + } | |
2012 | + if ($(this).data('selectVal') != $('#inGreeterName').val() && !has) { | |
2013 | + $("#inGreeterId").val(""); | |
2014 | + } | |
2015 | + }, | |
2016 | + onSelect: function (suggestion) { | |
2017 | + $(this).data('selectVal', suggestion.value); | |
2018 | + $("#inGreeterName").val(suggestion.name); | |
2019 | + $("#inGreeterId").val(suggestion.data); | |
2020 | + $("#inGreeterName + label.error").text(""); | |
2021 | + | |
2022 | + } | |
2023 | + }); | |
2024 | + | |
2025 | + $('#outGreeterName').autocomplete({ | |
2026 | + serviceUrl: '/api/jmsf/ajax/greeteName', | |
2027 | + dataType: 'json', | |
2028 | + noCache: 1, | |
2029 | + params: {'allFlag': false}, | |
2030 | + showNoSuggestionNotice: true, | |
2031 | + noSuggestionNotice: "不存在,请重输!", | |
2032 | + onSearchComplete: function (query, suggestions) { | |
2033 | + var has = false; | |
2034 | + if (suggestions && suggestions.length > 0) { | |
2035 | + for (var i = 0; i < suggestions.length; i++) { | |
2036 | + if (suggestions[i].value == $('#outGreeterName').val()) { | |
2037 | + has = true; | |
2038 | + break; | |
2039 | + } | |
2040 | + } | |
2041 | + } | |
2042 | + if ($(this).data('selectVal') != $('#outGreeterName').val() && !has) { | |
2043 | + $("#outGreeterId").val(""); | |
2044 | + } | |
2045 | + console.log(suggestions.length); | |
2046 | + }, | |
2047 | + onSelect: function (suggestion) { | |
2048 | + $(this).data('selectVal', suggestion.value); | |
2049 | + $("#outGreeterName").val(suggestion.name); | |
2050 | + $("#outGreeterId").val(suggestion.data); | |
2051 | + $("#outGreeterName + label.error").text(""); | |
2052 | + | |
2053 | + } | |
2054 | + }); | |
2055 | + | |
2056 | + // 修改项目金额时仅收费项目可改 | |
2057 | + $('.modify-feeitem').on('click', function() { | |
2058 | + $('#feeitemedit .chargeitem :checked').siblings('.fees').attr('readonly', false); | |
2059 | + /*$('#feeitemedit .chargeitem :checked').next('.fees').each(function () { | |
2060 | + $(this).attr("readonly", false); | |
2061 | + })*/ | |
2062 | + $('#updateFeeItems').val(2); | |
2063 | + $('#correctDiscount').val(2); | |
2064 | + $("input[name='billItemCheckIds']").each(function () { | |
2065 | + $(this).attr("onclick", "return false"); | |
2066 | + }) | |
2067 | + }) | |
2068 | + | |
2069 | + | |
2070 | + /*****************************************自定义事件区 end**************************************/ | |
2071 | +</script><script> | |
2072 | + | |
2073 | + function winHrefList(){ | |
2074 | + window.location.href = "http://jmsf.diligrp.com/entranceFeeBill/list.html" | |
2075 | + } | |
2076 | + // 验证-- | |
2077 | + $('form').validate(); | |
2078 | + $('#pay-btn').on('click', function(){ | |
2079 | + $("#optType").val(1); | |
2080 | + doBiz(1,""); | |
2081 | + }); | |
2082 | + // 仅冻结页面校验冻结金额>缴费金额 | |
2083 | + function freezeGtTotal() { | |
2084 | + if($("#marketFlag").val()=='cc'){ | |
2085 | + freezeGtTotalCC(); | |
2086 | + }else { | |
2087 | + freezeGtTotalSY(); | |
2088 | + } | |
2089 | + } | |
2090 | + function freezeGtTotalSY() { | |
2091 | + var price = $("#freezeMoneySymbol").val(); | |
2092 | + if(price == undefined || price == ""){ | |
2093 | + $("#freezeMoneySymbol").val("0"); | |
2094 | + price = "0"; | |
2095 | + } | |
2096 | + price=price.replace(new RegExp(",", 'g'), "") | |
2097 | + var freezePrice = new Number(price); | |
2098 | + var totalFreeze = $("#freezePriceVal").val(); | |
2099 | + totalFreeze=totalFreeze.replace(new RegExp(",", 'g'),""); | |
2100 | + var totalPrice = new Number(totalFreeze); | |
2101 | + if(freezePrice<totalPrice){ | |
2102 | + var error = $("#freezeMoneySymbol-error"); | |
2103 | + if(error==undefined || error.text()==""){ | |
2104 | + $("#freezePriceError").html("不能小于所有费用项的应收金额之和") | |
2105 | + $("#freezeMoneySymbol").attr("aria-invalid",true); | |
2106 | + $("#freezeMoneySymbol").removeClass("is-valid"); | |
2107 | + $("#freezeMoneySymbol").addClass("is-invalid"); | |
2108 | + return false; | |
2109 | + }else { | |
2110 | + $("#freezePriceError").html(""); | |
2111 | + } | |
2112 | + }else { | |
2113 | + $("#freezePriceError").html("") | |
2114 | + } | |
2115 | + $("#freezePrice").val(price) | |
2116 | + } | |
2117 | + | |
2118 | + // 仅冻结页面校验冻结金额>缴费金额 | |
2119 | + function freezeGtTotalCC() { | |
2120 | + var price = $("#freezeMoneySymbol").val(); | |
2121 | + if(price == undefined || price == ""){ | |
2122 | + $("#freezeMoneySymbol").val("0"); | |
2123 | + price = "0"; | |
2124 | + } | |
2125 | + price=price.replace(new RegExp(",", 'g'), "") | |
2126 | + var freezePrice = new Number(price); | |
2127 | + if (freezePrice<=0){ | |
2128 | + var error = $("#freezeMoneySymbol-error"); | |
2129 | + if(error==undefined || error.text()==""){ | |
2130 | + $("#freezePriceError").html("冻结金额不能小于1") | |
2131 | + return false; | |
2132 | + }else { | |
2133 | + $("#freezePriceError").html(""); | |
2134 | + } | |
2135 | + }else { | |
2136 | + $("#freezePriceError").html("") | |
2137 | + } | |
2138 | + $("#freezePrice").val(price) | |
2139 | + } | |
2140 | + | |
2141 | + $('#freeze-btn-auth').on('click', function(){ | |
2142 | + freezeGtTotal(); | |
2143 | + $("#optType").val(2); | |
2144 | + doBiz(2,""); | |
2145 | + }); | |
2146 | + $('#freeze-btn').on('click', function(){ | |
2147 | + $("#optType").val(2); | |
2148 | + doBiz(2,""); | |
2149 | + }); | |
2150 | + $('#unfreeze-btn').on('click', function(){ | |
2151 | + $("#optType").val(3); | |
2152 | + doBiz(3,""); | |
2153 | + }); | |
2154 | + | |
2155 | + function checkInfo(type) { | |
2156 | + var flag = false; | |
2157 | + var parea =$("#productArea").val(); | |
2158 | + var fp = $("#freezePriceError").html(); | |
2159 | + if (fp!=undefined && fp != "") { | |
2160 | + return true; | |
2161 | + } | |
2162 | + | |
2163 | + $("#feeForm").validate(); | |
2164 | + if($("#feeForm").validate().form() != true){ | |
2165 | + return true; | |
2166 | + } | |
2167 | + | |
2168 | + if(parea!=undefined && parea.length>0){ | |
2169 | + var oid= $("#originId").val(); | |
2170 | + if(oid!=null && oid.length == 0){ | |
2171 | + flag = true; | |
2172 | + showWarning('请选择正确的货物产地!'); | |
2173 | + //bs4pop.alert('请选择正确的货物产地!', {type: 'error'}); | |
2174 | + } | |
2175 | + } | |
2176 | + if(flag){ | |
2177 | + return true; | |
2178 | + } | |
2179 | + if(type == 1){ | |
2180 | + if($("#handReceivableAmountLong").val()>0){ | |
2181 | + var steveRatio = $("#handlingRatio").children('option:selected').val(); | |
2182 | + if(steveRatio==undefined || steveRatio == ""){ | |
2183 | + flag = true; | |
2184 | + showWarning('请选择卸货比例!'); | |
2185 | + return true; | |
2186 | + } | |
2187 | + } | |
2188 | + } | |
2189 | + if(flag){ | |
2190 | + return true; | |
2191 | + } | |
2192 | + if(type!=3){//type为3是解冻 | |
2193 | + | |
2194 | + if($("#handReceivableAmountLong").val()>0){ | |
2195 | + | |
2196 | + var steveTeams = $("#steveTeams").children('option:selected').val(); | |
2197 | + if(steveTeams==undefined || steveTeams == ""){ | |
2198 | + flag = true; | |
2199 | + showWarning('请选择装卸队!'); | |
2200 | + return true; | |
2201 | + } | |
2202 | + } | |
2203 | + | |
2204 | + | |
2205 | + var checkItemAllZero = $("#checkItemAllZero").val(); | |
2206 | + | |
2207 | + if (!$("#unitPrice").val() || $("#unitPrice").val() == 0) { | |
2208 | + flag = true; | |
2209 | + //bs4pop.alert('当前商品单价为空', {type: 0}); | |
2210 | + showWarning('当前商品单价为空!'); | |
2211 | + return true; | |
2212 | + } | |
2213 | + | |
2214 | + if(checkItemAllZero == "0"){ | |
2215 | + flag = true; | |
2216 | + showWarning('收费项目,没有匹配任何计费规则!'); | |
2217 | + return true; | |
2218 | + } | |
2219 | + var itemErrorCount = $('#feeitemedit .singleRealfee.red').length; | |
2220 | + console.log("itemErrorCount:"+itemErrorCount); | |
2221 | + if(itemErrorCount>0){ | |
2222 | + flag = true; | |
2223 | + showWarning('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!'); | |
2224 | + //bs4pop.alert('收费项目实收栏目,有为负的金额,请调整收费项或相应计费规则!', {type: 'error'}); | |
2225 | + | |
2226 | + return true; | |
2227 | + } | |
2228 | + //变更 | |
2229 | + var totalMoney = $("#totalAmount").val(); | |
2230 | + var freezePrice = $("#freezePrice").val(); | |
2231 | + var receivable = $("#receivableAmount").val(); | |
2232 | + var discount = $("#discountAmountLong").val(); | |
2233 | + var receivableNum = new Number(receivable); | |
2234 | + var discountNum = new Number(discount); | |
2235 | + console.log("应收:"+receivableNum+",优惠:"+discountNum+",实收:"+totalMoney+",代收:"+$("#handCollectionAmount").val()); | |
2236 | + if(receivableNum<discountNum){ | |
2237 | + flag = true; | |
2238 | + showWarning('优惠总额已超出应收金额,无法交费!'); | |
2239 | + //bs4pop.alert('优惠总额已超出应收金额,无法交费!', {type: 'error'}); | |
2240 | + return true; | |
2241 | + } | |
2242 | + } | |
2243 | + if(flag){ | |
2244 | + return true; | |
2245 | + } | |
2246 | + /*var shipperId = $("#shipperId").val(); | |
2247 | + if(shipperId==""){ | |
2248 | + flag = true; | |
2249 | + bs4pop.confirm('该货主不存在!', { | |
2250 | + type: 0, | |
2251 | + title: '提示', | |
2252 | + btn: ['确定'] | |
2253 | + }); | |
2254 | + } | |
2255 | + if(flag){ | |
2256 | + return true; | |
2257 | + }*/ | |
2258 | + var actualMoneySymbol = $("#actualMoneySymbol").val(); | |
2259 | + var ic = $("#ic").val(); | |
2260 | + var id = $("#idFee").val(); | |
2261 | + | |
2262 | + var icstatus = $("#ic").attr("icstatus"); | |
2263 | + if(icstatus != 1){ | |
2264 | + flag = true; | |
2265 | + showWarning('此卡异常,不能交易!'); | |
2266 | + } | |
2267 | + if(flag){ | |
2268 | + return true; | |
2269 | + } | |
2270 | + if(type!=3) { | |
2271 | + icCheck(); | |
2272 | + } | |
2273 | + if(flag){ | |
2274 | + return true; | |
2275 | + }else { | |
2276 | + return false; | |
2277 | + } | |
2278 | + } | |
2279 | + | |
2280 | + function doBiz(type,authIc){ | |
2281 | + if(checkInfo(type)) { | |
2282 | + return; | |
2283 | + } | |
2284 | + if(type==2){//"冻结" | |
2285 | + //授权需注释掉 | |
2286 | + openFrame(2,"");return; | |
2287 | + layer.open({ | |
2288 | + area: ['400px', '200px'], | |
2289 | + title: '冻结授权', | |
2290 | + content: ['/entranceFeeBill/auth.do', 'no'], //iframe的url | |
2291 | + btn: ['确定', '取消'], | |
2292 | + yes: function (index, layero) { | |
2293 | + //var ic = "aaa"; | |
2294 | + var ic = reader(); | |
2295 | + if (typeof(ic) == "undefined") { | |
2296 | + showWarning('请检查读卡的设备是否已连接!'); | |
2297 | + } else if (ic == -1) { | |
2298 | + showWarning('读卡异常,请重新放置卡!'); | |
2299 | + } else { | |
2300 | + var u = ic; | |
2301 | + $.ajax({ | |
2302 | + url: "http://mg.nong12.com/loginControl/doLoginForNumber.do", | |
2303 | + dataType: 'jsonp', | |
2304 | + data: {number: ic, type: 1}, | |
2305 | + jsonp: 'callback', | |
2306 | + async:true, | |
2307 | + success: function (result) { | |
2308 | + var status = $("#status").val(); | |
2309 | + var id = $("#idFee").val(); | |
2310 | + if (result.success == true) { | |
2311 | + var url = '/entranceFeeBillPay/toPayOpt/2/1?id=' + id + '&status=' + status + "&ic=" + ic; | |
2312 | + $.ajax({ | |
2313 | + type: 'get', | |
2314 | + url: url + "&authKey=" + result.sessionId, | |
2315 | + success: function (ret) { | |
2316 | + openFrame(2,ic); | |
2317 | + }, | |
2318 | + error: function () { | |
2319 | + showWarning('该用户当前无冻结操作权限,请先确认已开通!'); | |
2320 | + } | |
2321 | + }); | |
2322 | + | |
2323 | + } else { | |
2324 | + showWarning('该用户当前无冻结操作权限,请先确认已开通!'); | |
2325 | + } | |
2326 | + }, | |
2327 | + timeout: 3000 | |
2328 | + }); | |
2329 | + } | |
2330 | + //按钮【确认】的回调 | |
2331 | +// layer.close(index); | |
2332 | + }, | |
2333 | + btn2: function (index, layero) { | |
2334 | + layer.close(index); | |
2335 | + } | |
2336 | + }); | |
2337 | + }else{ | |
2338 | + //交费 | |
2339 | + var uItem =$("#updateFeeItems").val(); | |
2340 | + if(uItem == 2 && type==1){ | |
2341 | + $("#gz-tag").show(); | |
2342 | + | |
2343 | + bs4pop.confirm('当前收费单系统记录提示更正过收费项目费用,因此各收费项费用和收费总额不会自动更新,请确认是否按照当前费用进行交费?', { | |
2344 | + type: 0, | |
2345 | + title: '提示', | |
2346 | + btn: ['确定', '取消'], | |
2347 | + yes: function (index, layero) { | |
2348 | + openFrame(type,authIc); | |
2349 | + }, | |
2350 | + btn2: function (index, bs4popo) { | |
2351 | + | |
2352 | + } | |
2353 | + }) | |
2354 | + }else{ | |
2355 | + openFrame(type,authIc); | |
2356 | + } | |
2357 | + } | |
2358 | + | |
2359 | + } | |
2360 | + function openFrame(type,authIc) { | |
2361 | + var status = $("#status").val(); | |
2362 | + var height = "450px"; | |
2363 | + | |
2364 | + var iccategroy = $("#ic").attr("iccategroy"); | |
2365 | + if(iccategroy == 30){ | |
2366 | + var height = "360px"; | |
2367 | + | |
2368 | + } | |
2369 | + var opttext = "交费"; | |
2370 | + var id=$("#idFee").val(); | |
2371 | + var totalMoney = $("#totalAmount").val(); | |
2372 | + if(totalMoney == ""){ | |
2373 | + totalMoney = 0; | |
2374 | + } | |
2375 | + var freezePrice = $("#freezeMoneySymbol").val(); | |
2376 | + var ic = $("#ic").val(); | |
2377 | + var id = $("#idFee").val(); | |
2378 | + var pwdUrl ='/entranceFeeBill/payPassword.action?id='+id+'&totalMoney='+totalMoney+"&ic="+ic+"&type="+type+"&icAuth="+authIc+"&freezePrice="+freezePrice; | |
2379 | + var doUrl='/entranceTrade/doPay.action' | |
2380 | + | |
2381 | + if(type==2){ | |
2382 | + opttext="冻结" | |
2383 | + }else if(type==3){ | |
2384 | + opttext="解冻" | |
2385 | + doUrl='/entranceTrade/unfreeze.action'; | |
2386 | + } | |
2387 | + $("#optUrl").val(doUrl); | |
2388 | + var flag = false; | |
2389 | + payClickHandler(pwdUrl) | |
2390 | + } | |
2391 | + function printDirect1(id,type) { | |
2392 | + console.info("不用了。。。payJs printDirect") | |
2393 | + if($("#marketFlag").val()=='cc'){ | |
2394 | + printDirectCC(id,type); | |
2395 | + }else { | |
2396 | + printDirectSY(id,type); | |
2397 | + } | |
2398 | + } | |
2399 | + function printDirectCC(id,type){ | |
2400 | + | |
2401 | + var isPreview=2;// 1 预览,0:打印;2:直接打印 | |
2402 | + var reprint = 0;//1补打;0:打印 | |
2403 | + var status = $("#status").val(); | |
2404 | + if(typeof callbackObj != 'undefined'){ | |
2405 | + window.printFinish=function(){ | |
2406 | + if(isPreview == "2"){ | |
2407 | + if(type == 1){ | |
2408 | + /* bs4pop.alert("交费成功", {type: 0}, function () { | |
2409 | + history.go(-source); | |
2410 | + });*/ | |
2411 | + bs4pop.confirm('交费成功', { | |
2412 | + icon: 1, | |
2413 | + type: 0, | |
2414 | + title: '提示', | |
2415 | + btn: ['前往称重', '继续交费'], | |
2416 | + yes: function(index, layero){ | |
2417 | + //cancel(); | |
2418 | + callbackObj.doorWeightShow("http://jmsf.diligrp.com:8385/entranceFeeBill/list.html"); | |
2419 | + }, | |
2420 | + btn2: function(index, layero){ | |
2421 | + cancel(); | |
2422 | + } | |
2423 | + }); | |
2424 | + }else if(type == 2){ | |
2425 | + /*layer.alert("冻结成功", {type: 0}, function () { | |
2426 | + history.go(-source); | |
2427 | + });*/ | |
2428 | + bs4pop.confirm('冻结成功', { | |
2429 | + icon: 1, | |
2430 | + type: 0, | |
2431 | + title: '提示', | |
2432 | + btn: ['前往称重', '继续交费'], | |
2433 | + yes: function(index, layero){ | |
2434 | + callbackObj.doorWeightShow("http://jmsf.diligrp.com:8385/entranceFeeBill/list.html"); | |
2435 | + }, | |
2436 | + btn2: function(index, layero){ | |
2437 | + cancel(); | |
2438 | + } | |
2439 | + }); | |
2440 | + }else{ | |
2441 | + bs4pop.alert("解冻成功", {type: 0}, function () { | |
2442 | + cancel(); | |
2443 | + }); | |
2444 | + | |
2445 | + } | |
2446 | + } | |
2447 | + } | |
2448 | + | |
2449 | + var paramStr =""; | |
2450 | + if(isPreview == "1"){ | |
2451 | + paramStr = loadPrintHtmlData(); | |
2452 | + }else{ | |
2453 | + var data=loadPrintData(id,reprint); | |
2454 | + if(!data){ | |
2455 | + return; | |
2456 | + } | |
2457 | + paramStr = JSON.stringify(data.item); | |
2458 | + } | |
2459 | + if(paramStr==""){ | |
2460 | + return; | |
2461 | + } | |
2462 | + console.log("--:"+paramStr); | |
2463 | + callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | |
2464 | + | |
2465 | + if(type == 1){ | |
2466 | + var feedbackAmount = $("#collectionAmount").val(); | |
2467 | + if(feedbackAmount>0){ | |
2468 | + var dataFeedbackOrderStr= loadFeedbackPrintData(id,reprint); | |
2469 | + if(!dataFeedbackOrderStr){ | |
2470 | + }else{ | |
2471 | + var paramFeedbackOrderStr = JSON.stringify(dataFeedbackOrderStr.item); | |
2472 | + callbackObj.printDirect(paramFeedbackOrderStr,"DoorStatementsDocument"); | |
2473 | + } | |
2474 | + } | |
2475 | + } | |
2476 | + }else{ | |
2477 | + showWarning('请检查打印的设备是否已连接'); | |
2478 | + } | |
2479 | + } | |
2480 | + function printDirectSY(id,type){ | |
2481 | + var source=$("#source").val(); | |
2482 | + | |
2483 | + var isPreview=2;// 1 预览,0:打印;2:直接打印 | |
2484 | + var reprint = 0;//1补打;0:打印 | |
2485 | + var status = $("#status").val(); | |
2486 | + if(typeof callbackObj != 'undefined'){ | |
2487 | + window.printFinish=function(){ | |
2488 | + if(isPreview == "2"){ | |
2489 | + if(type == 1){ | |
2490 | + bs4pop.alert("交费成功", {type: 0}, function () { | |
2491 | + history.go(-source); | |
2492 | + }); | |
2493 | + }else if(type == 2){ | |
2494 | + bs4pop.alert("冻结成功", {type: 0}, function () { | |
2495 | + history.go(-source); | |
2496 | + }); | |
2497 | + }else{ | |
2498 | + bs4pop.alert("解冻成功", {type: 0}, function () { | |
2499 | + history.go(-1); | |
2500 | + }); | |
2501 | + } | |
2502 | + } | |
2503 | + } | |
2504 | + | |
2505 | + var paramStr =""; | |
2506 | + if(isPreview == "1"){ | |
2507 | + paramStr = loadPrintHtmlData(); | |
2508 | + console.log("-1-打印预览信息:"+paramStr); | |
2509 | + callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | |
2510 | + return | |
2511 | + }else{ | |
2512 | + var data=loadPrintData(id,reprint); | |
2513 | + if(!data){ | |
2514 | + return; | |
2515 | + } | |
2516 | + paramStr = JSON.stringify(data.item); | |
2517 | + } | |
2518 | + if(paramStr==""){ | |
2519 | + return; | |
2520 | + } | |
2521 | + console.log("-1-打印信息:"+paramStr); | |
2522 | + callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | |
2523 | + if(type == 1){ | |
2524 | + var handCollectionAmount = $("#handCollectionAmount").val(); | |
2525 | + if(handCollectionAmount>0){ | |
2526 | + var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | |
2527 | + if(!dataSteveOrderStr){ | |
2528 | + }else{ | |
2529 | + var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | |
2530 | + callbackObj.printDirect(paramSteveOrderStr,"DoorStatementsDocument"); | |
2531 | + } | |
2532 | + } | |
2533 | + | |
2534 | + if($("#marketFlag").val()=='qd'){ | |
2535 | + return; | |
2536 | + } | |
2537 | + var feedbackAmount = $("#ccollectionLong").val(); | |
2538 | + if(feedbackAmount>0){ | |
2539 | + var dataFeedbackOrderStr= loadFeedbackPrintData(id,reprint); | |
2540 | + if(!dataFeedbackOrderStr){ | |
2541 | + }else{ | |
2542 | + var paramFeedbackOrderStr = JSON.stringify(dataFeedbackOrderStr.item); | |
2543 | + callbackObj.printDirect(paramFeedbackOrderStr,"DoorStatementsDocument"); | |
2544 | + } | |
2545 | + } | |
2546 | + } | |
2547 | + }else{ | |
2548 | + showWarning('请检查打印的设备是否已连接'); | |
2549 | + } | |
2550 | + } | |
2551 | + function print(id,isPreview){ | |
2552 | + //var result = loadPrintSteveOrderData(582,1);console.log("--result:"+result); | |
2553 | + //var isPreview=0;// 1 预览,0:打印;2:直接打印 | |
2554 | + var reprint = 0;//1补打;0:打印 | |
2555 | + var status = $("#status").val(); | |
2556 | + if(typeof callbackObj != 'undefined'){ | |
2557 | + window.printFinish=function(){ | |
2558 | + if(isPreview == "2"){ | |
2559 | + if(status == 2 || status == 3){ | |
2560 | + bs4pop.alert("交费成功", {type: 0}, function () { | |
2561 | + history.go(-1); | |
2562 | + }); | |
2563 | + }else{ | |
2564 | + bs4pop.alert("冻结成功", {type: 0}, function () { | |
2565 | + history.go(-1); | |
2566 | + }); | |
2567 | + } | |
2568 | + } | |
2569 | + } | |
2570 | + | |
2571 | + var paramStr =""; | |
2572 | + if(isPreview == "1"){ | |
2573 | + paramStr = loadPrintHtmlData(); | |
2574 | + console.log("打印预览信息--:"+paramStr); | |
2575 | + callbackObj.printPreview(paramStr,isPreview,"DoorStatementsDocument",reprint); | |
2576 | + return; | |
2577 | + }else{ | |
2578 | + var data=loadPrintData(id,reprint); | |
2579 | + if(!data){ | |
2580 | + return; | |
2581 | + } | |
2582 | + paramStr = JSON.stringify(data.item); | |
2583 | + } | |
2584 | + if(paramStr==""){ | |
2585 | + return; | |
2586 | + } | |
2587 | + console.log("打印信息--:"+paramStr); | |
2588 | + callbackObj.printPreview(paramStr,isPreview,"DoorStatementsDocument",reprint); | |
2589 | + var handCollectionAmount = $("#handCollectionAmount").val(); | |
2590 | + if(handCollectionAmount>0){ | |
2591 | + var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | |
2592 | + if(!dataSteveOrderStr){ | |
2593 | + return; | |
2594 | + } | |
2595 | + var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | |
2596 | + callbackObj.printPreview(paramSteveOrderStr,isPreview,"DoorStatementsDocument",reprint); | |
2597 | + } | |
2598 | + }else{ | |
2599 | + showWarning('请检查打印的设备是否已连接'); | |
2600 | + } | |
2601 | + } | |
2602 | + //加载打印数据 | |
2603 | + function loadPrintData(id,reprint){ | |
2604 | + console.log("调用打印信息:"+id); | |
2605 | + var result; | |
2606 | + $.ajax({ | |
2607 | + url:'/entrancePrint/loadPrintData.action?id='+id+'&reprint='+reprint, | |
2608 | + type:'GET', | |
2609 | + dataType:'json', | |
2610 | + async:false, | |
2611 | + success:function(data){ | |
2612 | + if(data.code != '0'){ | |
2613 | + bs4pop.alert(data.msg,{type:0,title:"提示"}); | |
2614 | + return; | |
2615 | + } | |
2616 | + result=data; | |
2617 | + }, | |
2618 | + error:function(){ | |
2619 | + showWarning('加载打印数据出错'); | |
2620 | + } | |
2621 | + }); | |
2622 | + return result; | |
2623 | + } | |
2624 | + function loadPrintSteveOrderData(id,reprint){ | |
2625 | + console.info("payJs.装卸费打印") | |
2626 | + var result; | |
2627 | + $.ajax({ | |
2628 | + url:'/entrancePrint/loadPrintSteveOrderData.action?id='+id+'&reprint='+reprint, | |
2629 | + type:'GET', | |
2630 | + dataType:'json', | |
2631 | + async:false, | |
2632 | + success:function(data){ | |
2633 | + if(data.code != '0'){ | |
2634 | + bs4pop.alert(data.msg,{type:0,title:"提示"}); | |
2635 | + return; | |
2636 | + } | |
2637 | + if(data.msg == 0){ | |
2638 | + return; | |
2639 | + } | |
2640 | + result=data; | |
2641 | + }, | |
2642 | + error:function(){ | |
2643 | + showWarning('加载打印数据出错'); | |
2644 | + } | |
2645 | + }); | |
2646 | + return result; | |
2647 | + } | |
2648 | + function loadFeedbackPrintData(id,reprint){ | |
2649 | + var result; | |
2650 | + $.ajax({ | |
2651 | + url:'/entrancePrint/loadFeedbackPrintData.action?id='+id+'&reprint='+reprint, | |
2652 | + type:'GET', | |
2653 | + dataType:'json', | |
2654 | + async:false, | |
2655 | + success:function(data){ | |
2656 | + if(data.code != '0'){ | |
2657 | + showWarning(data.msg); | |
2658 | + return; | |
2659 | + } | |
2660 | + if(data.msg == 0){ | |
2661 | + return; | |
2662 | + } | |
2663 | + result=data; | |
2664 | + }, | |
2665 | + error:function(){ | |
2666 | + showWarning('加载打印数据出错'); | |
2667 | + } | |
2668 | + }); | |
2669 | + return result; | |
2670 | + } | |
2671 | + //加载打印数据 | |
2672 | + function loadPrintHtmlData(){ | |
2673 | + var printInfo = new Object(); | |
2674 | + var statusText = "" | |
2675 | + if($("#optType").val()==2){ | |
2676 | + statusText="(已冻结)" | |
2677 | + }else{ | |
2678 | + statusText="(已交费)" | |
2679 | + } | |
2680 | + var number = $("#market_short").val()+"JMSF" + $("#number").val()+statusText; | |
2681 | + printInfo.number=number; | |
2682 | + var c = $("#customerName").val(); | |
2683 | + var ic = $("#ic").val() | |
2684 | + var customer =""; | |
2685 | + if(c=="" || ic==""){ | |
2686 | + customer = c+ic; | |
2687 | + }else{ | |
2688 | + customer = c+"("+ic+")" | |
2689 | + } | |
2690 | + printInfo.customer=customer | |
2691 | + printInfo.productName=$("#product").val(); | |
2692 | + var grossWeight=$("#grossWeight").val() | |
2693 | + if(grossWeight==0){ | |
2694 | + grossWeight =""; | |
2695 | + } | |
2696 | + | |
2697 | + printInfo.grossWeight=grossWeight;// 毛重 | |
2698 | + var tareWeight = $("#tareWeight").val(); | |
2699 | + printInfo.tareWeight=tareWeight;//皮重 | |
2700 | + //var myselect=$("#dep"); | |
2701 | + var myselect=document.getElementById("dep"); | |
2702 | + var depName = $("#depName").val(); | |
2703 | + if(depName == ""){ | |
2704 | + depName ="请选择部门"; | |
2705 | + } | |
2706 | + /*var index=myselect.selectedIndex ; | |
2707 | + if(index != undefined){ | |
2708 | + if(myselect.options[index].text != "请选择"){ | |
2709 | + depName = myselect.options[index].text; | |
2710 | + } | |
2711 | + }else{ | |
2712 | + depName = $("#depName").val(); | |
2713 | + }*/ | |
2714 | + var regionName = $("#regionName").val(); | |
2715 | + printInfo.receiveDept= depName +" "+ regionName; | |
2716 | + printInfo.phone=$("#customerPhone").val(); | |
2717 | + var producerName = $("#productArea").val(); | |
2718 | + var strs= new Array(); | |
2719 | + strs=producerName.split(","); //字符分割 | |
2720 | + var producer = strs[0] | |
2721 | + if(strs.length>1){ | |
2722 | + producer=producer +strs[strs.length-1] | |
2723 | + } | |
2724 | + printInfo.producer=producer;// 产地 | |
2725 | + printInfo.weight=$("#weight").val();// 净重 | |
2726 | + printInfo.carTypeName=$("#carTypeShow").val();// 车型 | |
2727 | + printInfo.plate=$("#plate").val();// 车号 | |
2728 | + printInfo.qty=$("#goodsNum").val();// 件数 | |
2729 | + printInfo.itemWeight=$("#itemWeight").val();// 件重 | |
2730 | + printInfo.statementsDate=$("#paydate").val();// 结算时间 | |
2731 | + var itemfees = $("#itemFee").val(); | |
2732 | + //var receivedInWords =$("#receivedInWords").val(); | |
2733 | + printInfo.itemFee=itemfees;// 交易管理费 | |
2734 | + var proveTypeName = $("#proveTypeName").val(); | |
2735 | + printInfo.proveTypeName = proveTypeName;//证明 | |
2736 | + var tags =""; | |
2737 | + $("input[name=goodsTagIds]").each(function () { | |
2738 | + if($(this).is(":checked")){ | |
2739 | + //当前为选中状态 | |
2740 | + if(tags!=""){ | |
2741 | + tags = tags +","+$(this).parent().text(); | |
2742 | + }else { | |
2743 | + tags = $(this).parent().text(); | |
2744 | + } | |
2745 | + } | |
2746 | + }); | |
2747 | + //printInfo.tags = tags;//标签 | |
2748 | + | |
2749 | + var myselect=document.getElementById("feeDepId"); | |
2750 | + var feeDepName = $("#feeDepName").val(); | |
2751 | + if(feeDepName == "" || feeDepName == undefined){ | |
2752 | + feeDepName="请选择收费部门" | |
2753 | + } | |
2754 | + /*var index=myselect.selectedIndex ; | |
2755 | + if(index != undefined){ | |
2756 | + if(myselect.options[index].text != "请选择"){ | |
2757 | + feeDepName = myselect.options[index].text; | |
2758 | + } | |
2759 | + }else{ | |
2760 | + feeDepName = $("#feeDepName").val(); | |
2761 | + }*/ | |
2762 | + printInfo.tags =feeDepName; | |
2763 | + var trailerNumber = $("#trailerNumber").val(); | |
2764 | + if(trailerNumber!=""){ | |
2765 | + trailerNumber ="【"+trailerNumber+"】" | |
2766 | + } | |
2767 | + printInfo.remark=$("#remark").val()+trailerNumber;// 备注+" "+$("#goodsRemark").val() | |
2768 | + var totalAmountYuan =$("#printViewYuan").val(); | |
2769 | + printInfo.amountInWords =DX(totalAmountYuan);//大写 | |
2770 | + printInfo.accountInFigures =$("#printViewSymbol").val();//小写 | |
2771 | + printInfo.greeterName=$("#inGreeterName").val();// 接车员 | |
2772 | + printInfo.operatorName=$("#operatorName").val();// 司磅操作员 | |
2773 | + printInfo.tollName=$("#tollName").val();// 收费员 | |
2774 | + | |
2775 | + var result =JSON.stringify(printInfo); | |
2776 | + //console.log("--result:"+result); | |
2777 | + return result; | |
2778 | + } | |
2779 | + | |
2780 | + function DX(n) { | |
2781 | + if (!/^(0|[1-9]\d*)(\.\d+)?$/.test(n)) | |
2782 | + return ""; | |
2783 | + if(n>0){ | |
2784 | + var unit = "仟佰拾亿仟佰拾万仟佰拾圆角分", str = ""; | |
2785 | + n += "00"; | |
2786 | + var p = n.indexOf('.'); | |
2787 | + if (p >= 0) | |
2788 | + n = n.substring(0, p) + n.substr(p+1, 2); | |
2789 | + unit = unit.substr(unit.length - n.length); | |
2790 | + for (var i=0; i < n.length; i++) | |
2791 | + str += '零壹贰叁肆伍陆柒捌玖'.charAt(n.charAt(i)) + unit.charAt(i); | |
2792 | + return str.replace(/零(仟|佰|拾|角)/g, "零").replace(/(零)+/g, "零").replace(/零(万|亿|圆)/g, "$1").replace(/(亿)万|壹(拾)/g, "$1$2").replace(/^圆零?|零分/g, "").replace(/圆$/g, "圆整"); | |
2793 | + }else{ | |
2794 | + return ""; | |
2795 | + } | |
2796 | + } | |
2797 | + | |
2798 | + /** | |
2799 | + * 交费点击事件处理 | |
2800 | + */ | |
2801 | + function payClickHandler(url) { | |
2802 | + bs4pop.dialog({ | |
2803 | + id:'dialog-add', | |
2804 | + content:''+url, | |
2805 | + title:'交费', | |
2806 | + isIframe:true, | |
2807 | + width:700, | |
2808 | + height:450, | |
2809 | + btns:[ | |
2810 | + {label: '确定',className: 'btn-primary',onClick:payCertainClickHandler}, | |
2811 | + {label: '取消',className: 'btn-secondary'} | |
2812 | + ] | |
2813 | + }); | |
2814 | + } | |
2815 | + | |
2816 | + /** | |
2817 | + * 交费点击事件处理 | |
2818 | + */ | |
2819 | + function payCertainClickHandler(e, $iframe) { | |
2820 | + if (!$iframe.contents().find("#pwdForm").valid()) { | |
2821 | + return false; | |
2822 | + } | |
2823 | + | |
2824 | + //按钮【确认】的回调 | |
2825 | + var body = $iframe.contents().find("body"); //iframe的body获取方式 | |
2826 | + var password = $(body).find("#password").val(); | |
2827 | + /*if(iccategroy != 30){ | |
2828 | + if(password == undefined || password == ""){ | |
2829 | + flag = true; | |
2830 | + showWarning('请输入密码!'); | |
2831 | + } | |
2832 | + } | |
2833 | + if(flag){ | |
2834 | + flag = false | |
2835 | + return; | |
2836 | + }*/ | |
2837 | + bui.loading.show('努力提交中,请稍候。。。'); | |
2838 | + $(this).trigger("onblur"); | |
2839 | + var bodyParent = $(window.document) | |
2840 | + $(bodyParent).find("#pwd").val(password); | |
2841 | + var doUrl =$(bodyParent).find("#optUrl").val(); | |
2842 | + var optType =$(bodyParent).find("#optType").val(); | |
2843 | + var id =$(bodyParent).find("#idFee").val(); | |
2844 | + console.log(password+"操作"+doUrl) | |
2845 | + $.ajax({ | |
2846 | + type : 'post', | |
2847 | + url :doUrl, | |
2848 | + data : $(bodyParent).find('#feeForm').serialize(), | |
2849 | + dataType : 'json', | |
2850 | + async: false, | |
2851 | + success : function(ret){ | |
2852 | + bui.loading.hide(); | |
2853 | + if(ret.code == '200'){ | |
2854 | + //TLOG.component.editNewData($("#feeForm")); | |
2855 | + //TLOG.component.operateLog(opttext,"收费管理","【收费单号】:"+$!enFee.number,"$!enFee.number"); | |
2856 | + if(optType == 3){ | |
2857 | + bs4pop.alert("解冻成功", {type: 0}, function () { | |
2858 | + history.go(-1); | |
2859 | + //window.location.href="/entranceFeeBillPay/toPayOpt/1/2?status=2&id="+id | |
2860 | + }) | |
2861 | + | |
2862 | + }else{ | |
2863 | + printDirect(id,optType); | |
2864 | + } | |
2865 | + | |
2866 | + }else{ | |
2867 | + //TLOG.component.operateLog(opttext,"收费管理",opttext+"提交失败:"+ret.result,"$!enFee.number"); | |
2868 | + if(ret.code=='5000'){ | |
2869 | + bs4pop.alert("系统异常,请重试,或者联系管理员", {type: 0}, function () { | |
2870 | + window.location.href='http://jmsf.diligrp.com/entranceFeeBill/list'; | |
2871 | + }); | |
2872 | + } | |
2873 | + var modified = ret.data.modified; | |
2874 | + var showPwdIn = ret.data.showPwdIn; | |
2875 | + if(showPwdIn == 1){ | |
2876 | + $(body).find("#pwdInput").show() | |
2877 | + } | |
2878 | + if(modified!=undefined && modified!=""){ | |
2879 | + $("#modified").val(modified); | |
2880 | + showWarning(ret.result); | |
2881 | + }else{ | |
2882 | + bs4pop.alert(ret.result, {type: 0}, function () { | |
2883 | + window.location.href='http://jmsf.nong12.com/entranceFeeBill/list'; | |
2884 | + }); | |
2885 | + } | |
2886 | + } | |
2887 | + }, | |
2888 | + error:function(){ | |
2889 | + bui.loading.hide(); | |
2890 | + showError("系统异常,请稍后重试"); | |
2891 | + } | |
2892 | + }); | |
2893 | + } | |
2894 | + var resubmitFlag = false; | |
2895 | + $("#undo_btn").click(function () { | |
2896 | + if($("#settlementState").val()==2){ | |
2897 | + bs4pop.alert("代收装卸费已结账,不能撤销收费单!", {type: 0}, function () { | |
2898 | + window.location.href = window.location.href; | |
2899 | + }); | |
2900 | + return | |
2901 | + } | |
2902 | + if($("#feedbackOrderStatus").val()==2){ | |
2903 | + bs4pop.alert("收费项返点已结转,不能撤销收费单!", {type: 0}, function () { | |
2904 | + window.location.href = window.location.href; | |
2905 | + }); | |
2906 | + return | |
2907 | + } | |
2908 | + if(resubmitFlag){ | |
2909 | + bs4pop.alert("请不要重复提交!", {type: 0}, function () { | |
2910 | + window.location.href = window.location.href; | |
2911 | + }); | |
2912 | + return | |
2913 | + }else { | |
2914 | + resubmitFlag = true; | |
2915 | + bui.loading.show('努力提交中,请稍候。。。'); | |
2916 | + $.ajax({ | |
2917 | + type: 'post', | |
2918 | + url: '/entranceTrade/doUndo.action', | |
2919 | + data: $('#feeForm').serialize(), | |
2920 | + success: function (ret) { | |
2921 | + bui.loading.hide(); | |
2922 | + if (ret.code == 'success') { | |
2923 | + //TLOG.component.operateLog(TLOG.operates.undo, "收费管理", "【收费单号】"+$!billgoods.number, "$!billgoods.number"); | |
2924 | + bs4pop.alert("撤销成功", {type: 0}, function () { | |
2925 | + history.go(-1); | |
2926 | + }); | |
2927 | + }else{ | |
2928 | + bs4pop.alert(ret.result, {type: 0}, function () { | |
2929 | + history.go(-1); | |
2930 | + }); | |
2931 | + } | |
2932 | + }, | |
2933 | + error: function () { | |
2934 | + bui.loading.hide(); | |
2935 | + bs4pop.alert("撤销失败,请稍后重试!", {type: 0}, function () { | |
2936 | + window.location.href = window.location.href; | |
2937 | + }); | |
2938 | + } | |
2939 | + }); | |
2940 | + } | |
2941 | + }); | |
2942 | + | |
2943 | + $(".invalid-btn").click(function () { | |
2944 | + //var id=$("#idFee").val(); | |
2945 | + //var mod=$("#modified").val(); | |
2946 | + //var remark=$("#remark").val(); | |
2947 | + var number = $("#number").val(); | |
2948 | + $.ajax({ | |
2949 | + type: 'post', | |
2950 | + url: '/entranceFeeBill/doInvalid.action', | |
2951 | + data: $('#feeForm').serialize(), | |
2952 | + success: function (ret) { | |
2953 | + if (ret.success == true) { | |
2954 | + //TLOG.component.operateLog(TLOG.operates.invalid, "收费管理", "【收费单号】:"+number,number); | |
2955 | + } | |
2956 | + bs4pop.alert(ret.msg, {type: 0}, function () { | |
2957 | + history.go(-1); | |
2958 | + }); | |
2959 | + }, | |
2960 | + error: function () { | |
2961 | + bs4pop.confirm("该用户当前无作废操作权限,请先确认已开通!", { | |
2962 | + type: 0, | |
2963 | + title: '提示', | |
2964 | + btn: ['确定'] | |
2965 | + }); | |
2966 | + } | |
2967 | + }); | |
2968 | + }); | |
2969 | +</script><script> | |
2970 | + $('#pay-back-btn').on('click', function(){ | |
2971 | + var handReceivableAmount = $("#handReceivableAmountLong").val(); | |
2972 | + if(handReceivableAmount==undefined || handReceivableAmount==0){ | |
2973 | + bs4pop.alert('该收费单未匹配到装卸费补录的任何规则!', {type: 0}, function () { | |
2974 | + history.go(-1); | |
2975 | + }); | |
2976 | + }else{ | |
2977 | + var handlingRatio = $("#handlingRatioVal").val(); | |
2978 | + if(handlingRatio==0){ | |
2979 | + bs4pop.confirm('当前收费单卸货比例为0%,请确认是否进行交费?', { | |
2980 | + type: 0, | |
2981 | + title: '提示', | |
2982 | + btn: ['确定', '取消'], | |
2983 | + yes: function (index, layero) { | |
2984 | + openBackFrame(1,""); | |
2985 | + }, | |
2986 | + btn2: function (index, layero) { | |
2987 | + | |
2988 | + } | |
2989 | + }) | |
2990 | + }else{ | |
2991 | + openBackFrame(1,""); | |
2992 | + } | |
2993 | + } | |
2994 | + }); | |
2995 | + function openBackFrame(type,authIc) { | |
2996 | + var status = $("#status").val(); | |
2997 | + var height = "490px"; | |
2998 | + var iccategroy = $("#ic").attr("iccategroy"); | |
2999 | + if(iccategroy == 30){ | |
3000 | + var height = "400px"; | |
3001 | + | |
3002 | + } | |
3003 | + var id=$("#idFee").val(); | |
3004 | + var handManageAmount = $("#handManageAmount").val(); | |
3005 | + if(handManageAmount == ""){ | |
3006 | + handManageAmount = 0; | |
3007 | + } | |
3008 | + var handCollectionAmount = $("#handCollectionAmount").val(); | |
3009 | + if(handCollectionAmount == ""){ | |
3010 | + handCollectionAmount = 0; | |
3011 | + } | |
3012 | + var freezePrice = $("#freezeMoneySymbol").val(); | |
3013 | + var ic = $("#ic").val(); | |
3014 | + var id = $("#idFee").val(); | |
3015 | + var pwdBackUrl ='/entranceFeeBill/paySteveBackPassword?id='+id+'&collectionAmount='+handCollectionAmount+"&mangeAmount="+handManageAmount; | |
3016 | + | |
3017 | + payBackClickHandler(pwdBackUrl) | |
3018 | + } | |
3019 | + | |
3020 | + /** | |
3021 | + * 交费点击事件处理 | |
3022 | + */ | |
3023 | + function payBackClickHandler(url) { | |
3024 | + bs4pop.dialog({ | |
3025 | + id:'dialog-add', | |
3026 | + content:''+url, | |
3027 | + title:'交费', | |
3028 | + isIframe:true, | |
3029 | + width:700, | |
3030 | + height:450, | |
3031 | + btns:[ | |
3032 | + {label: '确定',className: 'btn-primary',onClick:payBackCertainClickHandler}, | |
3033 | + {label: '取消',className: 'btn-secondary'} | |
3034 | + ] | |
3035 | + }); | |
3036 | + } | |
3037 | + | |
3038 | + /** | |
3039 | + * 交费点击事件处理 | |
3040 | + */ | |
3041 | + function payBackCertainClickHandler(e, $iframe) { | |
3042 | + var doUrl='/entranceTrade/doPaySteveBack' | |
3043 | + if (!$iframe.contents().find("#pwdForm").valid()) { | |
3044 | + return false; | |
3045 | + } | |
3046 | + var body = layer.getChildFrame('body', index); //iframe的body获取方式 | |
3047 | + var password = $(body).find("#password").val(); | |
3048 | + var ic = $(body).find("#ic").val(); | |
3049 | + //按钮【确认】的回调 | |
3050 | + var bodyParent = $(window.document) | |
3051 | + $(bodyParent).find("#pwd").val(password); | |
3052 | + $(bodyParent).find("#fundAccount").val(fundAccount); | |
3053 | + $(bodyParent).find("#ic").val(ic); | |
3054 | + $.ajax({ | |
3055 | + type : 'post', | |
3056 | + url :doUrl, | |
3057 | + data : $(bodyParent).find('#feeForm').serialize(), | |
3058 | + dataType : 'json', | |
3059 | + async: false, | |
3060 | + success : function(ret){ | |
3061 | + if(ret.code == 'success'){ | |
3062 | + //TLOG.component.editNewData($("#feeForm")); | |
3063 | + //TLOG.component.operateLog("补录","收费管理","【收费单号】:"+$!billgoods.number,"$!billgoods.number"); | |
3064 | + printBackDirect(id,type); | |
3065 | + }else{ | |
3066 | + TLOG.component.operateLog("补录","收费管理",opttext+"提交失败:"+ret.result,"$!billgoods.number"); | |
3067 | + if(ret.errorCode=='000'){ | |
3068 | + bs4pop.alert(ret.errorMsg+",请重试,或者联系管理员", {type: 0}, function () { | |
3069 | + window.location.href=''+'/entranceFeeBill/list.html'; | |
3070 | + }); | |
3071 | + } | |
3072 | + if(ret.result == "该单据未完全交费成功,请到装卸费管理对该补录单据继续交费!"){ | |
3073 | + bs4pop.alert(ret.result, {type: 0}, function () { | |
3074 | + window.location.href=''+"/steveManage/list.html" | |
3075 | + }); | |
3076 | + }else{ | |
3077 | + var modified = ret.data.modified; | |
3078 | + var showPwdIn = ret.data.showPwdIn; | |
3079 | + if(showPwdIn == 1){ | |
3080 | + $(body).find("#pwdInput").show() | |
3081 | + } | |
3082 | + if(modified!=undefined && modified!=""){ | |
3083 | + $("#modified").val(modified); | |
3084 | + bs4pop.confirm(ret.result, { | |
3085 | + type: 0, | |
3086 | + title: '提示', | |
3087 | + btn: ['确定'] | |
3088 | + }); | |
3089 | + }else{ | |
3090 | + bs4pop.alert(ret.result, {type: 0}, function () { | |
3091 | + window.location.href=''+'/entranceFeeBill/list.html'; | |
3092 | + }); | |
3093 | + } | |
3094 | + } | |
3095 | + | |
3096 | + } | |
3097 | + } | |
3098 | + }); | |
3099 | + } | |
3100 | + | |
3101 | + function printBackDirect(id,type){ | |
3102 | + var source=$("#source").val(); | |
3103 | + | |
3104 | + var isPreview=2;// 1 预览,0:打印;2:直接打印 | |
3105 | + var reprint = 0;//1补打;0:打印 | |
3106 | + var status = $("#status").val(); | |
3107 | + if(typeof callbackObj != 'undefined'){ | |
3108 | + window.printFinish=function(){ | |
3109 | + if(isPreview == "2"){ | |
3110 | + if(type == 1){ | |
3111 | + bs4pop.alert("交费成功", {type: 0}, function () { | |
3112 | + window.location.href=''+'/entranceFeeBill/list.html'; | |
3113 | + }); | |
3114 | + } | |
3115 | + } | |
3116 | + } | |
3117 | + | |
3118 | + var paramStr =""; | |
3119 | + if(isPreview == "1"){ | |
3120 | + // paramStr = loadPrintHtmlData(); | |
3121 | + }else{ | |
3122 | + var data=loadBackPrintData(id,reprint); | |
3123 | + if(!data){ | |
3124 | + window.location.href=''+'entranceFeeBill/list.html'; | |
3125 | + return; | |
3126 | + } | |
3127 | + paramStr = JSON.stringify(data.item); | |
3128 | + } | |
3129 | + if(paramStr==""){ | |
3130 | + window.location.href=''+'/entranceFeeBill/list.html'; | |
3131 | + return; | |
3132 | + } | |
3133 | + //console.log("--:"+paramStr); | |
3134 | + callbackObj.printDirect(paramStr,"DoorStatementsDocument"); | |
3135 | + if(type == 1){ | |
3136 | + var handCollectionAmount = $("#handCollectionAmount").val(); | |
3137 | + if(handCollectionAmount>0){ | |
3138 | + var dataSteveOrderStr= loadPrintSteveOrderData(id,reprint); | |
3139 | + if(!dataSteveOrderStr){ | |
3140 | + window.location.href=''+'/entranceFeeBill/list.html'; | |
3141 | + }else{ | |
3142 | + var paramSteveOrderStr = JSON.stringify(dataSteveOrderStr.item); | |
3143 | + callbackObj.printDirect(paramSteveOrderStr,"DoorStatementsDocument"); | |
3144 | + } | |
3145 | + } | |
3146 | + | |
3147 | + | |
3148 | + } | |
3149 | + }else{ | |
3150 | + layer.confirm('请检查打印的设备是否已连接', { | |
3151 | + type: 0, | |
3152 | + title: '提示', | |
3153 | + btn: ['确定'] | |
3154 | + }); | |
3155 | + } | |
3156 | + } | |
3157 | + function loadBackPrintData(id,reprint){ | |
3158 | + var result; | |
3159 | + $.ajax({ | |
3160 | + url:'/entranceFeeBillPay/loadBackRecordPrintData?id='+id+'&reprint='+reprint, | |
3161 | + type:'GET', | |
3162 | + dataType:'json', | |
3163 | + async:false, | |
3164 | + success:function(data){ | |
3165 | + if(data.code != '0'){ | |
3166 | + layer.alert(data.msg,{type:0,title:"提示"}); | |
3167 | + return; | |
3168 | + } | |
3169 | + if (data.msg == 0) { | |
3170 | + //不打印代收为0的单子 | |
3171 | + return; | |
3172 | + } | |
3173 | + result=data; | |
3174 | + }, | |
3175 | + error:function(){ | |
3176 | + layer.alert("加载打印数据出错",{type:0,title:"提示"}); | |
3177 | + } | |
3178 | + }); | |
3179 | + return result; | |
3180 | + } | |
3181 | + function loadPrintSteveOrderData(id,reprint){ | |
3182 | + console.info("backPay.装卸费打印") | |
3183 | + var result; | |
3184 | + $.ajax({ | |
3185 | + url:'/entranceFeeBillPay/loadPrintSteveOrderData?id='+id+'&reprint='+reprint, | |
3186 | + type:'GET', | |
3187 | + dataType:'json', | |
3188 | + async:false, | |
3189 | + success:function(data){ | |
3190 | + if(data.code != '0'){ | |
3191 | + layer.alert(data.msg,{type:0,title:"提示"}); | |
3192 | + return; | |
3193 | + } | |
3194 | + if(data.msg == 0){ | |
3195 | + return; | |
3196 | + } | |
3197 | + result=data; | |
3198 | + }, | |
3199 | + error:function(){ | |
3200 | + layer.alert("加载打印数据出错",{type:0,title:"提示"}); | |
3201 | + } | |
3202 | + }); | |
3203 | + return result; | |
3204 | + } | |
3205 | +</script> | |
3206 | + | |
3207 | +<script> | |
3208 | + $(function(){ | |
3209 | + if($("#bskinWithGoods").val()==1){ | |
3210 | + //带货回皮只能选择 | |
3211 | + var handlingRatioOld =$("#handlingRatioOld").val(); | |
3212 | + if(handlingRatioOld == 100 || handlingRatioOld == 0){}else{ | |
3213 | + $("#handlingRatio").val(""); | |
3214 | + $("#handlingRatioVal").val(0); | |
3215 | + } | |
3216 | + $(".handlingRatioHidden").hide(); | |
3217 | + }else{ | |
3218 | + $(".handlingRatioHidden").show(); | |
3219 | + } | |
3220 | + calculate(); | |
3221 | + if(!waitPayStatus()){ | |
3222 | + if(!steveBack()){ | |
3223 | + console.log("--2---状态不需要装卸费查询日志") | |
3224 | + return; | |
3225 | + } | |
3226 | + } | |
3227 | + var handReceivableAmount = $("#handReceivableAmountLong").val(); | |
3228 | + if(handReceivableAmount>0){ | |
3229 | + findHandTeam(); | |
3230 | + var steveTeamId = $("#steveTeamId").val(); | |
3231 | + var slength = $("#steveTeams").children().length; | |
3232 | + //console.info("ss-") | |
3233 | + $("#steveTeams option").each(function(){ | |
3234 | + //console.info("this team id "+$(this).val()+",old id "+steveTeamId); | |
3235 | + if(slength >= 2){//只有一个项是,是默认选中的 | |
3236 | + if($(this).val() == steveTeamId){ | |
3237 | + //console.info("selceted team id"+steveTeamId); | |
3238 | + $(this).attr("selected", true); | |
3239 | + var shareRatioVal = $(this).attr("bind-shareRatio"); | |
3240 | + $("#shareRatioVal").val(shareRatioVal); | |
3241 | + //console.info("sdds-"+steveTeamId) | |
3242 | + }else{ | |
3243 | + $("#steveTeams").val( $("#steveTeams").find('option')[1].value); | |
3244 | + $("#shareRatioVal").val(ret[0].shareRatio); | |
3245 | + $("#handlingTeam").val(ret[0].teamName); | |
3246 | + } | |
3247 | + } | |
3248 | + }); | |
3249 | + } | |
3250 | + | |
3251 | + }) | |
3252 | + $("#ic").blur(function(){ | |
3253 | + //findHandTeam(); | |
3254 | + }); | |
3255 | + $("#product").blur(function(){ | |
3256 | + //findHandTeam(); | |
3257 | + }); | |
3258 | + $("#dep").change(function(){ | |
3259 | + //findHandTeam(); | |
3260 | + }); | |
3261 | + $("#handlingRatio").change(function(){ | |
3262 | + $("#handlingRatioVal").val($(this).children('option:selected').val()); | |
3263 | + showAllAmount(); | |
3264 | + }); | |
3265 | + $("#steveTeams").change(function(){ | |
3266 | + $("#steveTeamIdSelect").val(2); | |
3267 | + var ss = $(this).children('option:selected'); | |
3268 | + var shareRatioVal =0; | |
3269 | + if (ss.html() != "请选择") { | |
3270 | + shareRatioVal = ss.attr("bind-shareRatio"); | |
3271 | + $("#handlingTeam").val(ss.html()); | |
3272 | + } | |
3273 | + $("#shareRatioVal").val(shareRatioVal); | |
3274 | + showAllAmount(); | |
3275 | + }); | |
3276 | + $("#bskinWithGoods").change(function(){ | |
3277 | + if($(this).val()==1){ | |
3278 | + | |
3279 | + $(".handlingRatioHidden").hide(); | |
3280 | + $("#handlingRatio").val(""); | |
3281 | + $("#handlingRatioVal").val(0); | |
3282 | + }else{ | |
3283 | + | |
3284 | + $("#handlingRatio").val($("#handlingRatioOld").val()); | |
3285 | + $("#handlingRatioVal").val($("#handlingRatioOld").val()); | |
3286 | + $(".handlingRatioHidden").show(); | |
3287 | + } | |
3288 | + }); | |
3289 | + function c() { | |
3290 | + $.post("/entranceFeeBillPay/c", | |
3291 | + $('#feeForm').serialize(), | |
3292 | + function(data,status){ | |
3293 | + $("#feeitemedit").html(data); | |
3294 | + showAllAmount(); | |
3295 | +// 计算后触发重新校验冻结金额 | |
3296 | + $('#freezeMoneySymbol').blur(); | |
3297 | + }); | |
3298 | + } | |
3299 | + function showAllAmount(){ | |
3300 | + calculateFlag(); | |
3301 | + var status = $("#status").val(); | |
3302 | + var backRecord=false; | |
3303 | + /*if(status!=2){ | |
3304 | + var itemView = $("#itemView").val(); | |
3305 | + if(itemView==undefined || itemView==1){ | |
3306 | + console.info("return showAllAmount(),status:"+status); | |
3307 | + return; | |
3308 | + }else if(itemView==-1){ | |
3309 | + backRecord=true; | |
3310 | + } | |
3311 | + }*/ | |
3312 | + console.info("showAllAmount()"); | |
3313 | + var handReceivableAmountVal = new Number(handReceivableAmount()); | |
3314 | + if(handReceivableAmountVal>0){ | |
3315 | + $("#steveTeams").attr("disabled",false); | |
3316 | + $("#handlingRatio").attr("disabled",false); | |
3317 | + }else{ | |
3318 | + $("#handActualAmount").val(0); | |
3319 | + $("#handActualAmountSymbol").val('0.00'); | |
3320 | + $("#handManageAmount").val(0); | |
3321 | + $("#handManageAmountSymbol").val('0.00'); | |
3322 | + $("#handCollectionAmount").val(0); | |
3323 | + $("#handCollectionAmountSymbol").val('0.00'); | |
3324 | + $("#steveTeams").val(""); | |
3325 | + $("#handlingRatio").val(""); | |
3326 | + $("#steveTeams").attr("disabled",true); | |
3327 | + $("#handlingRatio").attr("disabled",true); | |
3328 | + } | |
3329 | + | |
3330 | + if(backRecord){ | |
3331 | + handCollectionAmount(); | |
3332 | + handManageAmount(); | |
3333 | + handActualAmount(); | |
3334 | + }else{ | |
3335 | + freezeMoney(); | |
3336 | + totalAmount(); | |
3337 | + } | |
3338 | + handTeamReload(); | |
3339 | + printView(); | |
3340 | + } | |
3341 | + var ONE_HUNDRED_NUMBER = new Number(100); | |
3342 | + function totalAmount(){ | |
3343 | + var totalAmount = chargeTotalAmount()+handCollectionAmount()+feedbackAmount()+handManageAmount(); | |
3344 | + $("#totalAmount").val(totalAmount); | |
3345 | + var targetNumber = new Number(totalAmount); | |
3346 | + $("#totalAmountYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER));//打印预览大学的转换 | |
3347 | + $("#totalAmountSymbol").text(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3348 | + var resultNumber = new Number(totalAmount); | |
3349 | + return resultNumber; | |
3350 | + } | |
3351 | + function chargeTotalAmount(){ | |
3352 | + var chargeTotalAmount = receivableAmount()-discountAmount()-feedbackAmount(); | |
3353 | + $("#chargeTotalAmount").val(chargeTotalAmount); | |
3354 | + var targetNumber = new Number(chargeTotalAmount); | |
3355 | + $("#chargeTotalAmountYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER)); | |
3356 | + $("#chargeTotalAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3357 | + var resultNumber = new Number(chargeTotalAmount); | |
3358 | + return resultNumber; | |
3359 | + } | |
3360 | + function receivableAmount(){ | |
3361 | + var receivableAmount = itemReceivableAmount(); | |
3362 | + $("#receivableAmount").val(receivableAmount); | |
3363 | + var targetNumber = new Number(receivableAmount); | |
3364 | + $("#receivableAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3365 | + var resultNumber = new Number(receivableAmount); | |
3366 | + return resultNumber; | |
3367 | + } | |
3368 | + function itemReceivableAmount(){ | |
3369 | + var itemReceivableAmount = $("#itemReceivableAmountLong").val(); | |
3370 | + var targetNumber = new Number(itemReceivableAmount); | |
3371 | + $("#itemReceivableAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3372 | + var resultNumber = new Number(itemReceivableAmount); | |
3373 | + return resultNumber; | |
3374 | + } | |
3375 | + function freezeMoney(){ | |
3376 | + var freezeAmount = itemReceivableAmount(); | |
3377 | + if(steveFeeRequire()){ | |
3378 | + freezeAmount =itemReceivableAmount()+handReceivableAmount(); | |
3379 | + } | |
3380 | + var targetNumber = new Number(freezeAmount); | |
3381 | + $("#freezePriceVal").val(targetNumber.div(ONE_HUNDRED_NUMBER));//冻结对比需要 | |
3382 | + $("#freezeMoneySymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3383 | + var resultNumber = new Number(freezeAmount); | |
3384 | + return resultNumber; | |
3385 | + } | |
3386 | + function discountAmount(){ | |
3387 | + var discountAmount = $("#discountAmountLong").val(); | |
3388 | + var targetNumber = new Number(discountAmount); | |
3389 | + $("#discountAmountSymbol").val("-"+toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3390 | + var resultNumber = new Number(discountAmount); | |
3391 | + return resultNumber; | |
3392 | + } | |
3393 | + | |
3394 | + function handReceivableAmount(){ | |
3395 | + var handReceivableAmount = $("#handReceivableAmountLong").val(); | |
3396 | + var targetNumber = new Number(handReceivableAmount); | |
3397 | + var thousands =targetNumber.div(ONE_HUNDRED_NUMBER); | |
3398 | + $("#handReceivableAmountSymbol").val(toThousands(thousands)); | |
3399 | + var resultNumber = new Number(handReceivableAmount); | |
3400 | + | |
3401 | + return resultNumber; | |
3402 | + } | |
3403 | + function handActualAmount(){ | |
3404 | + var handlingRatioVal=$("#handlingRatioVal").val(); | |
3405 | + //console.info("handActualAmount():handlingRatioVal:"+handlingRatioVal); | |
3406 | + if(handlingRatioVal==undefined){ | |
3407 | + handlingRatioVal = 0; | |
3408 | + } | |
3409 | + var handlingRatio = new Number(handlingRatioVal); | |
3410 | + //console.info("handlingRatioVal"+handlingRatioVal); | |
3411 | + handlingRatio=handlingRatio.div(ONE_HUNDRED_NUMBER); | |
3412 | + var targetNumber = new Number(handReceivableAmount()); | |
3413 | + var handActualAmount = targetNumber.mul(handlingRatio); | |
3414 | + | |
3415 | + var thousands = handActualAmount.div(ONE_HUNDRED_NUMBER); | |
3416 | + thousands = new Number(thousands); | |
3417 | + thousands = thousands.toFixed(); | |
3418 | + thousands = new Number(thousands); | |
3419 | + $("#handActualAmount").val(thousands.mul(ONE_HUNDRED_NUMBER)); | |
3420 | + $("#handActualAmountSymbol").val(toThousands(thousands)); | |
3421 | + | |
3422 | + var resultNumber = new Number(thousands.mul(ONE_HUNDRED_NUMBER)); | |
3423 | + | |
3424 | + return resultNumber; | |
3425 | + } | |
3426 | + function handManageAmount(){ | |
3427 | + //console.info("handManageAmount()"); | |
3428 | + var handManageAmount = handActualAmount()-handCollectionAmount(); | |
3429 | + $("#handManageAmount").val(handManageAmount); | |
3430 | + var targetNumber = new Number(handManageAmount); | |
3431 | + $("#handManageAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3432 | + var resultNumber = new Number(handManageAmount); | |
3433 | + return resultNumber; | |
3434 | + } | |
3435 | + function handCollectionAmount(){ | |
3436 | + var shareRatioVal =$("#shareRatioVal").val(); | |
3437 | + //console.info("handCollectionAmount()-shareRatioVal:"+shareRatioVal); | |
3438 | + if(shareRatioVal == undefined){ | |
3439 | + shareRatioVal =0; | |
3440 | + } | |
3441 | + var shareRatio = new Number(shareRatioVal); | |
3442 | + shareRatio = shareRatio.div(ONE_HUNDRED_NUMBER) | |
3443 | + | |
3444 | + var targetNumber = new Number(handActualAmount()); | |
3445 | + var handCollectionAmount = targetNumber.mul(shareRatio); | |
3446 | + | |
3447 | + var thousands = handCollectionAmount.div(ONE_HUNDRED_NUMBER); | |
3448 | + thousands = new Number(thousands); | |
3449 | + thousands = thousands.toFixed(); | |
3450 | + thousands = new Number(thousands); | |
3451 | + $("#handCollectionAmount").val(thousands.mul(ONE_HUNDRED_NUMBER)); | |
3452 | + $("#handCollectionAmountSymbol").val(toThousands(thousands)); | |
3453 | + | |
3454 | + var resultNumber = new Number(thousands.mul(ONE_HUNDRED_NUMBER)); | |
3455 | + return resultNumber; | |
3456 | + } | |
3457 | + function feedbackAmount(){ | |
3458 | + //console.info("discountAmount()"); | |
3459 | + var collectionAmount = $("#ccollectionLong").val(); | |
3460 | + var targetNumber = new Number(collectionAmount); | |
3461 | + $("#collectionAmountSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3462 | + var resultNumber = new Number(collectionAmount); | |
3463 | + return resultNumber; | |
3464 | + } | |
3465 | + | |
3466 | + function toThousands(num) { | |
3467 | + return (num || 0).toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,'); | |
3468 | + } | |
3469 | + function handTeamReload(){ | |
3470 | + if(!steveFeeRequire()){ | |
3471 | + console.log("市场是不需要装卸费") | |
3472 | + return; | |
3473 | + } | |
3474 | + var steveTeamIdSelect = $("#steveTeamIdSelect").val(); | |
3475 | + if(steveTeamIdSelect==1){ | |
3476 | + findHandTeam(); | |
3477 | + var steveTeamId = $("#steveTeamId").val(); | |
3478 | + var slength = $("#steveTeams").children().length; | |
3479 | + //console.info("ss-") | |
3480 | + $("#steveTeams option").each(function(){ | |
3481 | + //console.info("this team id "+$(this).val()+",old id "+steveTeamId); | |
3482 | + if(slength >= 2){//只有一个项是,是默认选中的 | |
3483 | + if($(this).val() == steveTeamId){ | |
3484 | + //console.info("selceted team id"+steveTeamId); | |
3485 | + $(this).attr("selected", true); | |
3486 | + var shareRatioVal = $(this).attr("bind-shareRatio"); | |
3487 | + $("#shareRatioVal").val(shareRatioVal); | |
3488 | + //console.info("sdds-"+steveTeamId) | |
3489 | + }else{ | |
3490 | + var one = $("#steveTeams").find('option')[1]; | |
3491 | + $("#steveTeams").val( $(one).val()); | |
3492 | + $("#shareRatioVal").val($(one).attr("bind-shareRatio")); | |
3493 | + $("#handlingTeam").val($(one).text()); | |
3494 | + } | |
3495 | + } | |
3496 | + }); | |
3497 | + } | |
3498 | + } | |
3499 | + function findHandTeam() { | |
3500 | + if(!waitPayStatus()){ | |
3501 | + if(!steveBack()){ | |
3502 | + console.log("-----状态不需要装卸费查询日志") | |
3503 | + return; | |
3504 | + } | |
3505 | + } | |
3506 | + if(!steveFeeRequire()){ | |
3507 | + console.log("市场是不需要装卸费") | |
3508 | + return; | |
3509 | + } | |
3510 | + $("#steveTeams").empty(); | |
3511 | + $("#steveTeamIdSelect").val(1); | |
3512 | + var productId = $("#productId").val(); | |
3513 | + var customerId = $("#customerId").val(); | |
3514 | + var departmentId = $("#dep").val(); | |
3515 | + var regionId = $("#district").val(); | |
3516 | + var handReceivableAmount = $("#handReceivableAmountLong").val(); | |
3517 | + if(handReceivableAmount == 0){ | |
3518 | + return; | |
3519 | + } | |
3520 | + console.log("市场是2222装卸费") | |
3521 | + $.ajax({ | |
3522 | + type: 'get', | |
3523 | + url: '/api/jmsf/ajax/findHandTeam', | |
3524 | + data: {productId: productId,customerId: customerId,departmentId: departmentId,regionId: regionId,handReceivableAmount:handReceivableAmount}, | |
3525 | + dataType: 'json', | |
3526 | + async: false, | |
3527 | + success: function (data) { | |
3528 | + var optionItemHtml ='<option value="">请选择</option>'; | |
3529 | + if (data.code != "200"){ | |
3530 | + $("#steveTeamIdError").html("没有匹配到装卸队") | |
3531 | + $("#steveTeams").attr("aria-invalid",true); | |
3532 | + $("#steveTeams").removeClass("is-valid"); | |
3533 | + $("#steveTeams").addClass("is-invalid"); | |
3534 | + return; | |
3535 | + }else { | |
3536 | + $("#steveTeamIdError").html("") | |
3537 | + $("#steveTeams").attr("aria-invalid",false); | |
3538 | + $("#steveTeams").addClass("is-valid"); | |
3539 | + $("#steveTeams").removeClass("is-invalid"); | |
3540 | + | |
3541 | + } | |
3542 | + var ret=data.data; | |
3543 | + | |
3544 | + /* var selected = ""; | |
3545 | + if(ret.length == 1){ | |
3546 | + selected = 'selected="selected"' | |
3547 | + }*/ | |
3548 | + for (var index = 0;index < ret.length;index++){ | |
3549 | + optionItemHtml =optionItemHtml+ '<option bind-shareRatio="' + ret[index].shareRatio + '" value="' + ret[index].id + '">' + ret[index].teamName + '</option>'; | |
3550 | + } | |
3551 | + $("#steveTeams").append(optionItemHtml); | |
3552 | + if(ret.length >= 1){ | |
3553 | + console.info("teamName:"+ret[0].teamName); | |
3554 | + | |
3555 | + if($("#steveTeams").find('option')[1] == undefined){ | |
3556 | + return; | |
3557 | + } | |
3558 | + $("#steveTeams").val( $("#steveTeams").find('option')[1].value); | |
3559 | + //$("#steveTeams").children().eq(1).attr("selected", true); | |
3560 | + $("#shareRatioVal").val(ret[0].shareRatio); | |
3561 | + $("#handlingTeam").val(ret[0].teamName); | |
3562 | + $("#steveTeamId").val(ret[0].id); | |
3563 | + } | |
3564 | + //console.info("size:"+$("#steveTeams").children().length); | |
3565 | + } | |
3566 | + }); | |
3567 | + } | |
3568 | + | |
3569 | + function calculateFlag(){ | |
3570 | + var viewType = $("#viewType").val(); | |
3571 | + if(viewType=='pay'||viewType=='correct' ){ | |
3572 | + | |
3573 | + }else{ | |
3574 | + $("#cal").hide(); | |
3575 | + $(".no-require").each(function(){ | |
3576 | + $('input:checkbox[name="billItemCheckIds"]').attr("onclick","return false"); | |
3577 | + }); | |
3578 | + /*$(".goods-tags").each(function(){ | |
3579 | + $('input:checkbox[name="goodsTagIds"]').attr("onclick","return false"); | |
3580 | + });*/ | |
3581 | + | |
3582 | + } | |
3583 | + | |
3584 | + } | |
3585 | + function printView(){ | |
3586 | + var chargeTotalAmount = receivableAmount()-discountAmount()-feedbackAmount(); | |
3587 | + if($("#marketFlag").val()=="qd"){ | |
3588 | + chargeTotalAmount = receivableAmount()-discountAmount(); | |
3589 | + } | |
3590 | + var targetNumber = new Number(chargeTotalAmount); | |
3591 | + $("#printViewYuan").val(targetNumber.div(ONE_HUNDRED_NUMBER)); | |
3592 | + $("#printViewSymbol").val(toThousands(targetNumber.div(ONE_HUNDRED_NUMBER))); | |
3593 | + } | |
3594 | + function steveFeeRequire(){ | |
3595 | + if($("#marketFlag").val()=="qd" || $("#marketFlag").val()=="sy"){ | |
3596 | + return true; | |
3597 | + } | |
3598 | + return false; | |
3599 | + } | |
3600 | + function waitPayStatus(){ | |
3601 | + if($("#status").val()==2){ | |
3602 | + return true; | |
3603 | + } | |
3604 | + return false; | |
3605 | + } | |
3606 | + function steveBack(){ | |
3607 | + if($("#viewType").val()=="back"){ | |
3608 | + return true; | |
3609 | + } | |
3610 | + return false; | |
3611 | + } | |
3612 | +</script> | |
0 | 3613 | \ No newline at end of file | ... | ... |
testcase/test_ZC/test_ZC.py
... | ... | @@ -125,10 +125,13 @@ class test_demo(unittest.TestCase): |
125 | 125 | """调用方法1""" |
126 | 126 | cre_res = zcA.create_jmsf(host=self.gatewayHost,carTypeName="板车",plate="川B00001",keyword="雪莲果", |
127 | 127 | userName="ty_test",transactionName="沈阳2号",newWeight=20, |
128 | - depName="接车部",goodsTagName="货物标签测试",proveName="绿色蔬菜") | |
128 | + depName="水果部",goodsTagName="货物标签测试",proveName="绿色蔬菜") | |
129 | 129 | print(cre_res.json()) |
130 | - # number = cre_res.json()["data"]["number"] | |
130 | + number = cre_res.json()["data"]["number"] | |
131 | + # aa = eFBL.do_freezeOrder(attrValue=number) | |
131 | 132 | # aa = eFBL.do_payOrder(attrValue=number) |
133 | + # cre_res = zcA.create_jmsf(host=self.gatewayHost) | |
134 | + # print(cre_res.json()) | |
132 | 135 | # cre_res = zcA.create_jmsf(host=self.gatewayHost,plate="川B00002",newWeight=20) |
133 | 136 | # print(cre_res.json()) |
134 | 137 | ... | ... |
testcase/test_listPage/test_listPageOperation.py
0 → 100644
1 | +# -*- coding: utf-8 -*- | |
2 | + | |
3 | +# @Time : 2021/8/11 15:25 | |
4 | +# @Author : Ljq | |
5 | +# @File : test_listPageOperation.py | |
6 | +# @Software: PyCharm | |
7 | + | |
8 | +""" | |
9 | + | |
10 | +""" | |
11 | + | |
12 | +import json | |
13 | +import unittest | |
14 | +from commons.scripts.readConf import rC | |
15 | +from commons.api import zcApi as zcA | |
16 | +from commons.api import sjApi | |
17 | +from commons.basic import getLookupList as gLL | |
18 | +from commons import ConfigDB as CoDB | |
19 | +from commons.MySession import my | |
20 | +from commons.api import entranceFeeBillList as eFBL | |
21 | +import time,random | |
22 | + | |
23 | +class test_listPage(unittest.TestCase): | |
24 | + """进门单列表:attr进门单属性查询测试""" | |
25 | + def setUp(self) -> None: | |
26 | + pass | |
27 | + | |
28 | + def tearDown(self) -> None: | |
29 | + pass | |
30 | + | |
31 | + @classmethod | |
32 | + def setUpClass(cls) -> None: | |
33 | + cls.gatewayHost = rC.returnOptionsItems("host", "gatewayHost") | |
34 | + cls.jmsfHost = rC.returnOptionsItems("host", "jmsfHost") | |
35 | + cls.ic = rC.returnOptionsItems("testInfo", "cardNumRe") | |
36 | + | |
37 | + @classmethod | |
38 | + def tearDownClass(cls) -> None: | |
39 | + pass | |
40 | + | |
41 | + def test_orderView(self): | |
42 | + res = zcA.create_jmsf(host=self.gatewayHost) | |
43 | + orderId = res.json()["data"]["id"] | |
44 | + number = res.json()["data"]["number"] | |
45 | + res = eFBL.get_orderView(host=self.jmsfHost,orderId=orderId) | |
46 | + assert str(number) in res.text,"获取订单详情查询失败" | |
47 | + | |
48 | + def test_doPayCZ(self): | |
49 | + plate = f"川A{random.randint(10000,99999)}" | |
50 | + goods = "雪莲果" | |
51 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | |
52 | + print(cre_res.json()) | |
53 | + number = cre_res.json()["data"]["number"] | |
54 | + res_pay = eFBL.do_payOrder(attrValue=number) | |
55 | + assert res_pay.json()["code"]=="200","缴费失败" | |
56 | + assert res_pay.json()["message"] == "OK", "缴费失败" | |
57 | + | |
58 | + def test_doPaySJ(self): | |
59 | + plate = f"川A{random.randint(10000,99999)}" | |
60 | + goods = "雪莲果" | |
61 | + cre_res = sjApi.create_sj(host=self.gatewayHost,plate=plate,keyword=goods) | |
62 | + print(cre_res.json()) | |
63 | + number = cre_res.json()["data"]["number"] | |
64 | + res_pay = eFBL.do_payOrder(attrValue=number) | |
65 | + assert res_pay.json()["code"]=="200","缴费失败" | |
66 | + assert res_pay.json()["message"] == "OK", "缴费失败" | |
67 | + | |
68 | + def test_doPaySJ(self): | |
69 | + plate = f"川A{random.randint(10000,99999)}" | |
70 | + goods = "雪莲果" | |
71 | + cre_res = sjApi.create_sj(host=self.gatewayHost,plate=plate,keyword=goods) | |
72 | + print(cre_res.json()) | |
73 | + number = cre_res.json()["data"]["number"] | |
74 | + res_pay = eFBL.do_payOrder(attrValue=number) | |
75 | + assert res_pay.json()["code"]=="200","缴费失败" | |
76 | + assert res_pay.json()["message"] == "OK", "缴费失败" | |
77 | + | |
78 | + def test_freezeOrder(self): | |
79 | + plate = f"川A{random.randint(10000,99999)}" | |
80 | + goods = "雪莲果" | |
81 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | |
82 | + print(cre_res.json()) | |
83 | + number = cre_res.json()["data"]["number"] | |
84 | + res_pay = eFBL.do_freezeOrder(attrValue=number) | |
85 | + assert res_pay.json()["code"]=="200","冻结失败" | |
86 | + assert res_pay.json()["message"] == "OK", "冻结失败" | |
87 | + | |
88 | + def test_unfreezeOrder(self): | |
89 | + plate = f"川A{random.randint(10000,99999)}" | |
90 | + goods = "雪莲果" | |
91 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,plate=plate,keyword=goods) | |
92 | + print(cre_res.json()) | |
93 | + number = cre_res.json()["data"]["number"] | |
94 | + res_pay = eFBL.do_freezeOrder(attrValue=number) | |
95 | + assert res_pay.json()["code"]=="200","冻结失败" | |
96 | + assert res_pay.json()["message"] == "OK", "冻结失败" | ... | ... |
testcase/test_listPage/test_searchByAttrName.py
... | ... | @@ -63,9 +63,7 @@ class test_listPage(unittest.TestCase): |
63 | 63 | def test_searchByGoods(self): |
64 | 64 | """进门单列表-查询:商品查询测试""" |
65 | 65 | goods = "圣女果" |
66 | - cre_res = zcA.create_jmsf(host=self.gatewayHost,carTypeName="板车",plate="川B00001",keyword=goods, | |
67 | - userName="ty_test",transactionName="沈阳2号",newWeight=20, | |
68 | - depName="接车部",goodsTagName="货物标签测试",proveName="绿色蔬菜") | |
66 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,keyword=goods) | |
69 | 67 | resListPage = eFBL.listPage(host=self.jmsfHost,attrName="商品",attrValue=goods) |
70 | 68 | print(resListPage.json()) |
71 | 69 | assert resListPage.json()["rows"][0]["productName"] == goods,"按照商品查询失败" | ... | ... |
testcase/test_listPage/test_searchByOther.py
... | ... | @@ -13,6 +13,7 @@ import json |
13 | 13 | import unittest |
14 | 14 | from commons.scripts.readConf import rC |
15 | 15 | from commons.api import zcApi as zcA |
16 | +from commons.basic import getLookupList as gLL | |
16 | 17 | from commons import ConfigDB as CoDB |
17 | 18 | from commons.MySession import my |
18 | 19 | from commons.api import entranceFeeBillList as eFBL |
... | ... | @@ -32,18 +33,104 @@ class test_listPage(unittest.TestCase): |
32 | 33 | cls.gatewayHost = rC.returnOptionsItems("host", "gatewayHost") |
33 | 34 | cls.jmsfHost = rC.returnOptionsItems("host", "jmsfHost") |
34 | 35 | cls.ic = rC.returnOptionsItems("testInfo", "cardNumRe") |
36 | + carTypeList = gLL.get_LookupList(host=cls.jmsfHost,providerName="车型").json()[1:] | |
37 | + categoryList = gLL.get_LookupList(host=cls.jmsfHost, providerName="货物品类").json()[1:] | |
38 | + authDepartmentList = zcA.get_dep(cls.gatewayHost).json()["data"] | |
39 | + entranceFeeBillTypeList = gLL.get_LookupList(host=cls.jmsfHost, providerName="称重类型").json()[1:] | |
40 | + entranceFeeBillStateList = gLL.get_LookupList(host=cls.jmsfHost, providerName="状态").json()[1:] | |
41 | + tradeTypeList = gLL.get_LookupList(host=cls.jmsfHost, providerName="交易类型").json()[1:] | |
42 | + cls.carType = random.sample(carTypeList, 1)[0] | |
43 | + cls.category = random.sample(categoryList, 1)[0] | |
44 | + cls.authDepartment = random.sample(authDepartmentList, 1)[0] | |
45 | + cls.entranceFeeBillType = random.sample(entranceFeeBillTypeList, 1)[0] | |
46 | + cls.entranceFeeBillState = random.sample(entranceFeeBillStateList, 1)[0] | |
47 | + cls.tradeType = random.sample(tradeTypeList, 1)[0] | |
35 | 48 | |
36 | 49 | @classmethod |
37 | 50 | def tearDownClass(cls) -> None: |
38 | 51 | pass |
39 | 52 | |
40 | - def test_searchByNumber(self): | |
53 | + def test_searchByCardTepy(self): | |
41 | 54 | """进门单列表-查询:收费单号查询测试""" |
42 | - cre_res = zcA.create_jmsf(host=self.gatewayHost,carTypeName="挂车",plate="川B00001",keyword="雪莲果", | |
43 | - userName="ty_test",transactionName="沈阳2号",newWeight=20, | |
44 | - depName="接车部",goodsTagName="货物标签测试",proveName="绿色蔬菜") | |
55 | + print(self.carType) | |
56 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,carTypeName=self.carType["text"]) | |
45 | 57 | number = cre_res.json()["data"]["number"] |
46 | - resListPage = eFBL.listPage(host=self.jmsfHost,) | |
58 | + resListPage = eFBL.listPage(host=self.jmsfHost,carTypeId=self.carType["value"]) | |
47 | 59 | print(resListPage.json()) |
48 | - assert resListPage.json()["rows"][0]["number"] == number,"按照收费单号查询失败" | |
49 | - assert len(resListPage.json()["rows"]) == 1,"按照收费单号查询失败" | |
50 | 60 | \ No newline at end of file |
61 | + carTypeList=list(set([i["carTypeName"] for i in resListPage.json()["rows"]])) | |
62 | + assert resListPage.json()["rows"][0]["number"] == number,"车型查询失败查询失败" | |
63 | + assert len(carTypeList) == 1,"车型查询失败查询失败" | |
64 | + assert self.carType["text"]==carTypeList[0],"车型查询失败查询失败" | |
65 | + | |
66 | + def test_searchBycategory(self): | |
67 | + """进门单列表-查询:收费单号查询测试""" | |
68 | + goods="雪莲果" | |
69 | + categoryId = "14436" | |
70 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,keyword=goods) | |
71 | + number = cre_res.json()["data"]["number"] | |
72 | + resListPage = eFBL.listPage(host=self.jmsfHost,categoryId=categoryId) | |
73 | + print(resListPage.json()) | |
74 | + assert resListPage.json()["rows"][0]["number"] == number,"车型查询失败查询失败" | |
75 | + | |
76 | + def test_searchByProductName(self): | |
77 | + """进门单列表-查询:收费单号查询测试""" | |
78 | + productName = "蔬菜" | |
79 | + productId = gLL.get_product(self.jmsfHost,productName=productName).json()["data"][0]["id"] | |
80 | + print(productId) | |
81 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,keyword=productName) | |
82 | + number = cre_res.json()["data"]["number"] | |
83 | + resListPage = eFBL.listPage(host=self.jmsfHost,productName=productName,productId=productId) | |
84 | + print(resListPage.json()) | |
85 | + productNameList=list(set([i["productName"] for i in resListPage.json()["rows"]])) | |
86 | + assert resListPage.json()["rows"][0]["number"] == number,"车型查询失败查询失败" | |
87 | + assert len(productNameList) == 1,"车型查询失败查询失败" | |
88 | + assert productName==productNameList[0],"车型查询失败查询失败" | |
89 | + | |
90 | + def test_searchByDepartment(self): | |
91 | + """进门单列表-查询:收费单号查询测试""" | |
92 | + print(self.authDepartment) | |
93 | + print(self.authDepartment["name"]) | |
94 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,depName=self.authDepartment["name"]) | |
95 | + number = cre_res.json()["data"]["number"] | |
96 | + resListPage = eFBL.listPage(host=self.jmsfHost,dep=self.authDepartment["id"]) | |
97 | + # print(resListPage.json()) | |
98 | + depNameList=list(set([i["depName"] for i in resListPage.json()["rows"]])) | |
99 | + assert resListPage.json()["rows"][0]["number"] == number,"车型查询失败查询失败" | |
100 | + assert len(depNameList) == 1,"车型查询失败查询失败" | |
101 | + assert self.authDepartment["name"]==depNameList[0],"车型查询失败查询失败" | |
102 | + | |
103 | + def test_searchByBillType(self): | |
104 | + """进门单列表-查询:收费单号查询测试""" | |
105 | + resListPage = eFBL.listPage(host=self.jmsfHost,type="1") | |
106 | + print(resListPage.json()) | |
107 | + resList=list(set([i["type"] for i in resListPage.json()["rows"]])) | |
108 | + assert len(resList) == 1,"车型查询失败查询失败" | |
109 | + assert "整车"==resList[0],"车型查询失败查询失败" | |
110 | + | |
111 | + def test_searchByStatus(self): | |
112 | + """进门单列表-查询:收费单号查询测试""" | |
113 | + status = "4" | |
114 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,carTypeName=self.carType["text"]) | |
115 | + number = cre_res.json()["data"]["number"] | |
116 | + resListPage = eFBL.listPage(host=self.jmsfHost,status=status) | |
117 | + print(resListPage.json()) | |
118 | + statusList=list(set([i["status"] for i in resListPage.json()["rows"]])) | |
119 | + assert resListPage.json()["rows"][0]["number"] != number,"车型查询失败查询失败" | |
120 | + assert len(statusList) == 1,"车型查询失败查询失败" | |
121 | + assert "已缴费"==statusList[0],"车型查询失败查询失败" | |
122 | + | |
123 | + def test_searchByTradeType(self): | |
124 | + """进门单列表-查询:收费单号查询测试""" | |
125 | + print(self.tradeType) | |
126 | + cre_res = zcA.create_jmsf(host=self.gatewayHost,transactionName=self.tradeType["text"]) | |
127 | + number = cre_res.json()["data"]["number"] | |
128 | + resListPage = eFBL.listPage(host=self.jmsfHost,tradeTypeId=self.tradeType["value"]) | |
129 | + print(resListPage.json()) | |
130 | + carTypeList=list(set([i["tradeTypeName"] for i in resListPage.json()["rows"]])) | |
131 | + assert resListPage.json()["rows"][0]["number"] == number,"车型查询失败查询失败" | |
132 | + assert len(carTypeList) == 1,"车型查询失败查询失败" | |
133 | + assert self.tradeType["text"]==carTypeList[0],"车型查询失败查询失败" | |
134 | + | |
135 | + """ | |
136 | + 三个时间查询暂不涉及 | |
137 | + """ | |
51 | 138 | \ No newline at end of file | ... | ... |