apple.postman_collection_test.json 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259
  1. {
  2. "id": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3. "name": "apple",
  4. "description": "",
  5. "order": [],
  6. "folders": [
  7. {
  8. "name": "basic",
  9. "description": "",
  10. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  11. "order": [
  12. "74014bc4-dd3a-9ca5-47af-40634a33dcfc",
  13. "26f8bd03-9844-160c-4982-34dd7ec316cf",
  14. "e125b540-a871-f054-b610-e4ea25d54128",
  15. "0d71c719-d49a-f829-4d36-1e3fbd4e2cb1",
  16. "92a5653a-b724-9214-41e3-726c5df69c0d",
  17. "8192901a-574b-f19d-4649-382ff5b28ebf",
  18. "7e87a6e4-5114-ffaa-6675-4f7e9e5ad9af",
  19. "3fe45ba5-4d0f-2a3f-a128-21188a539dfb"
  20. ],
  21. "owner": "3911766",
  22. "folders_order": [],
  23. "id": "539db340-8e5c-cc19-6ff1-17c39ace8f7f"
  24. },
  25. {
  26. "name": "basicmaterial",
  27. "description": "",
  28. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  29. "order": [
  30. "9f8244a5-aa2c-5b09-2fd1-c0a34df703f8",
  31. "c1ae95c0-b42d-bb4d-4899-5eedc329a94b",
  32. "81338043-9c97-1997-364a-2123811aa1b8",
  33. "4a4b83f1-d6b2-2acd-a7d0-c61813c3b1b9",
  34. "45270a01-282f-b908-6555-3d7bd7bfe9d5",
  35. "5134774d-dba6-db54-4968-05a8cbcb022e",
  36. "6ec07cbb-2b8d-2725-b10d-78ad3970d6b2",
  37. "ab178c07-7dd8-a8c4-c06d-537861531419",
  38. "5de1acd5-9af5-0fd5-c763-23b2381985fc",
  39. "2d915acf-4c88-5f01-045b-161f83bb6185",
  40. "74a83b6e-9c08-c6da-6c68-d89bd390395f"
  41. ],
  42. "owner": "3911766",
  43. "folders_order": [],
  44. "id": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6"
  45. },
  46. {
  47. "name": "beautyservices",
  48. "description": "",
  49. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  50. "order": [
  51. "74b12994-5478-8802-988d-ed8df02faecc",
  52. "1aee8f0d-3a67-970c-0f8f-54ef5a36ec65",
  53. "58b458dd-bf4a-13a9-bfb8-6a02d629d806",
  54. "d34b0524-70ca-7703-7804-eaa050f9e020",
  55. "b0b27a78-55c4-56bb-8d44-cbdb41c6f4b5"
  56. ],
  57. "owner": "3911766",
  58. "folders_order": [],
  59. "id": "180bd428-f3e0-cbba-b32b-dce17d9389b9"
  60. },
  61. {
  62. "name": "business",
  63. "description": "",
  64. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  65. "order": [
  66. "6dc07085-98aa-e739-2d54-0107f612c530",
  67. "e2a7d5bd-b2ff-8ebc-ea90-4e9e72319244",
  68. "894569f3-f9c2-08c8-79da-36b9d6c4d6e4",
  69. "2f16a839-be17-405d-43c5-7b08a572be54",
  70. "068f379b-1b2c-830c-19d3-f976fed5eb2f",
  71. "14aff5fd-fb61-00a2-bd0f-57df849480f5",
  72. "3a8b8aea-2288-6f0e-c5f9-5f1235c36212",
  73. "88a902fb-614b-7f0e-2058-074af786c4fb",
  74. "906a625e-4454-8bd5-5257-2d6dfdc26dd6",
  75. "90639dda-79f7-6e91-b7a0-abee307e125b",
  76. "9e9bbb1b-16b4-9e32-3889-a1b364a6ba24",
  77. "b22d7372-44d2-20ce-def7-511ffb1342ec",
  78. "0cd0968f-9a84-0963-30fb-8daf958582e6",
  79. "2fb666df-1380-997e-e598-61c35ac351e8",
  80. "6558cd92-cade-e9a1-c4e7-8befc90913e8",
  81. "9c92680e-4f18-b0dc-b6ad-7d8fa63b8bed"
  82. ],
  83. "owner": "3911766",
  84. "folders_order": [],
  85. "id": "4560df61-c6be-e868-4dcb-d9c518d0ed6c"
  86. },
  87. {
  88. "name": "forms",
  89. "description": "",
  90. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  91. "order": [
  92. "94103fab-daa7-eac8-49dc-471243f9d8c7",
  93. "2b97c101-6278-ce8c-006b-0d255c65f193",
  94. "def5327f-61b3-368e-62ef-2b8ebb0b22e0",
  95. "cf097c33-dfc0-d210-599d-7026636aee42",
  96. "d472ff90-38b1-3bcc-64cc-3ffb31055d3c",
  97. "ec502a5c-f8ef-5151-f29f-219381d4d3b9",
  98. "e388191c-5b34-784c-3421-731681f03358",
  99. "6e94f1aa-5766-1b8a-b94d-5de6f1556745",
  100. "9b6d9be1-4a38-b489-2dbd-2fb3a42c3acf",
  101. "d6598938-7d03-62e8-e77b-b6287e0c5945"
  102. ],
  103. "owner": "3911766",
  104. "folders_order": [],
  105. "id": "1e29e83b-5f04-31b3-6f14-a304fbe9b690"
  106. },
  107. {
  108. "name": "login",
  109. "description": "",
  110. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  111. "order": [
  112. "1c760647-8690-8866-fb31-f62f06310b5d",
  113. "dcdea255-611e-83d9-495c-f713420c187d",
  114. "2d0234a2-ae31-f4ef-3c03-bfc522c0bdc1"
  115. ],
  116. "owner": "3911766",
  117. "folders_order": [],
  118. "id": "258dbb78-5893-cb28-78f7-69b6f54919e0"
  119. },
  120. {
  121. "name": "memberrecharge",
  122. "description": "",
  123. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  124. "order": [
  125. "74d33c98-fed0-9af4-969f-47539a387a20",
  126. "46122989-bbe1-3073-8fec-e309f9e4fdf6",
  127. "e301ffb0-20d6-173a-7655-7c1a3fc7cce2"
  128. ],
  129. "owner": "3911766",
  130. "folders_order": [],
  131. "id": "53139a4f-0098-fcf8-5fa2-d0ec627db9af"
  132. },
  133. {
  134. "name": "others",
  135. "description": "",
  136. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  137. "order": [],
  138. "owner": "3911766",
  139. "folders_order": [],
  140. "id": "adb8cfee-6df5-a290-cc30-af9a904c25f3"
  141. },
  142. {
  143. "name": "packagecard",
  144. "description": "",
  145. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  146. "order": [
  147. "fc8443e8-d8d7-f07e-7984-67b97f3c38a3",
  148. "16a6eeb3-3615-7fc7-d573-ea0a2774b185",
  149. "e052f5a9-a923-e14b-1cd9-33c4016071fc",
  150. "878116d6-72e0-1988-a558-e4bb4c0a2933"
  151. ],
  152. "owner": "3911766",
  153. "folders_order": [],
  154. "id": "cd656873-5d45-9402-5b7f-47d6cc24c3a0"
  155. },
  156. {
  157. "name": "repaireservice",
  158. "description": "",
  159. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  160. "order": [
  161. "cc4e89fb-f762-0af1-a410-7ed978cb5cb6",
  162. "b955ce50-b147-1922-7170-b2dccea3f39a",
  163. "6abcb1c8-75de-00b6-1c0e-d5995240429a",
  164. "4b190d97-6fa7-4d5f-0657-c06b1c838185",
  165. "47f6469a-4bac-fba7-e97f-e28ea96b77f7",
  166. "e2df20b4-1698-2c3a-5a1b-14bb437554c6",
  167. "3863046b-97c1-3f4d-912e-8142ff768217",
  168. "647f0dee-ee27-d3fa-2e5a-4a2d54ee577d",
  169. "5d8803d5-77f4-1a3a-3116-6091e7082f5a",
  170. "3ae70b8f-7963-0b9c-eaf2-abfdfbc9d132",
  171. "4b943c5c-2c1c-05b2-5381-738f00e36df7",
  172. "1d89693b-62c3-397f-0b82-129694aa3888"
  173. ],
  174. "owner": "3911766",
  175. "folders_order": [],
  176. "id": "a57764df-8558-a6a8-70ae-f05b02dcb13f"
  177. },
  178. {
  179. "name": "setprice",
  180. "description": "",
  181. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  182. "order": [],
  183. "owner": "3911766",
  184. "folders_order": [],
  185. "id": "97326995-42ee-4562-5a9f-511704221e3c"
  186. },
  187. {
  188. "name": "setproduct",
  189. "description": "",
  190. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  191. "order": [
  192. "14c81c49-ef63-92c7-4c45-1a04a35d9fc4",
  193. "37b464fe-e735-be5a-370d-b410eff180a8",
  194. "b2887460-7b7a-44b6-f39d-fd36b704fe71",
  195. "bd588a0a-923e-24ce-68f9-31c5768d7545",
  196. "44c51591-c575-d365-2d92-3fd428950b62",
  197. "2e66ac76-60b0-c4fc-7d69-6b6f4ed12710",
  198. "dbcda8a5-77a8-6c7e-2bbe-acd490897b8a",
  199. "decaad4b-13f1-66be-85d7-02f0826be793",
  200. "c6d6d392-e4b5-dbca-cf76-0ef65dd0be7a",
  201. "de398edf-8e64-d524-2fa3-bf8821c883c5",
  202. "24ed3efc-1e5d-7ecc-1c97-8b8a27543d74",
  203. "2844328a-1b35-7b20-6267-a4ea3ee29f98"
  204. ],
  205. "owner": "3911766",
  206. "folders_order": [],
  207. "id": "b9652708-c73e-a7d0-4155-1695fee6fc80"
  208. },
  209. {
  210. "name": "valuecard",
  211. "description": "",
  212. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  213. "order": [
  214. "57fa0011-0748-4cd6-d39f-0c7d2bfc62e7",
  215. "99a7bef3-ff9b-7618-0e04-982e4558a6b7",
  216. "456b3d68-9dcd-b903-2413-b4bc99ed1004",
  217. "d4bbcc09-905e-1c30-0277-9d242013399b",
  218. "0824e714-53cc-aebb-607a-a8d229ee80ce",
  219. "5d325be1-38ea-c8a8-2a19-be0be31f8508",
  220. "d5e90dc5-1b9f-79c3-9558-7b47b0c341a1",
  221. "85e0d197-4796-6082-b9c9-1cccf013e61c",
  222. "7eab6ce9-c057-bc18-0b40-45e73f442c04",
  223. "5f682df6-fc48-20e2-6e92-b7a508ea0fb6",
  224. "7e232948-656b-021a-6adc-9828b7b08ddb",
  225. "5b63f82d-5e38-521e-7e74-1e5107398eee",
  226. "660b5319-b041-f20b-bd05-4d7cf7d42c35",
  227. "1ea34b94-317d-224f-cc1b-44ea8597cce0",
  228. "ba041183-f0f1-da39-de59-33ec03df9272",
  229. "c45586a0-5536-fc28-bac2-e45886b39f39",
  230. "373abaf2-6a85-f561-ba12-aa28b41e61ab",
  231. "2c0bb19b-cdaf-4716-ba2e-fe47225a3e0d",
  232. "578e47bb-3629-7c01-9300-57461ca063db",
  233. "0e484779-9a80-e873-6a9b-2e82d8a2a52a",
  234. "79f98c9f-ba8a-d155-fc6c-b88b37834947"
  235. ],
  236. "owner": "3911766",
  237. "folders_order": [],
  238. "id": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec"
  239. },
  240. {
  241. "name": "vipmember",
  242. "description": "",
  243. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  244. "order": [
  245. "e8d34f46-708d-c063-7578-1f0ffd9ca862",
  246. "9c3dec5b-86f1-5ea6-1d7f-8d27a8c14212",
  247. "08bf2857-b48c-5c7b-647e-2ed631ecacd6",
  248. "3540c300-0a3c-7a4b-f0cf-a63d6d745cb6",
  249. "64bf4e20-02db-d0e4-79f4-c99a806b0f05",
  250. "3423dfb4-7352-5906-b3de-c17b5c8b8f68",
  251. "d345fc5b-1f8b-d34f-1f7e-879fe3950888",
  252. "da9affee-820b-5fdd-9c26-38bd42ecde57",
  253. "0565e4bb-3217-df37-9a2b-89dc085e08c9",
  254. "4abce7f1-47d4-692a-43b2-9f8fee4e60d6",
  255. "14443c40-f526-aaa5-2bb8-858a9582bc8b",
  256. "581e23b5-02f8-56a5-0110-98eb1e0e855f"
  257. ],
  258. "owner": "3911766",
  259. "folders_order": [],
  260. "id": "971e459b-531d-9149-561c-f88b91970576"
  261. },
  262. {
  263. "name": "webvipmember",
  264. "description": "",
  265. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  266. "order": [
  267. "b9e89160-2a74-b20f-7782-794cf2c0e637",
  268. "2301dad6-d1fa-87a4-8cce-eb505b213924"
  269. ],
  270. "owner": "3911766",
  271. "folders_order": [],
  272. "id": "fd04520e-36b0-86bf-fa32-4e6b4f4adfe4"
  273. }
  274. ],
  275. "folders_order": [
  276. "adb8cfee-6df5-a290-cc30-af9a904c25f3",
  277. "258dbb78-5893-cb28-78f7-69b6f54919e0",
  278. "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  279. "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  280. "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  281. "b9652708-c73e-a7d0-4155-1695fee6fc80",
  282. "97326995-42ee-4562-5a9f-511704221e3c",
  283. "fd04520e-36b0-86bf-fa32-4e6b4f4adfe4",
  284. "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  285. "971e459b-531d-9149-561c-f88b91970576",
  286. "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  287. "53139a4f-0098-fcf8-5fa2-d0ec627db9af",
  288. "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  289. "cd656873-5d45-9402-5b7f-47d6cc24c3a0",
  290. "1e29e83b-5f04-31b3-6f14-a304fbe9b690"
  291. ],
  292. "timestamp": 1529561009185,
  293. "owner": "3911766",
  294. "public": false,
  295. "requests": [
  296. {
  297. "id": "0565e4bb-3217-df37-9a2b-89dc085e08c9",
  298. "headers": "Authorization: Rong {{rongtoken}}\n",
  299. "headerData": [
  300. {
  301. "key": "Authorization",
  302. "value": "Rong {{rongtoken}}",
  303. "enabled": true,
  304. "description": ""
  305. }
  306. ],
  307. "url": "{{url}}/api/vipmember/vipmemberinfo/{{test_vipmember_id}}/",
  308. "folder": "971e459b-531d-9149-561c-f88b91970576",
  309. "queryParams": [],
  310. "preRequestScript": null,
  311. "pathVariables": {},
  312. "pathVariableData": [],
  313. "method": "GET",
  314. "data": null,
  315. "dataMode": "params",
  316. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  317. "currentHelper": "normal",
  318. "helperAttributes": "{}",
  319. "time": 1530325859456,
  320. "name": "09_get_vipmember_vipidinfo",
  321. "description": null,
  322. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  323. "timestamp": null,
  324. "isFromCollection": true,
  325. "collectionRequestId": "0565e4bb-3217-df37-9a2b-89dc085e08c9"
  326. },
  327. {
  328. "id": "068f379b-1b2c-830c-19d3-f976fed5eb2f",
  329. "headers": "Authorization: Rong {{rongtoken}}\n",
  330. "headerData": [
  331. {
  332. "key": "Authorization",
  333. "value": "Rong {{rongtoken}}",
  334. "enabled": true,
  335. "description": ""
  336. }
  337. ],
  338. "url": "{{url}}/api/business/repairdispatcheddetail/",
  339. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  340. "queryParams": [
  341. {
  342. "key": "receipt_date",
  343. "value": "2018-06-19",
  344. "equals": true,
  345. "description": "",
  346. "enabled": false
  347. }
  348. ],
  349. "preRequestScript": null,
  350. "pathVariables": {},
  351. "pathVariableData": [],
  352. "method": "GET",
  353. "data": null,
  354. "dataMode": "params",
  355. "version": 2,
  356. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  357. "currentHelper": "normal",
  358. "helperAttributes": "{}",
  359. "time": 1530330983229,
  360. "name": "04_get_business_repairdispatcheddetail",
  361. "description": "",
  362. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  363. "responses": [],
  364. "isFromCollection": true,
  365. "timestamp": null
  366. },
  367. {
  368. "id": "0824e714-53cc-aebb-607a-a8d229ee80ce",
  369. "headers": "Authorization: Rong {{rongtoken}}\n",
  370. "headerData": [
  371. {
  372. "key": "Authorization",
  373. "value": "Rong {{rongtoken}}",
  374. "enabled": true,
  375. "description": ""
  376. }
  377. ],
  378. "url": "{{url}}/api/vipmember/vipmemberrecharge/?t={{$timestamp}}",
  379. "queryParams": [
  380. {
  381. "key": "t",
  382. "value": "{{$timestamp}}",
  383. "equals": true,
  384. "description": "",
  385. "enabled": true
  386. }
  387. ],
  388. "preRequestScript": null,
  389. "pathVariables": {},
  390. "pathVariableData": [],
  391. "method": "GET",
  392. "data": null,
  393. "dataMode": "params",
  394. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  395. "currentHelper": "normal",
  396. "helperAttributes": "{}",
  397. "time": 1529747592231,
  398. "name": "05_get_vipmember_vipmemberrecharge_list",
  399. "description": "",
  400. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  401. "responses": [],
  402. "isFromCollection": true,
  403. "timestamp": null,
  404. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec"
  405. },
  406. {
  407. "id": "08bf2857-b48c-5c7b-647e-2ed631ecacd6",
  408. "headers": "Authorization: Rong {{rongtoken}}\n",
  409. "headerData": [
  410. {
  411. "key": "Authorization",
  412. "value": "Rong {{rongtoken}}",
  413. "enabled": true,
  414. "description": ""
  415. }
  416. ],
  417. "url": "{{url}}/api/vipmember/vipmemberinfo/?search={{test_phone_number}}",
  418. "folder": "971e459b-531d-9149-561c-f88b91970576",
  419. "queryParams": [
  420. {
  421. "key": "search",
  422. "value": "{{test_phone_number}}",
  423. "equals": true,
  424. "description": "",
  425. "enabled": true
  426. }
  427. ],
  428. "preRequestScript": null,
  429. "pathVariables": {},
  430. "pathVariableData": [],
  431. "method": "GET",
  432. "data": null,
  433. "dataMode": "params",
  434. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"car_code02\", jsonData.results[0].car[0].code);\n postman.setEnvironmentVariable(\"areashort02\", jsonData.results[0].car[0].areashort);\n postman.setEnvironmentVariable(\"phone_number02\", jsonData.results[0].phone_number);\n postman.setEnvironmentVariable(\"vip_name02\", jsonData.results[0].name);\n postman.setEnvironmentVariable(\"vipmember_id02\", jsonData.results[0].id);\n postman.setEnvironmentVariable(\"test_car_id\", jsonData.results[0].car[0].id);",
  435. "currentHelper": "normal",
  436. "helperAttributes": "{}",
  437. "time": 1531127128752,
  438. "name": "03_get_vipmember_searchhasnumber",
  439. "description": "",
  440. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  441. "responses": [],
  442. "timestamp": null,
  443. "isFromCollection": true,
  444. "collectionRequestId": "08bf2857-b48c-5c7b-647e-2ed631ecacd6"
  445. },
  446. {
  447. "id": "0cd0968f-9a84-0963-30fb-8daf958582e6",
  448. "headers": "Authorization: Rong {{rongtoken}}\n",
  449. "headerData": [
  450. {
  451. "key": "Authorization",
  452. "value": "Rong {{rongtoken}}",
  453. "enabled": true,
  454. "description": ""
  455. }
  456. ],
  457. "url": "{{url}}/api/business/repairdispatcheddetail/",
  458. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  459. "queryParams": [
  460. {
  461. "key": "recepit_date",
  462. "value": "2018-07-03",
  463. "equals": true,
  464. "description": "",
  465. "enabled": false
  466. }
  467. ],
  468. "preRequestScript": null,
  469. "pathVariables": {},
  470. "pathVariableData": [],
  471. "method": "GET",
  472. "data": [],
  473. "dataMode": "raw",
  474. "version": 2,
  475. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  476. "currentHelper": "normal",
  477. "helperAttributes": "{}",
  478. "time": 1530617498071,
  479. "name": "12_get_business_repairdispatcheddetail",
  480. "description": "",
  481. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  482. "responses": [],
  483. "isFromCollection": true,
  484. "timestamp": null,
  485. "rawModeData": ""
  486. },
  487. {
  488. "id": "0d71c719-d49a-f829-4d36-1e3fbd4e2cb1",
  489. "headers": "Authorization: Rong {{rongtoken}}\n",
  490. "headerData": [
  491. {
  492. "key": "Authorization",
  493. "value": "Rong {{rongtoken}}",
  494. "enabled": true,
  495. "description": ""
  496. }
  497. ],
  498. "url": "{{url}}/api/basic/beautypackageitem/1/",
  499. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  500. "queryParams": [],
  501. "preRequestScript": null,
  502. "pathVariables": {},
  503. "pathVariableData": [],
  504. "method": "GET",
  505. "data": null,
  506. "dataMode": "params",
  507. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  508. "currentHelper": "normal",
  509. "helperAttributes": "{}",
  510. "time": 1530346528968,
  511. "name": "14_get_basic_beautypackageitemid",
  512. "description": "",
  513. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  514. "responses": [],
  515. "timestamp": null,
  516. "isFromCollection": true
  517. },
  518. {
  519. "id": "0e484779-9a80-e873-6a9b-2e82d8a2a52a",
  520. "headers": "Authorization: Rong {{rongtoken}}\n",
  521. "headerData": [
  522. {
  523. "key": "Authorization",
  524. "value": "Rong {{rongtoken}}",
  525. "enabled": true,
  526. "description": ""
  527. }
  528. ],
  529. "url": "{{url}}/api/vipmember/storedvaluecard/?vipmember_info__phone_number=19159801111&t={{$timestamp}}",
  530. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  531. "queryParams": [
  532. {
  533. "key": "vipmember_info__phone_number",
  534. "value": "19159801111",
  535. "equals": true,
  536. "description": "",
  537. "enabled": true
  538. },
  539. {
  540. "key": "t",
  541. "value": "{{$timestamp}}",
  542. "equals": true,
  543. "description": "",
  544. "enabled": true
  545. }
  546. ],
  547. "preRequestScript": null,
  548. "pathVariables": {},
  549. "pathVariableData": [],
  550. "method": "GET",
  551. "data": null,
  552. "dataMode": "params",
  553. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  554. "currentHelper": "normal",
  555. "helperAttributes": "{}",
  556. "time": 1530669783636,
  557. "name": "20_get_vipmember_cardnumber",
  558. "description": "",
  559. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  560. "responses": [],
  561. "isFromCollection": true,
  562. "timestamp": null
  563. },
  564. {
  565. "id": "14443c40-f526-aaa5-2bb8-858a9582bc8b",
  566. "headers": "Authorization: Rong {{rongtoken}}\n",
  567. "headerData": [
  568. {
  569. "key": "Authorization",
  570. "value": "Rong {{rongtoken}}",
  571. "enabled": true,
  572. "description": ""
  573. }
  574. ],
  575. "url": "{{url}}/api/vipmember/vipmemberinfo/?phone_number__contain={{test_phone_number}}",
  576. "folder": "971e459b-531d-9149-561c-f88b91970576",
  577. "queryParams": [
  578. {
  579. "key": "phone_number__contain",
  580. "value": "{{test_phone_number}}",
  581. "equals": true,
  582. "description": "",
  583. "enabled": true
  584. }
  585. ],
  586. "preRequestScript": null,
  587. "pathVariables": {},
  588. "pathVariableData": [],
  589. "method": "GET",
  590. "data": [],
  591. "dataMode": "raw",
  592. "version": 2,
  593. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  594. "currentHelper": "normal",
  595. "helperAttributes": "{}",
  596. "time": 1531139492776,
  597. "name": "11_get_vipmember_vipmemberinfo",
  598. "description": "",
  599. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  600. "responses": [],
  601. "isFromCollection": true,
  602. "timestamp": null,
  603. "collectionRequestId": "14443c40-f526-aaa5-2bb8-858a9582bc8b",
  604. "rawModeData": "{\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"interest_template\": \r\n\t\"{{test_interest}}\"\r\n \r\n} "
  605. },
  606. {
  607. "id": "14aff5fd-fb61-00a2-bd0f-57df849480f5",
  608. "headers": "Authorization: Rong {{rongtoken}}\n",
  609. "headerData": [
  610. {
  611. "key": "Authorization",
  612. "value": "Rong {{rongtoken}}",
  613. "enabled": true,
  614. "description": ""
  615. }
  616. ],
  617. "url": "{{url}}/api/business/settlementmethod/",
  618. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  619. "queryParams": [
  620. {
  621. "key": "receipt_date",
  622. "value": "2018-06-19",
  623. "equals": true,
  624. "description": "",
  625. "enabled": false
  626. }
  627. ],
  628. "preRequestScript": null,
  629. "pathVariables": {},
  630. "pathVariableData": [],
  631. "method": "GET",
  632. "data": null,
  633. "dataMode": "params",
  634. "version": 2,
  635. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  636. "currentHelper": "normal",
  637. "helperAttributes": "{}",
  638. "time": 1530331081757,
  639. "name": "05_get_business_settlementmethod",
  640. "description": "",
  641. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  642. "responses": [],
  643. "isFromCollection": true,
  644. "timestamp": null
  645. },
  646. {
  647. "id": "14c81c49-ef63-92c7-4c45-1a04a35d9fc4",
  648. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  649. "headerData": [
  650. {
  651. "key": "Authorization",
  652. "value": "Rong {{rongtoken}}",
  653. "enabled": true,
  654. "description": ""
  655. },
  656. {
  657. "key": "Content-Type",
  658. "value": "application/json",
  659. "enabled": true,
  660. "description": ""
  661. }
  662. ],
  663. "url": "{{url}}/api/basic/brands/",
  664. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  665. "queryParams": [],
  666. "preRequestScript": null,
  667. "pathVariables": {},
  668. "pathVariableData": [],
  669. "method": "POST",
  670. "data": [],
  671. "dataMode": "raw",
  672. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  673. "currentHelper": "normal",
  674. "helperAttributes": "{}",
  675. "time": 1532000553881,
  676. "name": "post_basic_brands",
  677. "description": "",
  678. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  679. "responses": [],
  680. "isFromCollection": true,
  681. "timestamp": null,
  682. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"Dior\",\r\n\t\"code\": null,\r\n\t\"note\": \"专业品牌\"\r\n}"
  683. },
  684. {
  685. "id": "16a6eeb3-3615-7fc7-d573-ea0a2774b185",
  686. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  687. "headerData": [
  688. {
  689. "key": "Authorization",
  690. "value": "Rong {{rongtoken}}",
  691. "enabled": true,
  692. "description": ""
  693. },
  694. {
  695. "key": "Content-Type",
  696. "value": "application/json",
  697. "enabled": true,
  698. "description": ""
  699. }
  700. ],
  701. "url": "{{url}}/api/vipmember/vipmemberserviceitem/?t={{$timestamp}}",
  702. "folder": "cd656873-5d45-9402-5b7f-47d6cc24c3a0",
  703. "queryParams": [
  704. {
  705. "key": "t",
  706. "value": "{{$timestamp}}",
  707. "equals": true,
  708. "description": "",
  709. "enabled": true
  710. }
  711. ],
  712. "preRequestScript": null,
  713. "pathVariables": {},
  714. "pathVariableData": [],
  715. "method": "POST",
  716. "data": [],
  717. "dataMode": "raw",
  718. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  719. "currentHelper": "normal",
  720. "helperAttributes": "{}",
  721. "time": 1530349163047,
  722. "name": "02_post_vipmember_vipmemberserviceitem",
  723. "description": "",
  724. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  725. "responses": [],
  726. "isFromCollection": true,
  727. "timestamp": null,
  728. "rawModeData": "[{\r\n\t\"number\": 1,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id01}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}, {\r\n\t\"number\": 10,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id02}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}]"
  729. },
  730. {
  731. "id": "1aee8f0d-3a67-970c-0f8f-54ef5a36ec65",
  732. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  733. "headerData": [
  734. {
  735. "key": "Authorization",
  736. "value": "Rong {{rongtoken}}",
  737. "enabled": true,
  738. "description": ""
  739. },
  740. {
  741. "key": "Content-Type",
  742. "value": "application/json",
  743. "enabled": true,
  744. "description": ""
  745. }
  746. ],
  747. "url": "{{url}}/api/basic/beautyservices/",
  748. "folder": "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  749. "queryParams": [],
  750. "preRequestScript": null,
  751. "pathVariables": {},
  752. "pathVariableData": [],
  753. "method": "POST",
  754. "data": [],
  755. "dataMode": "raw",
  756. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  757. "currentHelper": "normal",
  758. "helperAttributes": "{}",
  759. "time": 1532053095365,
  760. "name": "post_beautyservice",
  761. "description": "",
  762. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  763. "responses": [],
  764. "isFromCollection": true,
  765. "timestamp": null,
  766. "rawModeData": "{\r\n\t\"name\": \"人工净化\",\r\n\t\"category\": {{beauty_category_id03}},\r\n\t\"unit\": 0,\r\n\t\"price\": \"99\",\r\n\t\"description\": \"净化空气,干净舒适\"\r\n}"
  767. },
  768. {
  769. "id": "1c760647-8690-8866-fb31-f62f06310b5d",
  770. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  771. "headerData": [
  772. {
  773. "key": "Content-Type",
  774. "value": "application/json",
  775. "enabled": true,
  776. "description": ""
  777. },
  778. {
  779. "key": "Authorization",
  780. "value": "Rong {{rongtoken}}",
  781. "enabled": true,
  782. "description": ""
  783. }
  784. ],
  785. "url": "{{url}}/api/basic/shop/",
  786. "folder": "258dbb78-5893-cb28-78f7-69b6f54919e0",
  787. "queryParams": [],
  788. "preRequestScript": null,
  789. "pathVariables": {},
  790. "pathVariableData": [],
  791. "method": "POST",
  792. "data": [],
  793. "dataMode": "raw",
  794. "tests": "\ntests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n//postman.setEnvironmentVariable(\"test_shop_id\", jsonData.id);\n\n",
  795. "currentHelper": "normal",
  796. "helperAttributes": "{}",
  797. "time": 1531986140233,
  798. "name": "01_post_shop",
  799. "description": "",
  800. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  801. "responses": [],
  802. "timestamp": null,
  803. "rawModeData": "{\r\n\t\"shop_code\": \"六月七月\",\r\n\t\"name\": \"启悦修理厂\",\r\n\t\"country\": null,\r\n\t\"province\": null,\r\n\t\"city\": null,\r\n\t\"area\": null,\r\n\t\"address\": null,\r\n\t\"boss_name\": \"五月\",\r\n\t\"boss_mobile\": \"17700006666\",\r\n\t\"boss_email\": \"17700006666@qq.com\",\r\n\t\"contact_name\": null,\r\n\t\"contace_mobile\": null,\r\n\t\"telephone\": null,\r\n\t\"email\": null,\r\n\t\"description\": null,\r\n\t\"style\": null,\r\n\t\"mainbussiness\": null,\r\n\t\"wiff_usr\": null,\r\n\t\"wiff_pwd\": null,\r\n\t\"state\": true,\r\n\t\"qrcode\": null\r\n}"
  804. },
  805. {
  806. "id": "1d89693b-62c3-397f-0b82-129694aa3888",
  807. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  808. "headerData": [
  809. {
  810. "key": "Authorization",
  811. "value": "Rong {{rongtoken}}",
  812. "enabled": true,
  813. "description": ""
  814. },
  815. {
  816. "key": "Content-Type",
  817. "value": "application/json",
  818. "enabled": true,
  819. "description": ""
  820. }
  821. ],
  822. "url": "{{url}}/api/basic/repairparts/",
  823. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  824. "queryParams": [],
  825. "preRequestScript": null,
  826. "pathVariables": {},
  827. "pathVariableData": [],
  828. "method": "GET",
  829. "data": [],
  830. "dataMode": "raw",
  831. "version": 2,
  832. "tests": "\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  833. "currentHelper": "normal",
  834. "helperAttributes": "{}",
  835. "time": 1532078740531,
  836. "name": "get_repairparts",
  837. "description": null,
  838. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  839. "responses": [],
  840. "isFromCollection": true,
  841. "collectionRequestId": "1d89693b-62c3-397f-0b82-129694aa3888",
  842. "timestamp": null,
  843. "rawModeData": "{\r\n \"carcategoryArray\": [{{carcategory_id01}}, {{carcategory_id01_id01}}, {{carcategory_id01_id01_id01}}, {{carcategory_id01_id01_id01_id01}}],\r\n \"carcategory\": {{carcategory_id01_id01_id01_id01}},\r\n \"repair_service\": {{repairservice_id02}},\r\n \"note\": null,\r\n \"status\": true,\r\n \"category_name\": \"{{test_category_name02}}}\",\r\n \"repairpartsitem\": [{\r\n \"id\": {{carproduct_id01}},\r\n \"category_name\": \"{{category_name01}}\",\r\n \"name\": \"{{name01}}\",\r\n \"specification\": \"{{specification01}}\",\r\n \"code\": \"{{code01}}\",\r\n \"unit\":{{unit01}},\r\n \"unit_cost\": \"{{unit_cost01}}\",\r\n \"price\": \"{{price01}}\",\r\n \"note\": null,\r\n \"shop\": {{shop01}},\r\n \"brands\": {{brands01}},\r\n \"category\": {{category01}},\r\n \"storehouse\": {{storehouse01}},\r\n \"supplier\": {{supplier01}},\r\n \"amount\": 2\r\n }, {\r\n \"id\": {{carproduct_id02}},\r\n \"category_name\": \"{{category_name02}}\",\r\n \"name\": \"{{name02}}\",\r\n \"specification\": \"{{specification02}}\",\r\n \"code\": \"{{code02}}\",\r\n \"unit\":{{unit02}},\r\n \"unit_cost\": \"{{unit_cost02}}\",\r\n \"price\": \"{{price02}}\",\r\n \"note\": null,\r\n \"shop\": {{shop02}},\r\n \"brands\": {{brands02}},\r\n \"category\": {{category02}},\r\n \"storehouse\": {{storehouse02}},\r\n \"supplier\": {{supplier02}},\r\n \"amount\": 1\r\n }]\r\n}"
  844. },
  845. {
  846. "id": "1ea34b94-317d-224f-cc1b-44ea8597cce0",
  847. "headers": "Authorization: Rong {{rongtoken}}\n",
  848. "headerData": [
  849. {
  850. "key": "Authorization",
  851. "value": "Rong {{rongtoken}}",
  852. "enabled": true,
  853. "description": ""
  854. }
  855. ],
  856. "url": "{{url}}/api/vipmember/vipmemberconsumptiondetails/",
  857. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  858. "queryParams": [
  859. {
  860. "key": "t",
  861. "value": "{{$timestamp}}",
  862. "equals": true,
  863. "description": "",
  864. "enabled": false
  865. },
  866. {
  867. "key": "bill_date",
  868. "value": "2018-06-20",
  869. "equals": true,
  870. "description": "",
  871. "enabled": false
  872. },
  873. {
  874. "key": "vipmember_info__phone_number",
  875. "value": "18159801660",
  876. "equals": true,
  877. "description": "",
  878. "enabled": false
  879. }
  880. ],
  881. "preRequestScript": null,
  882. "pathVariables": {},
  883. "pathVariableData": [],
  884. "method": "GET",
  885. "data": null,
  886. "dataMode": "params",
  887. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  888. "currentHelper": "normal",
  889. "helperAttributes": "{}",
  890. "time": 1531278306523,
  891. "name": "14_get_vipmember_vipmemberconsumptiondetails",
  892. "description": "",
  893. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  894. "responses": [],
  895. "timestamp": null
  896. },
  897. {
  898. "id": "2301dad6-d1fa-87a4-8cce-eb505b213924",
  899. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  900. "headerData": [
  901. {
  902. "key": "Authorization",
  903. "value": "Rong {{rongtoken}}",
  904. "description": "",
  905. "enabled": true
  906. },
  907. {
  908. "key": "Content-Type",
  909. "value": "application/json",
  910. "description": "",
  911. "enabled": true
  912. }
  913. ],
  914. "url": "{{url}}/api/vipmember/vipmemberinfoadmin/",
  915. "folder": "fd04520e-36b0-86bf-fa32-4e6b4f4adfe4",
  916. "queryParams": [],
  917. "preRequestScript": null,
  918. "pathVariables": {},
  919. "pathVariableData": [],
  920. "method": "POST",
  921. "data": [],
  922. "dataMode": "raw",
  923. "version": 2,
  924. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  925. "currentHelper": "normal",
  926. "helperAttributes": {},
  927. "time": 1532402500774,
  928. "name": "post_vipmemberinfoadmin",
  929. "description": "",
  930. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  931. "responses": [],
  932. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"id\": null,\r\n\t\"register_date\": \"2018-07-23\",\r\n\t\"name\": \"越启悦\",\r\n\t\"phone_number\": \"17700001314\",\r\n\t\"grade\": 1,\r\n\t\"sex\": 1,\r\n\t\"birthday\": \"1993-08-08\",\r\n\t\"email\": \"ziyoux001@qq.com\",\r\n\t\"address\": \"厦门软件园二期\",\r\n\t\"wechat\": \"weixinhao008\",\r\n\t\"alipay\": \"zhifubao008\",\r\n\t\"interest\": [{{interest_id1}}, {{interest_id2}}],\r\n\t\"agent\": {{test_userid}},\r\n\t\"rem\": null,\r\n\t\"number\": null,\r\n\t\"car\": [{\r\n\t\t\"id\": null,\r\n\t\t\"code\": \"A88790\",\r\n\t\t\"areashort\": {\r\n\t\t\t\"id\": {{area_id01}},\r\n\t\t\t\"name\": \"{{area_name01}}\"\r\n\t\t},\r\n\t\t\"carcategory\": [{{carcategory_id01}}, {{carcategory_id01_id01}}, {{carcategory_id01_id01_id01}}, {{carcategory_id01_id01_id01_id01}}],\r\n\t\t\"engine_no\": \"FD89\",\r\n\t\t\"carbody_no\": \"CJH89\",\r\n\t\t\"on_date\": \"2016-06-06\",\r\n\t\t\"body_color\": \"蓝色\",\r\n\t\t\"description\": null,\r\n\t\t\"carcategory_name\": \"carcategory_id01_id01_id01_id01\"\r\n\t}]\r\n}"
  933. },
  934. {
  935. "id": "24ed3efc-1e5d-7ecc-1c97-8b8a27543d74",
  936. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  937. "headerData": [
  938. {
  939. "key": "Authorization",
  940. "value": "Rong {{rongtoken}}",
  941. "enabled": true,
  942. "description": ""
  943. },
  944. {
  945. "key": "Content-Type",
  946. "value": "application/json",
  947. "enabled": true,
  948. "description": ""
  949. }
  950. ],
  951. "url": "{{url}}/api/basic/carproducts/",
  952. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  953. "queryParams": [],
  954. "preRequestScript": null,
  955. "pathVariables": {},
  956. "pathVariableData": [],
  957. "method": "POST",
  958. "data": [],
  959. "dataMode": "raw",
  960. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  961. "currentHelper": "normal",
  962. "helperAttributes": "{}",
  963. "time": 1532001708156,
  964. "name": "post_basic_carproducts",
  965. "description": "",
  966. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  967. "responses": [],
  968. "timestamp": null,
  969. "isFromCollection": true,
  970. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"轮胎\",\r\n\t\"specification\": \"LT002\",\r\n\t\"code\": \"PJ001\",\r\n\t\"brands\": {{test_brands01}},\r\n\t\"category\": {{supplier_scope_id01}},\r\n\t\"unit\": 1,\r\n\t\"unit_cost\": \"100\",\r\n\t\"price\": \"90\",\r\n\t\"storehouse\":{{test_storehouse_id01}},\r\n\t\"supplier\": {{supplier_id01}},\r\n\t\"note\": \"创建仓库中的配件内容\"\r\n}"
  971. },
  972. {
  973. "id": "26f8bd03-9844-160c-4982-34dd7ec316cf",
  974. "headers": "Authorization: Rong {{rongtoken}}\n",
  975. "headerData": [
  976. {
  977. "key": "Authorization",
  978. "value": "Rong {{rongtoken}}",
  979. "enabled": true,
  980. "description": ""
  981. }
  982. ],
  983. "url": "{{url}}/api/basic/carproductscategory/",
  984. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  985. "queryParams": [],
  986. "preRequestScript": null,
  987. "pathVariables": {},
  988. "pathVariableData": [],
  989. "method": "GET",
  990. "data": null,
  991. "dataMode": "params",
  992. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  993. "currentHelper": "normal",
  994. "helperAttributes": "{}",
  995. "time": 1530327391312,
  996. "name": "10_get_basic_carproductscategory",
  997. "description": "",
  998. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  999. "responses": [],
  1000. "timestamp": null,
  1001. "isFromCollection": true
  1002. },
  1003. {
  1004. "id": "2844328a-1b35-7b20-6267-a4ea3ee29f98",
  1005. "headers": "Authorization: Rong {{rongtoken}}\n",
  1006. "headerData": [
  1007. {
  1008. "key": "Authorization",
  1009. "value": "Rong {{rongtoken}}",
  1010. "enabled": true,
  1011. "description": ""
  1012. }
  1013. ],
  1014. "url": "{{url}}/api/basic/carproducts/",
  1015. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  1016. "queryParams": [],
  1017. "preRequestScript": null,
  1018. "pathVariables": {},
  1019. "pathVariableData": [],
  1020. "method": "GET",
  1021. "data": null,
  1022. "dataMode": "params",
  1023. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonDate = JSON.parse(responseBody);\npostman.setEnvironmentVariable(\"carproduct_id01\", jsonDate.results[0].id);\npostman.setEnvironmentVariable(\"category_name01\", jsonDate.results[0].category_name);\npostman.setEnvironmentVariable(\"name01\", jsonDate.results[0].name);\npostman.setEnvironmentVariable(\"specification01\", jsonDate.results[0].specification);\npostman.setEnvironmentVariable(\"code01\", jsonDate.results[0].code);\npostman.setEnvironmentVariable(\"unit01\", jsonDate.results[0].unit);\npostman.setEnvironmentVariable(\"unit_code01\", jsonDate.results[0].unit_code);\npostman.setEnvironmentVariable(\"price01\", jsonDate.results[0].price);\n//postman.setEnvironmentVariable(\"note01\", jsonDate.results[0].note);\npostman.setEnvironmentVariable(\"shop01\", jsonDate.results[0].shop);\npostman.setEnvironmentVariable(\"brands01\", jsonDate.results[0].brands);\npostman.setEnvironmentVariable(\"category01\", jsonDate.results[0].category);\npostman.setEnvironmentVariable(\"storehouse01\", jsonDate.results[0].storehouse);\npostman.setEnvironmentVariable(\"supplier01\", jsonDate.results[0].supplier);\n\npostman.setEnvironmentVariable(\"carproduct_id02\", jsonDate.results[1].id);\npostman.setEnvironmentVariable(\"category_name02\", jsonDate.results[1].category_name);\npostman.setEnvironmentVariable(\"name02\", jsonDate.results[1].name);\npostman.setEnvironmentVariable(\"specification02\", jsonDate.results[1].specification);\npostman.setEnvironmentVariable(\"code02\", jsonDate.results[1].code);\npostman.setEnvironmentVariable(\"unit02\", jsonDate.results[1].unit);\npostman.setEnvironmentVariable(\"unit_code02\", jsonDate.results[1].unit_code);\npostman.setEnvironmentVariable(\"price02\", jsonDate.results[1].price);\n//postman.setEnvironmentVariable(\"note02\", jsonDate.results[1].note);\npostman.setEnvironmentVariable(\"shop02\", jsonDate.results[1].shop);\npostman.setEnvironmentVariable(\"brands02\", jsonDate.results[1].brands);\npostman.setEnvironmentVariable(\"category02\", jsonDate.results[1].category);\npostman.setEnvironmentVariable(\"storehouse02\", jsonDate.results[1].storehouse);\npostman.setEnvironmentVariable(\"supplier02\", jsonDate.results[1].supplier);\n",
  1024. "currentHelper": "normal",
  1025. "helperAttributes": "{}",
  1026. "time": 1532078818877,
  1027. "name": "get_basic_carproducts",
  1028. "description": "",
  1029. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1030. "responses": [],
  1031. "isFromCollection": true,
  1032. "collectionRequestId": "2844328a-1b35-7b20-6267-a4ea3ee29f98",
  1033. "timestamp": null
  1034. },
  1035. {
  1036. "id": "2b97c101-6278-ce8c-006b-0d255c65f193",
  1037. "headers": "Authorization: Rong {{rongtoken}}\n",
  1038. "headerData": [
  1039. {
  1040. "key": "Authorization",
  1041. "value": "Rong {{rongtoken}}",
  1042. "enabled": true,
  1043. "description": ""
  1044. }
  1045. ],
  1046. "url": "{{url}}/api/capital/revenuereport/?month=6&year=2018 ",
  1047. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  1048. "queryParams": [
  1049. {
  1050. "key": "day",
  1051. "value": "29",
  1052. "equals": true,
  1053. "description": "",
  1054. "enabled": false
  1055. },
  1056. {
  1057. "key": "month",
  1058. "value": "6",
  1059. "equals": true,
  1060. "description": "",
  1061. "enabled": true
  1062. },
  1063. {
  1064. "key": "year",
  1065. "value": "2018 ",
  1066. "equals": true,
  1067. "description": "",
  1068. "enabled": true
  1069. }
  1070. ],
  1071. "preRequestScript": null,
  1072. "pathVariables": {},
  1073. "pathVariableData": [],
  1074. "method": "GET",
  1075. "data": null,
  1076. "dataMode": "params",
  1077. "version": 2,
  1078. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1079. "currentHelper": "normal",
  1080. "helperAttributes": "{}",
  1081. "time": 1530671511531,
  1082. "name": "02_get_capital_revenuereport_month",
  1083. "description": "",
  1084. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1085. "responses": [],
  1086. "isFromCollection": true,
  1087. "timestamp": null
  1088. },
  1089. {
  1090. "id": "2c0bb19b-cdaf-4716-ba2e-fe47225a3e0d",
  1091. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1092. "headerData": [
  1093. {
  1094. "key": "Authorization",
  1095. "value": "Rong {{rongtoken}}",
  1096. "enabled": true,
  1097. "description": ""
  1098. },
  1099. {
  1100. "key": "Content-Type",
  1101. "value": "application/json",
  1102. "enabled": true,
  1103. "description": ""
  1104. }
  1105. ],
  1106. "url": "{{url}}/api/vipmember/vipmemberrecharge/?t={{$timestamp}}",
  1107. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  1108. "queryParams": [
  1109. {
  1110. "key": "vipmember_info__phone_number",
  1111. "value": "13100008888",
  1112. "equals": true,
  1113. "description": "",
  1114. "enabled": false
  1115. },
  1116. {
  1117. "key": "t",
  1118. "value": "{{$timestamp}}",
  1119. "equals": true,
  1120. "description": "",
  1121. "enabled": true
  1122. }
  1123. ],
  1124. "preRequestScript": null,
  1125. "pathVariables": {},
  1126. "pathVariableData": [],
  1127. "method": "POST",
  1128. "data": [],
  1129. "dataMode": "raw",
  1130. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 200;",
  1131. "currentHelper": "normal",
  1132. "helperAttributes": "{}",
  1133. "time": 1531281945186,
  1134. "name": "18_post_vipmember_vipmemberrecharge",
  1135. "description": "",
  1136. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1137. "responses": [],
  1138. "isFromCollection": true,
  1139. "timestamp": null,
  1140. "rawModeData": "{\r\n\t\"rem\": \"\",\r\n\t\"bill_date\": \"{{test_begin_date}}\",\r\n\t\"number\": \"{{test_card_number}}\",\r\n\t\"amount_recharge\": \"{{test_amount_package}}\",\r\n\t\"real_payment\": \"{{test_real_amount}}\",\r\n\t\"amount_available\": \"{{test_amount_available}}\",\r\n\t\"shop\": 2,\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"agent\": null,\r\n\t\"sv_card\": {{test_card_id}},\r\n\t\"recharge_package\": {{test_recharge_id}},\r\n\t\"phone_number\": \"{{phone_member02}}\",\r\n\t\"areashort\": {{test_areashort}},\r\n\t\"vip_name\": \"{{test_vip_name}}\",\r\n\t\"car_code\": \"{{test_car_code}}\"\r\n}"
  1141. },
  1142. {
  1143. "id": "2d0234a2-ae31-f4ef-3c03-bfc522c0bdc1",
  1144. "headers": "Authorization: Rong {{rongtoken}}\n",
  1145. "headerData": [
  1146. {
  1147. "key": "Authorization",
  1148. "value": "Rong {{rongtoken}}",
  1149. "enabled": true,
  1150. "description": ""
  1151. }
  1152. ],
  1153. "url": "{{url}}/api/basic/shop/",
  1154. "folder": "258dbb78-5893-cb28-78f7-69b6f54919e0",
  1155. "queryParams": [
  1156. {
  1157. "key": "page",
  1158. "value": "1",
  1159. "equals": true,
  1160. "description": "",
  1161. "enabled": false
  1162. },
  1163. {
  1164. "key": "page_size",
  1165. "value": "10",
  1166. "equals": true,
  1167. "description": "",
  1168. "enabled": false
  1169. }
  1170. ],
  1171. "preRequestScript": null,
  1172. "pathVariables": {},
  1173. "pathVariableData": [],
  1174. "method": "GET",
  1175. "data": null,
  1176. "dataMode": "params",
  1177. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\n var jsonData = JSON.parse(responseBody);\n \npostman.setEnvironmentVariable(\"test_shopid\", jsonData.results[0].id);\n",
  1178. "currentHelper": "normal",
  1179. "helperAttributes": "{}",
  1180. "time": 1531985671338,
  1181. "name": "03_get_shop",
  1182. "description": "",
  1183. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1184. "responses": [],
  1185. "timestamp": null
  1186. },
  1187. {
  1188. "id": "2d915acf-4c88-5f01-045b-161f83bb6185",
  1189. "headers": "Authorization: Rong {{rongtoken}}\n",
  1190. "headerData": [
  1191. {
  1192. "key": "Authorization",
  1193. "value": "Rong {{rongtoken}}",
  1194. "enabled": true,
  1195. "description": ""
  1196. }
  1197. ],
  1198. "url": "{{url}}/api/basic/account/",
  1199. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  1200. "queryParams": [
  1201. {
  1202. "key": "access_token",
  1203. "value": "{{access_token}}",
  1204. "equals": true,
  1205. "description": "",
  1206. "enabled": false
  1207. }
  1208. ],
  1209. "preRequestScript": null,
  1210. "pathVariables": {},
  1211. "pathVariableData": [],
  1212. "method": "GET",
  1213. "data": null,
  1214. "dataMode": "params",
  1215. "version": 2,
  1216. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n \n //postman.setEnvironmentVariable(\"parent_id\", jsonData[0].parent);",
  1217. "currentHelper": "normal",
  1218. "helperAttributes": "{}",
  1219. "time": 1531988031298,
  1220. "name": "02_get_basic_account",
  1221. "description": "",
  1222. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1223. "responses": [],
  1224. "isFromCollection": true,
  1225. "timestamp": null
  1226. },
  1227. {
  1228. "id": "2e66ac76-60b0-c4fc-7d69-6b6f4ed12710",
  1229. "headers": "Authorization: Rong {{rongtoken}}\n",
  1230. "headerData": [
  1231. {
  1232. "key": "Authorization",
  1233. "value": "Rong {{rongtoken}}",
  1234. "enabled": true,
  1235. "description": ""
  1236. }
  1237. ],
  1238. "url": "{{url}}/api/basic/suppliercategory/",
  1239. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  1240. "queryParams": [],
  1241. "preRequestScript": null,
  1242. "pathVariables": {},
  1243. "pathVariableData": [],
  1244. "method": "GET",
  1245. "data": null,
  1246. "dataMode": "params",
  1247. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n\n postman.setEnvironmentVariable(\"supplier_category_id01\", jsonData[0].id);\n// postman.setEnvironmentVariable(\"supplier_scope_id02\", jsonData[1].id);\n// postman.setEnvironmentVariable(\"supplier_scope_id03\", jsonData[2].id);",
  1248. "currentHelper": "normal",
  1249. "helperAttributes": "{}",
  1250. "time": 1531999955543,
  1251. "name": "get_basic_suppliercategory",
  1252. "description": "",
  1253. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1254. "responses": [],
  1255. "isFromCollection": true,
  1256. "timestamp": null
  1257. },
  1258. {
  1259. "id": "2f16a839-be17-405d-43c5-7b08a572be54",
  1260. "headers": "Authorization: Rong {{rongtoken}}\n",
  1261. "headerData": [
  1262. {
  1263. "key": "Authorization",
  1264. "value": "Rong {{rongtoken}}",
  1265. "enabled": true,
  1266. "description": ""
  1267. }
  1268. ],
  1269. "url": "{{url}}/api/business/repaircardetail/",
  1270. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  1271. "queryParams": [
  1272. {
  1273. "key": "receipt_date",
  1274. "value": "2018-06-19",
  1275. "equals": true,
  1276. "description": "",
  1277. "enabled": false
  1278. }
  1279. ],
  1280. "preRequestScript": null,
  1281. "pathVariables": {},
  1282. "pathVariableData": [],
  1283. "method": "GET",
  1284. "data": null,
  1285. "dataMode": "params",
  1286. "version": 2,
  1287. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1288. "currentHelper": "normal",
  1289. "helperAttributes": "{}",
  1290. "time": 1530671429130,
  1291. "name": "03_get_business_repaircardetail",
  1292. "description": "",
  1293. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1294. "responses": [],
  1295. "timestamp": null
  1296. },
  1297. {
  1298. "id": "2fb666df-1380-997e-e598-61c35ac351e8",
  1299. "headers": "Authorization: Rong {{rongtoken}}\n",
  1300. "headerData": [
  1301. {
  1302. "key": "Authorization",
  1303. "value": "Rong {{rongtoken}}",
  1304. "enabled": true,
  1305. "description": ""
  1306. }
  1307. ],
  1308. "url": "{{url}}/api/business/settlementmethod/",
  1309. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  1310. "queryParams": [
  1311. {
  1312. "key": "recepit_date",
  1313. "value": "2018-07-03",
  1314. "equals": true,
  1315. "description": "",
  1316. "enabled": false
  1317. }
  1318. ],
  1319. "preRequestScript": null,
  1320. "pathVariables": {},
  1321. "pathVariableData": [],
  1322. "method": "GET",
  1323. "data": [],
  1324. "dataMode": "raw",
  1325. "version": 2,
  1326. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  1327. "currentHelper": "normal",
  1328. "helperAttributes": "{}",
  1329. "time": 1530617745482,
  1330. "name": "13_get_business_settlementmethod",
  1331. "description": "",
  1332. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1333. "responses": [],
  1334. "isFromCollection": true,
  1335. "timestamp": null,
  1336. "rawModeData": ""
  1337. },
  1338. {
  1339. "id": "3423dfb4-7352-5906-b3de-c17b5c8b8f68",
  1340. "headers": "Authorization: Rong {{rongtoken}}\n",
  1341. "headerData": [
  1342. {
  1343. "key": "Authorization",
  1344. "value": "Rong {{rongtoken}}",
  1345. "enabled": true,
  1346. "description": ""
  1347. }
  1348. ],
  1349. "url": "{{url}}/api/basic/car/?car_area={{area_id}}&car_code={{car_code}}",
  1350. "folder": "971e459b-531d-9149-561c-f88b91970576",
  1351. "queryParams": [
  1352. {
  1353. "key": "car_area",
  1354. "value": "{{area_id}}",
  1355. "equals": true,
  1356. "description": "",
  1357. "enabled": true
  1358. },
  1359. {
  1360. "key": "car_code",
  1361. "value": "{{car_code}}",
  1362. "equals": true,
  1363. "description": "",
  1364. "enabled": true
  1365. }
  1366. ],
  1367. "preRequestScript": null,
  1368. "pathVariables": {},
  1369. "pathVariableData": [],
  1370. "method": "GET",
  1371. "data": null,
  1372. "dataMode": "params",
  1373. "version": 2,
  1374. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1375. "currentHelper": "normal",
  1376. "helperAttributes": "{}",
  1377. "time": 1531136794774,
  1378. "name": "06_get_basiccar_areaid_carcodeinfo",
  1379. "description": "",
  1380. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1381. "responses": [],
  1382. "timestamp": null,
  1383. "isFromCollection": true,
  1384. "collectionRequestId": "3423dfb4-7352-5906-b3de-c17b5c8b8f68"
  1385. },
  1386. {
  1387. "id": "3540c300-0a3c-7a4b-f0cf-a63d6d745cb6",
  1388. "headers": "Authorization: Rong {{rongtoken}}\n",
  1389. "headerData": [
  1390. {
  1391. "key": "Authorization",
  1392. "value": "Rong {{rongtoken}}",
  1393. "enabled": true,
  1394. "description": ""
  1395. }
  1396. ],
  1397. "url": "{{url}}/api/vipmember/vipmemberinfo/?search=18159801209",
  1398. "folder": "971e459b-531d-9149-561c-f88b91970576",
  1399. "queryParams": [
  1400. {
  1401. "key": "search",
  1402. "value": "18159801209",
  1403. "equals": true,
  1404. "description": "",
  1405. "enabled": true
  1406. }
  1407. ],
  1408. "preRequestScript": null,
  1409. "pathVariables": {},
  1410. "pathVariableData": [],
  1411. "method": "GET",
  1412. "data": null,
  1413. "dataMode": "params",
  1414. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1415. "currentHelper": "normal",
  1416. "helperAttributes": "{}",
  1417. "time": 1531127318186,
  1418. "name": "04_get_vipmember_searchnullnumbe",
  1419. "description": "",
  1420. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1421. "responses": [],
  1422. "timestamp": null,
  1423. "isFromCollection": true,
  1424. "collectionRequestId": "3540c300-0a3c-7a4b-f0cf-a63d6d745cb6"
  1425. },
  1426. {
  1427. "id": "373abaf2-6a85-f561-ba12-aa28b41e61ab",
  1428. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1429. "headerData": [
  1430. {
  1431. "key": "Authorization",
  1432. "value": "Rong {{rongtoken}}",
  1433. "enabled": true,
  1434. "description": ""
  1435. },
  1436. {
  1437. "key": "Content-Type",
  1438. "value": "application/json",
  1439. "enabled": true,
  1440. "description": ""
  1441. }
  1442. ],
  1443. "url": "{{url}}/api/vipmember/storedvaluecard/?vipmember_info__phone_number={{test_phone_number}}&t={{$timestamp}}",
  1444. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  1445. "queryParams": [
  1446. {
  1447. "key": "vipmember_info__phone_number",
  1448. "value": "{{test_phone_number}}",
  1449. "equals": true,
  1450. "description": "",
  1451. "enabled": true
  1452. },
  1453. {
  1454. "key": "t",
  1455. "value": "{{$timestamp}}",
  1456. "equals": true,
  1457. "description": "",
  1458. "enabled": true
  1459. }
  1460. ],
  1461. "preRequestScript": null,
  1462. "pathVariables": {},
  1463. "pathVariableData": [],
  1464. "method": "GET",
  1465. "data": [],
  1466. "dataMode": "raw",
  1467. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n postman.setEnvironmentVariable(\"test_card_id\", jsonData.results[0].id); \npostman.setEnvironmentVariable(\"test_begin_date\", jsonData.results[0].begin_date);\npostman.setEnvironmentVariable(\"test_card_number\", jsonData.results[0].number);\npostman.setEnvironmentVariable(\"test_amount_available\", jsonData.results[0].amount_available);",
  1468. "currentHelper": "normal",
  1469. "helperAttributes": "{}",
  1470. "time": 1531281790565,
  1471. "name": "17_get_vipmember_storedvaluecard",
  1472. "description": "",
  1473. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1474. "responses": [],
  1475. "timestamp": null,
  1476. "rawModeData": "{\r\n\t\"rem\": \"\",\r\n\t\"begin_date\": \"2018-06-29\",\r\n\t\"end_date\": \"2018-07-29\",\r\n\t\"state\": 1,\r\n\t\"number\": \"{{car_code02}}\",\r\n\t\"amount_available\": \"{{amount_package}}\",\r\n\t\"shop\": 2,\r\n\t\"vipmember_info\": {{vipmember_id02}},\r\n\t\"agent\": null,\r\n\t\"car_code\": \"{{car_code}}\",\r\n\t\"phone_number\": \"{{phone_number}}\",\r\n\t\"areashort\": {{areashort02}},\r\n\t\"vip_name\": \"{{vip_name02}}\"\r\n}"
  1477. },
  1478. {
  1479. "id": "37b464fe-e735-be5a-370d-b410eff180a8",
  1480. "headers": "Authorization: Rong {{rongtoken}}\n",
  1481. "headerData": [
  1482. {
  1483. "key": "Authorization",
  1484. "value": "Rong {{rongtoken}}",
  1485. "enabled": true,
  1486. "description": ""
  1487. }
  1488. ],
  1489. "url": "{{url}}/api/basic/brands/",
  1490. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  1491. "queryParams": [],
  1492. "preRequestScript": null,
  1493. "pathVariables": {},
  1494. "pathVariableData": [],
  1495. "method": "GET",
  1496. "data": null,
  1497. "dataMode": "params",
  1498. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n\n\npostman.setEnvironmentVariable(\"test_brands01\", jsonData.results[0].id);",
  1499. "currentHelper": "normal",
  1500. "helperAttributes": "{}",
  1501. "time": 1531999008579,
  1502. "name": "get_basic_brands",
  1503. "description": "",
  1504. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1505. "responses": [],
  1506. "isFromCollection": true,
  1507. "timestamp": null
  1508. },
  1509. {
  1510. "id": "3863046b-97c1-3f4d-912e-8142ff768217",
  1511. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1512. "headerData": [
  1513. {
  1514. "key": "Authorization",
  1515. "value": "Rong {{rongtoken}}",
  1516. "enabled": true,
  1517. "description": ""
  1518. },
  1519. {
  1520. "key": "Content-Type",
  1521. "value": "application/json",
  1522. "enabled": true,
  1523. "description": ""
  1524. }
  1525. ],
  1526. "url": "{{url}}/api/basic/repairfee/",
  1527. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  1528. "queryParams": [],
  1529. "preRequestScript": null,
  1530. "pathVariables": {},
  1531. "pathVariableData": [],
  1532. "method": "POST",
  1533. "data": [],
  1534. "dataMode": "raw",
  1535. "version": 2,
  1536. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  1537. "currentHelper": "normal",
  1538. "helperAttributes": "{}",
  1539. "time": 1532075469445,
  1540. "name": "post_repairfee02",
  1541. "description": "",
  1542. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1543. "responses": [],
  1544. "timestamp": null,
  1545. "rawModeData": "\r\n{\r\n\t\"repair_service\":{{repairservice_id02}},\r\n\t\"category_name\":\"{{test_category_name02}}}\",\r\n\t\"type\": 1,\r\n\t\"carlevel\": null,\r\n\t\"carcategoryArray\": [{{carcategory_id01}}, {{carcategory_id01_id01}}, {{carcategory_id01_id01_id01}}, {{carcategory_id01_id01_id01_id01}}],\r\n\t\"carcategory\": {{carcategory_id01_id01_id01_id01}},\r\n\t\"standard_fee\": \"79\",\r\n\t\"note\": 0,\r\n\t\"status\": true\r\n}"
  1546. },
  1547. {
  1548. "id": "3a8b8aea-2288-6f0e-c5f9-5f1235c36212",
  1549. "headers": "Authorization: Rong {{rongtoken}}\n",
  1550. "headerData": [
  1551. {
  1552. "key": "Authorization",
  1553. "value": "Rong {{rongtoken}}",
  1554. "enabled": true,
  1555. "description": ""
  1556. }
  1557. ],
  1558. "url": "{{url}}/api/business/vipmemberinfobilling/?car_id={{car_id}}",
  1559. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  1560. "queryParams": [
  1561. {
  1562. "key": "car_id",
  1563. "value": "{{car_id}}",
  1564. "equals": true,
  1565. "description": "",
  1566. "enabled": true
  1567. }
  1568. ],
  1569. "preRequestScript": null,
  1570. "pathVariables": {},
  1571. "pathVariableData": [],
  1572. "method": "GET",
  1573. "data": null,
  1574. "dataMode": "params",
  1575. "version": 2,
  1576. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1577. "currentHelper": "normal",
  1578. "helperAttributes": "{}",
  1579. "time": 1530338034758,
  1580. "name": "06_get_business_vipmemberinfobilling",
  1581. "description": "",
  1582. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1583. "responses": [],
  1584. "isFromCollection": true,
  1585. "timestamp": null
  1586. },
  1587. {
  1588. "id": "3ae70b8f-7963-0b9c-eaf2-abfdfbc9d132",
  1589. "headers": "Authorization: Rong {{rongtoken}}\n",
  1590. "headerData": [
  1591. {
  1592. "key": "Authorization",
  1593. "value": "Rong {{rongtoken}}",
  1594. "enabled": true,
  1595. "description": ""
  1596. }
  1597. ],
  1598. "url": "{{url}}/api/basic/repairpartsitem/",
  1599. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  1600. "queryParams": [],
  1601. "preRequestScript": null,
  1602. "pathVariables": {},
  1603. "pathVariableData": [],
  1604. "method": "GET",
  1605. "data": null,
  1606. "dataMode": "params",
  1607. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  1608. "currentHelper": "normal",
  1609. "helperAttributes": "{}",
  1610. "time": 1531115480206,
  1611. "name": "get_basic_repairpartsitem",
  1612. "description": "",
  1613. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1614. "responses": [],
  1615. "timestamp": null
  1616. },
  1617. {
  1618. "id": "3fe45ba5-4d0f-2a3f-a128-21188a539dfb",
  1619. "headers": "Authorization: Rong {{rongtoken}}\n",
  1620. "headerData": [
  1621. {
  1622. "key": "Authorization",
  1623. "value": "Rong {{rongtoken}}",
  1624. "enabled": true,
  1625. "description": ""
  1626. }
  1627. ],
  1628. "url": "{{url}}/api/basic/vipmemberinteresttemplate/",
  1629. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  1630. "queryParams": [],
  1631. "preRequestScript": null,
  1632. "pathVariables": {},
  1633. "pathVariableData": [],
  1634. "method": "GET",
  1635. "data": null,
  1636. "dataMode": "params",
  1637. "version": 2,
  1638. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nif(tests[\"Status code is 200\"]){\n \n var jsonData = JSON.parse(responseBody);\n postman.setEnvironmentVariable(\"interest_id1\", jsonData[0].id);\n postman.setEnvironmentVariable(\"interest_id2\", jsonData[1].id);\n \n}\n",
  1639. "currentHelper": "normal",
  1640. "helperAttributes": "{}",
  1641. "time": 1530697695288,
  1642. "name": "26_get_basic_vipmemberinteresttemplate",
  1643. "description": "",
  1644. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1645. "responses": [],
  1646. "timestamp": null,
  1647. "isFromCollection": true
  1648. },
  1649. {
  1650. "id": "44c51591-c575-d365-2d92-3fd428950b62",
  1651. "headers": "Authorization: Rong {{rongtoken}}\n",
  1652. "headerData": [
  1653. {
  1654. "key": "Authorization",
  1655. "value": "Rong {{rongtoken}}",
  1656. "enabled": true,
  1657. "description": ""
  1658. }
  1659. ],
  1660. "url": "{{url}}/api/basic/selectbrands/",
  1661. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  1662. "queryParams": [],
  1663. "preRequestScript": null,
  1664. "pathVariables": {},
  1665. "pathVariableData": [],
  1666. "method": "GET",
  1667. "data": null,
  1668. "dataMode": "params",
  1669. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n\n\n// postman.setEnvironmentVariable(\"test_brands01\", jsonData.results[0].id);",
  1670. "currentHelper": "normal",
  1671. "helperAttributes": "{}",
  1672. "time": 1532000569395,
  1673. "name": "get_basic_selectbrands",
  1674. "description": "",
  1675. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1676. "responses": [],
  1677. "isFromCollection": true,
  1678. "timestamp": null
  1679. },
  1680. {
  1681. "id": "45270a01-282f-b908-6555-3d7bd7bfe9d5",
  1682. "headers": "Authorization: Rong {{rongtoken}}\n",
  1683. "headerData": [
  1684. {
  1685. "key": "Authorization",
  1686. "value": "Rong {{rongtoken}}",
  1687. "enabled": true,
  1688. "description": ""
  1689. }
  1690. ],
  1691. "url": "{{url}}/api/basic/employee/",
  1692. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  1693. "queryParams": [],
  1694. "preRequestScript": null,
  1695. "pathVariables": {},
  1696. "pathVariableData": [],
  1697. "method": "GET",
  1698. "data": null,
  1699. "dataMode": "params",
  1700. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_userid01\", jsonData.results[0].user);\npostman.setEnvironmentVariable(\"test_userid02\", jsonData.results[1].user);\npostman.setEnvironmentVariable(\"test_userid03\", jsonData.results[2].user);\n\npostman.setEnvironmentVariable(\"test_user_name01\", jsonData.results[0].name);\npostman.setEnvironmentVariable(\"test_user_name02\", jsonData.results[1].name);\npostman.setEnvironmentVariable(\"test_user_name03\", jsonData.results[2].name);\n\npostman.setEnvironmentVariable(\"test_user_cellphone01\", jsonData.results[0].cellphone);\npostman.setEnvironmentVariable(\"test_user_cellphnoe02\", jsonData.results[1].cellphone);\npostman.setEnvironmentVariable(\"test_user_cellphone03\", jsonData.results[2].cellphone);\n\n\n//postman.setEnvironmentVariable(\"test_userid01\", jsonData.results[3].user);\n//postman.setEnvironmentVariable(\"test_userid02\", jsonData.results[4].user);",
  1701. "currentHelper": "normal",
  1702. "helperAttributes": "{}",
  1703. "time": 1531992404353,
  1704. "name": "01_get_basic_emloyee",
  1705. "description": "",
  1706. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1707. "responses": [],
  1708. "isFromCollection": true,
  1709. "timestamp": null
  1710. },
  1711. {
  1712. "id": "456b3d68-9dcd-b903-2413-b4bc99ed1004",
  1713. "headers": "Authorization: Rong {{rongtoken}}\n",
  1714. "headerData": [
  1715. {
  1716. "key": "Authorization",
  1717. "value": "Rong {{rongtoken}}",
  1718. "enabled": true,
  1719. "description": ""
  1720. }
  1721. ],
  1722. "url": "{{url}}/api/vipmember/storedvaluecard/{{card_id}}/?begin_date=2018-06-06",
  1723. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  1724. "queryParams": [
  1725. {
  1726. "key": "begin_date",
  1727. "value": "2018-06-06",
  1728. "equals": true,
  1729. "description": "",
  1730. "enabled": true
  1731. }
  1732. ],
  1733. "preRequestScript": null,
  1734. "pathVariables": {},
  1735. "pathVariableData": [],
  1736. "method": "GET",
  1737. "data": null,
  1738. "dataMode": "params",
  1739. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  1740. "currentHelper": "normal",
  1741. "helperAttributes": "{}",
  1742. "time": 1531195036227,
  1743. "name": "03_get_vipmember_storedvaluecardid_info",
  1744. "description": "",
  1745. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1746. "responses": [],
  1747. "timestamp": null
  1748. },
  1749. {
  1750. "id": "46122989-bbe1-3073-8fec-e309f9e4fdf6",
  1751. "headers": "Authorization: Rong {{rongtoken}}\n",
  1752. "headerData": [
  1753. {
  1754. "key": "Authorization",
  1755. "value": "Rong {{rongtoken}}",
  1756. "enabled": true,
  1757. "description": ""
  1758. }
  1759. ],
  1760. "url": "{{url}}/api/vipmember/vipmemberrecharge/?car_code={{test_car_code}}&areashort_id={{test_areashort}}&t={{$timestamp}}",
  1761. "folder": "53139a4f-0098-fcf8-5fa2-d0ec627db9af",
  1762. "queryParams": [
  1763. {
  1764. "key": "car_code",
  1765. "value": "{{test_car_code}}",
  1766. "equals": true,
  1767. "description": "",
  1768. "enabled": true
  1769. },
  1770. {
  1771. "key": "areashort_id",
  1772. "value": "{{test_areashort}}",
  1773. "equals": true,
  1774. "description": "",
  1775. "enabled": true
  1776. },
  1777. {
  1778. "key": "t",
  1779. "value": "{{$timestamp}}",
  1780. "equals": true,
  1781. "description": "",
  1782. "enabled": true
  1783. }
  1784. ],
  1785. "preRequestScript": null,
  1786. "pathVariables": {},
  1787. "pathVariableData": [],
  1788. "method": "GET",
  1789. "data": null,
  1790. "dataMode": "params",
  1791. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  1792. "currentHelper": "normal",
  1793. "helperAttributes": "{}",
  1794. "time": 1531288624721,
  1795. "name": "02_get_vipmember_recordcarcode",
  1796. "description": "",
  1797. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1798. "responses": [],
  1799. "timestamp": null
  1800. },
  1801. {
  1802. "id": "47f6469a-4bac-fba7-e97f-e28ea96b77f7",
  1803. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1804. "headerData": [
  1805. {
  1806. "key": "Authorization",
  1807. "value": "Rong {{rongtoken}}",
  1808. "enabled": true,
  1809. "description": ""
  1810. },
  1811. {
  1812. "key": "Content-Type",
  1813. "value": "application/json",
  1814. "enabled": true,
  1815. "description": ""
  1816. }
  1817. ],
  1818. "url": "{{url}}/api/basic/repairfee/",
  1819. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  1820. "queryParams": [],
  1821. "preRequestScript": null,
  1822. "pathVariables": {},
  1823. "pathVariableData": [],
  1824. "method": "POST",
  1825. "data": [],
  1826. "dataMode": "raw",
  1827. "version": 2,
  1828. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  1829. "currentHelper": "normal",
  1830. "helperAttributes": "{}",
  1831. "time": 1532071259492,
  1832. "name": "post_repairfee01",
  1833. "description": "",
  1834. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1835. "responses": [],
  1836. "timestamp": null,
  1837. "isFromCollection": true,
  1838. "rawModeData": "{\r\n\t\"repair_service\": {{repairservice_id01}},\r\n\t\"category_name\": \"{{test_category_name01}}}\",\r\n\t\"type\": 0,\r\n\t\"carlevel\": {{carlevel_id01}},\r\n\t\"carcategoryArray\": [],\r\n\t\"standard_fee\": \"68\",\r\n\t\"note\": 0,\r\n\t\"status\": true\r\n}"
  1839. },
  1840. {
  1841. "id": "4a4b83f1-d6b2-2acd-a7d0-c61813c3b1b9",
  1842. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  1843. "headerData": [
  1844. {
  1845. "key": "Content-Type",
  1846. "value": "application/json",
  1847. "enabled": true,
  1848. "description": ""
  1849. },
  1850. {
  1851. "key": "Authorization",
  1852. "value": "Rong {{rongtoken}}",
  1853. "enabled": true,
  1854. "description": ""
  1855. }
  1856. ],
  1857. "url": "{{url}}/api/basic/employee/",
  1858. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  1859. "queryParams": [],
  1860. "preRequestScript": null,
  1861. "pathVariables": {},
  1862. "pathVariableData": [],
  1863. "method": "POST",
  1864. "data": [],
  1865. "dataMode": "raw",
  1866. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\nvar jsonData = JSON.parse(responseBody);\n\n//postman.setEnvironmentVariable(\"test_userid02\", jsonData.user);\n",
  1867. "currentHelper": "normal",
  1868. "helperAttributes": "{}",
  1869. "time": 1531992398492,
  1870. "name": "04_post_employee 03",
  1871. "description": null,
  1872. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1873. "responses": [],
  1874. "timestamp": null,
  1875. "isFromCollection": true,
  1876. "rawModeData": "{\r\n\t\"cellphone\": \"17700004444\",\r\n\t\"code\": \"17700004444\",\r\n\t\"degree\": \"维修师\",\r\n\t\"dept\": \"{{test_department_id}}\",\r\n\t\"description\": null,\r\n\t\"dimission_date\": null,\r\n\t\"email\": \"17700004444@qq.com\",\r\n\t\"id_card\": \"398987199912390799\",\r\n\t\"is_staff\": \"True\", \r\n\t\"shop\": {{test_shopid}}, \r\n\t\"status\": \"draft\",\r\n\t\"user_name\": \"韩三\"\r\n}"
  1877. },
  1878. {
  1879. "id": "4abce7f1-47d4-692a-43b2-9f8fee4e60d6",
  1880. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  1881. "headerData": [
  1882. {
  1883. "key": "Content-Type",
  1884. "value": "application/json",
  1885. "enabled": true,
  1886. "description": ""
  1887. },
  1888. {
  1889. "key": "Authorization",
  1890. "value": "Rong {{rongtoken}}",
  1891. "enabled": true,
  1892. "description": ""
  1893. }
  1894. ],
  1895. "url": "{{url}}/api/vipmember/vipmemberinterest/",
  1896. "folder": "971e459b-531d-9149-561c-f88b91970576",
  1897. "queryParams": [],
  1898. "preRequestScript": null,
  1899. "pathVariables": {},
  1900. "pathVariableData": [],
  1901. "method": "POST",
  1902. "data": [],
  1903. "dataMode": "raw",
  1904. "version": 2,
  1905. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  1906. "currentHelper": "normal",
  1907. "helperAttributes": "{}",
  1908. "time": 1531139240263,
  1909. "name": "10_post_vipmember_vipmemberinterest",
  1910. "description": "",
  1911. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1912. "responses": [],
  1913. "isFromCollection": true,
  1914. "timestamp": null,
  1915. "collectionRequestId": "4abce7f1-47d4-692a-43b2-9f8fee4e60d6",
  1916. "rawModeData": "{\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"interest_template\": \r\n\t\"{{test_interest}}\"\r\n \r\n} "
  1917. },
  1918. {
  1919. "id": "4b190d97-6fa7-4d5f-0657-c06b1c838185",
  1920. "headers": "Authorization: Rong {{rongtoken}}\n",
  1921. "headerData": [
  1922. {
  1923. "key": "Authorization",
  1924. "value": "Rong {{rongtoken}}",
  1925. "enabled": true,
  1926. "description": ""
  1927. }
  1928. ],
  1929. "url": "{{url}}/api/basic/carlevel/",
  1930. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  1931. "queryParams": [],
  1932. "preRequestScript": null,
  1933. "pathVariables": {},
  1934. "pathVariableData": [],
  1935. "method": "GET",
  1936. "data": null,
  1937. "dataMode": "params",
  1938. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\n\nvar jsonData = JSON.parse(responseBody);\n\n\npostman.setEnvironmentVariable(\"carlevel_id01\", jsonData[0].id);",
  1939. "currentHelper": "normal",
  1940. "helperAttributes": "{}",
  1941. "time": 1532070698059,
  1942. "name": "get_basic_carlevel",
  1943. "description": "",
  1944. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1945. "responses": [],
  1946. "isFromCollection": true,
  1947. "timestamp": null
  1948. },
  1949. {
  1950. "id": "4b943c5c-2c1c-05b2-5381-738f00e36df7",
  1951. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1952. "headerData": [
  1953. {
  1954. "key": "Authorization",
  1955. "value": "Rong {{rongtoken}}",
  1956. "enabled": true,
  1957. "description": ""
  1958. },
  1959. {
  1960. "key": "Content-Type",
  1961. "value": "application/json",
  1962. "enabled": true,
  1963. "description": ""
  1964. }
  1965. ],
  1966. "url": "{{url}}/api/basic/repairparts/",
  1967. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  1968. "queryParams": [],
  1969. "preRequestScript": null,
  1970. "pathVariables": {},
  1971. "pathVariableData": [],
  1972. "method": "POST",
  1973. "data": [],
  1974. "dataMode": "raw",
  1975. "version": 2,
  1976. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\n\n// \"code_number\": \"111\",",
  1977. "currentHelper": "normal",
  1978. "helperAttributes": "{}",
  1979. "time": 1532077884222,
  1980. "name": "post_repairparts",
  1981. "description": null,
  1982. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  1983. "responses": [],
  1984. "isFromCollection": true,
  1985. "collectionRequestId": "4b943c5c-2c1c-05b2-5381-738f00e36df7",
  1986. "timestamp": null,
  1987. "rawModeData": "{\r\n \"carcategoryArray\": [{{carcategory_id01}}, {{carcategory_id01_id01}}, {{carcategory_id01_id01_id01}}, {{carcategory_id01_id01_id01_id01}}],\r\n \"carcategory\": {{carcategory_id01_id01_id01_id01}},\r\n \"repair_service\": {{repairservice_id02}},\r\n \"note\": null,\r\n \"status\": true,\r\n \"category_name\": \"{{test_category_name02}}}\",\r\n \"repairpartsitem\": [{\r\n \"id\": {{carproduct_id01}},\r\n \"category_name\": \"{{category_name01}}\",\r\n \"name\": \"{{name01}}\",\r\n \"specification\": \"{{specification01}}\",\r\n \"code\": \"{{code01}}\",\r\n \"unit\":{{unit01}},\r\n \"unit_cost\": \"{{unit_cost01}}\",\r\n \"price\": \"{{price01}}\",\r\n \"note\": null,\r\n \"shop\": {{shop01}},\r\n \"brands\": {{brands01}},\r\n \"category\": {{category01}},\r\n \"storehouse\": {{storehouse01}},\r\n \"supplier\": {{supplier01}},\r\n \"amount\": 2\r\n }, {\r\n \"id\": {{carproduct_id02}},\r\n \"category_name\": \"{{category_name02}}\",\r\n \"name\": \"{{name02}}\",\r\n \"specification\": \"{{specification02}}\",\r\n \"code\": \"{{code02}}\",\r\n \"unit\":{{unit02}},\r\n \"unit_cost\": \"{{unit_cost02}}\",\r\n \"price\": \"{{price02}}\",\r\n \"note\": null,\r\n \"shop\": {{shop02}},\r\n \"brands\": {{brands02}},\r\n \"category\": {{category02}},\r\n \"storehouse\": {{storehouse02}},\r\n \"supplier\": {{supplier02}},\r\n \"amount\": 1\r\n }]\r\n}"
  1988. },
  1989. {
  1990. "id": "5134774d-dba6-db54-4968-05a8cbcb022e",
  1991. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  1992. "headerData": [
  1993. {
  1994. "key": "Authorization",
  1995. "value": "Rong {{rongtoken}}",
  1996. "enabled": true,
  1997. "description": ""
  1998. },
  1999. {
  2000. "key": "Content-Type",
  2001. "value": "application/json",
  2002. "enabled": true,
  2003. "description": ""
  2004. }
  2005. ],
  2006. "url": "{{url}}/api/basic/department/",
  2007. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  2008. "queryParams": [],
  2009. "preRequestScript": null,
  2010. "pathVariables": {},
  2011. "pathVariableData": [],
  2012. "method": "GET",
  2013. "data": [],
  2014. "dataMode": "raw",
  2015. "tests": "\n\ntests[\"Status code is 200\"] = responseCode.code === 200;\n var jsonData = JSON.parse(responseBody);\npostman.setEnvironmentVariable(\"test_department_id01\", jsonData.results[1].id);\npostman.setEnvironmentVariable(\"test_department_name01\", jsonData.results[1].name);\npostman.setEnvironmentVariable(\"test_department_id02\", jsonData.results[2].id);\npostman.setEnvironmentVariable(\"test_department_name02\", jsonData.results[2].name);\npostman.setEnvironmentVariable(\"test_department_headid\", jsonData.results[0].id);\n\n",
  2016. "currentHelper": "normal",
  2017. "helperAttributes": "{}",
  2018. "time": 1531989860289,
  2019. "name": "01_get_basic_department",
  2020. "description": "",
  2021. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2022. "responses": [],
  2023. "isFromCollection": true,
  2024. "timestamp": null,
  2025. "rawModeData": "{\r\n\"description\":\"\",\r\n\"head\":\"\",\r\n\"name\":\"维修部二部\",\r\n\"status\":\"draft\"\r\n\t\r\n}"
  2026. },
  2027. {
  2028. "id": "578e47bb-3629-7c01-9300-57461ca063db",
  2029. "headers": "Authorization: Rong {{rongtoken}}\n",
  2030. "headerData": [
  2031. {
  2032. "key": "Authorization",
  2033. "value": "Rong {{rongtoken}}",
  2034. "enabled": true,
  2035. "description": ""
  2036. }
  2037. ],
  2038. "url": "{{url}}/api/vipmember/storedvaluecard/?begin_date=2018-06-06",
  2039. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2040. "queryParams": [
  2041. {
  2042. "key": "access_token",
  2043. "value": "{{access_token}}",
  2044. "equals": true,
  2045. "description": "",
  2046. "enabled": false
  2047. },
  2048. {
  2049. "key": "begin_date",
  2050. "value": "2018-06-06",
  2051. "equals": true,
  2052. "description": "",
  2053. "enabled": true
  2054. }
  2055. ],
  2056. "preRequestScript": null,
  2057. "pathVariables": {},
  2058. "pathVariableData": [],
  2059. "method": "GET",
  2060. "data": null,
  2061. "dataMode": "params",
  2062. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"card_id\", jsonData.results[0].id);\n}",
  2063. "currentHelper": "normal",
  2064. "helperAttributes": "{}",
  2065. "time": 1530321991226,
  2066. "name": "19_get_vipmember_storedvaluecardid_begindate",
  2067. "description": "",
  2068. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2069. "responses": [],
  2070. "isFromCollection": true,
  2071. "timestamp": null
  2072. },
  2073. {
  2074. "id": "57fa0011-0748-4cd6-d39f-0c7d2bfc62e7",
  2075. "headers": "Authorization: Rong {{rongtoken}}\n",
  2076. "headerData": [
  2077. {
  2078. "key": "Authorization",
  2079. "value": "Rong {{rongtoken}}",
  2080. "enabled": true,
  2081. "description": ""
  2082. }
  2083. ],
  2084. "url": "{{url}}/api/vipmember/storedvaluecard/",
  2085. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2086. "queryParams": [
  2087. {
  2088. "key": "access_token",
  2089. "value": "{{access_token}}",
  2090. "equals": true,
  2091. "description": "",
  2092. "enabled": false
  2093. }
  2094. ],
  2095. "preRequestScript": null,
  2096. "pathVariables": {},
  2097. "pathVariableData": [],
  2098. "method": "GET",
  2099. "data": null,
  2100. "dataMode": "params",
  2101. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"valuecard_id\", jsonData.results[1].id);\n}",
  2102. "currentHelper": "normal",
  2103. "helperAttributes": "{}",
  2104. "time": 1531140945194,
  2105. "name": "01_get_vipmember_storedvaluecard",
  2106. "description": "",
  2107. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2108. "responses": [],
  2109. "timestamp": null,
  2110. "isFromCollection": true
  2111. },
  2112. {
  2113. "id": "581e23b5-02f8-56a5-0110-98eb1e0e855f",
  2114. "headers": "Authorization: Rong {{rongtoken}}\n",
  2115. "headerData": [
  2116. {
  2117. "key": "Authorization",
  2118. "value": "Rong {{rongtoken}}",
  2119. "enabled": true,
  2120. "description": ""
  2121. }
  2122. ],
  2123. "url": "{{url}}/api/vipmember/vipmemberinfo/?search={{test_phone_number}}&t={{$timestamp}}",
  2124. "folder": "971e459b-531d-9149-561c-f88b91970576",
  2125. "queryParams": [
  2126. {
  2127. "key": "search",
  2128. "value": "{{test_phone_number}}",
  2129. "equals": true,
  2130. "description": "",
  2131. "enabled": true
  2132. },
  2133. {
  2134. "key": "t",
  2135. "value": "{{$timestamp}}",
  2136. "equals": true,
  2137. "description": "",
  2138. "enabled": true
  2139. }
  2140. ],
  2141. "preRequestScript": null,
  2142. "pathVariables": {},
  2143. "pathVariableData": [],
  2144. "method": "GET",
  2145. "data": [],
  2146. "dataMode": "raw",
  2147. "version": 2,
  2148. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_grade\", jsonData.results[0].grade);",
  2149. "currentHelper": "normal",
  2150. "helperAttributes": "{}",
  2151. "time": 1530670024739,
  2152. "name": "12_get_vipmember_vipmemberinfoid",
  2153. "description": "",
  2154. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2155. "responses": [],
  2156. "timestamp": null,
  2157. "isFromCollection": true,
  2158. "collectionRequestId": "581e23b5-02f8-56a5-0110-98eb1e0e855f",
  2159. "rawModeData": "{\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"interest_template\": \r\n\t\"{{test_interest}}\"\r\n \r\n} "
  2160. },
  2161. {
  2162. "id": "58b458dd-bf4a-13a9-bfb8-6a02d629d806",
  2163. "headers": "Authorization: Rong {{rongtoken}}\n",
  2164. "headerData": [
  2165. {
  2166. "key": "Authorization",
  2167. "value": "Rong {{rongtoken}}",
  2168. "enabled": true,
  2169. "description": ""
  2170. }
  2171. ],
  2172. "url": "{{url}}/api/basic/beautyservices/",
  2173. "folder": "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  2174. "queryParams": [],
  2175. "preRequestScript": null,
  2176. "pathVariables": {},
  2177. "pathVariableData": [],
  2178. "method": "GET",
  2179. "data": null,
  2180. "dataMode": "params",
  2181. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_service_id01\", jsonData.results[0].id);\npostman.setEnvironmentVariable(\"test_service_id02\", jsonData.results[1].id);\npostman.setEnvironmentVariable(\"test_service_id03\", jsonData.results[2].id);\n\n//postman.setEnvironmentVariable(\"test_service_id02\", jsonData.results[1].id);\n//postman.setEnvironmentVariable(\"test_service_id03\", jsonData.results[2].id);\n\npostman.setEnvironmentVariable(\"test_price01\", jsonData.results[0].price);\npostman.setEnvironmentVariable(\"test_price02\", jsonData.results[1].price);\npostman.setEnvironmentVariable(\"test_price03\", jsonData.results[2].price);\npostman.setEnvironmentVariable(\"test_name01\", jsonData.results[0].name);\npostman.setEnvironmentVariable(\"test_name02\", jsonData.results[1].name);\npostman.setEnvironmentVariable(\"test_name03\", jsonData.results[2].name);",
  2182. "currentHelper": "normal",
  2183. "helperAttributes": "{}",
  2184. "time": 1532054225880,
  2185. "name": "get_basic_beautyservices",
  2186. "description": "",
  2187. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2188. "responses": [],
  2189. "isFromCollection": true,
  2190. "timestamp": null
  2191. },
  2192. {
  2193. "id": "5b63f82d-5e38-521e-7e74-1e5107398eee",
  2194. "headers": "Authorization: Rong {{rongtoken}}\n",
  2195. "headerData": [
  2196. {
  2197. "key": "Authorization",
  2198. "value": "Rong {{rongtoken}}",
  2199. "enabled": true,
  2200. "description": ""
  2201. }
  2202. ],
  2203. "url": "{{url}}/api/vipmember/vipmemberproductsprice/",
  2204. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2205. "queryParams": [
  2206. {
  2207. "key": "t",
  2208. "value": "{{$timestamp}}",
  2209. "equals": true,
  2210. "description": "",
  2211. "enabled": false
  2212. },
  2213. {
  2214. "key": "bill_date",
  2215. "value": "2018-06-20",
  2216. "equals": true,
  2217. "description": "",
  2218. "enabled": false
  2219. },
  2220. {
  2221. "key": "vipmember_info__phone_number",
  2222. "value": "18159801660",
  2223. "equals": true,
  2224. "description": "",
  2225. "enabled": false
  2226. }
  2227. ],
  2228. "preRequestScript": null,
  2229. "pathVariables": {},
  2230. "pathVariableData": [],
  2231. "method": "GET",
  2232. "data": null,
  2233. "dataMode": "params",
  2234. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2235. "currentHelper": "normal",
  2236. "helperAttributes": "{}",
  2237. "time": 1531276152823,
  2238. "name": "12_get_vipmember_vipmemberproductsprice",
  2239. "description": "",
  2240. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2241. "responses": [],
  2242. "timestamp": null
  2243. },
  2244. {
  2245. "id": "5d325be1-38ea-c8a8-2a19-be0be31f8508",
  2246. "headers": "Authorization: Rong {{rongtoken}}\n",
  2247. "headerData": [
  2248. {
  2249. "key": "Authorization",
  2250. "value": "Rong {{rongtoken}}",
  2251. "enabled": true,
  2252. "description": ""
  2253. }
  2254. ],
  2255. "url": "{{url}}/api/vipmember/vipmemberscoretype/",
  2256. "queryParams": [
  2257. {
  2258. "key": "t",
  2259. "value": "{{$timestamp}}",
  2260. "equals": true,
  2261. "description": "",
  2262. "enabled": false
  2263. },
  2264. {
  2265. "key": "bill_date",
  2266. "value": "2018-06-20",
  2267. "equals": true,
  2268. "description": "",
  2269. "enabled": false
  2270. },
  2271. {
  2272. "key": "vipmember_info__phone_number",
  2273. "value": "18159801660",
  2274. "equals": true,
  2275. "description": "",
  2276. "enabled": false
  2277. }
  2278. ],
  2279. "preRequestScript": null,
  2280. "pathVariables": {},
  2281. "pathVariableData": [],
  2282. "method": "GET",
  2283. "data": null,
  2284. "dataMode": "params",
  2285. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2286. "currentHelper": "normal",
  2287. "helperAttributes": "{}",
  2288. "time": 1530085044217,
  2289. "name": "06_get_vipmember_vipmemberscoretype",
  2290. "description": "",
  2291. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2292. "responses": [],
  2293. "timestamp": null,
  2294. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2295. "isFromCollection": true
  2296. },
  2297. {
  2298. "id": "5d8803d5-77f4-1a3a-3116-6091e7082f5a",
  2299. "headers": "Authorization: Rong {{rongtoken}}\n",
  2300. "headerData": [
  2301. {
  2302. "key": "Authorization",
  2303. "value": "Rong {{rongtoken}}",
  2304. "enabled": true,
  2305. "description": ""
  2306. }
  2307. ],
  2308. "url": "{{url}}/api/basic/repairparts/",
  2309. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  2310. "queryParams": [],
  2311. "preRequestScript": null,
  2312. "pathVariables": {},
  2313. "pathVariableData": [],
  2314. "method": "GET",
  2315. "data": null,
  2316. "dataMode": "params",
  2317. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  2318. "currentHelper": "normal",
  2319. "helperAttributes": "{}",
  2320. "time": 1532074349910,
  2321. "name": "get_basic_repairparts",
  2322. "description": "",
  2323. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2324. "responses": [],
  2325. "timestamp": null
  2326. },
  2327. {
  2328. "id": "5de1acd5-9af5-0fd5-c763-23b2381985fc",
  2329. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  2330. "headerData": [
  2331. {
  2332. "key": "Content-Type",
  2333. "value": "application/json",
  2334. "enabled": true,
  2335. "description": ""
  2336. },
  2337. {
  2338. "key": "Authorization",
  2339. "value": "Rong {{rongtoken}}",
  2340. "enabled": true,
  2341. "description": ""
  2342. }
  2343. ],
  2344. "url": "{{url}}/api/basic/account/",
  2345. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  2346. "queryParams": [],
  2347. "preRequestScript": null,
  2348. "pathVariables": {},
  2349. "pathVariableData": [],
  2350. "method": "POST",
  2351. "data": [],
  2352. "dataMode": "raw",
  2353. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\n\nvar jsonData = JSON.parse(responseBody);\n\n//postman.setEnvironmentVariable(\"test_userid02\", jsonData.user);\n",
  2354. "currentHelper": "normal",
  2355. "helperAttributes": "{}",
  2356. "time": 1531991953561,
  2357. "name": "05_post_account",
  2358. "description": "",
  2359. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2360. "responses": [],
  2361. "isFromCollection": true,
  2362. "timestamp": null,
  2363. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"比特币\",\r\n\t\"account\": \"6217957888854678\",\r\n\t\"parent\": 1,\r\n\t\"stop_date\": \"2019-07-19\",\r\n\t\"description\": null\r\n}"
  2364. },
  2365. {
  2366. "id": "5f682df6-fc48-20e2-6e92-b7a508ea0fb6",
  2367. "headers": "Authorization: Rong {{rongtoken}}\n",
  2368. "headerData": [
  2369. {
  2370. "key": "Authorization",
  2371. "value": "Rong {{rongtoken}}",
  2372. "enabled": true,
  2373. "description": ""
  2374. }
  2375. ],
  2376. "url": "{{url}}/api/vipmember/vipmemberserviceprice/",
  2377. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2378. "queryParams": [
  2379. {
  2380. "key": "t",
  2381. "value": "{{$timestamp}}",
  2382. "equals": true,
  2383. "description": "",
  2384. "enabled": false
  2385. },
  2386. {
  2387. "key": "bill_date",
  2388. "value": "2018-06-20",
  2389. "equals": true,
  2390. "description": "",
  2391. "enabled": false
  2392. },
  2393. {
  2394. "key": "vipmember_info__phone_number",
  2395. "value": "18159801660",
  2396. "equals": true,
  2397. "description": "",
  2398. "enabled": false
  2399. }
  2400. ],
  2401. "preRequestScript": null,
  2402. "pathVariables": {},
  2403. "pathVariableData": [],
  2404. "method": "GET",
  2405. "data": null,
  2406. "dataMode": "params",
  2407. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2408. "currentHelper": "normal",
  2409. "helperAttributes": "{}",
  2410. "time": 1531206916066,
  2411. "name": "10_get_vipmember_vipmemberserviceprice",
  2412. "description": "",
  2413. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2414. "responses": [],
  2415. "timestamp": null
  2416. },
  2417. {
  2418. "id": "647f0dee-ee27-d3fa-2e5a-4a2d54ee577d",
  2419. "headers": "Authorization: Rong {{rongtoken}}\n",
  2420. "headerData": [
  2421. {
  2422. "key": "Authorization",
  2423. "value": "Rong {{rongtoken}}",
  2424. "enabled": true,
  2425. "description": ""
  2426. }
  2427. ],
  2428. "url": "{{url}}/api/basic/repairfee/",
  2429. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  2430. "queryParams": [],
  2431. "preRequestScript": null,
  2432. "pathVariables": {},
  2433. "pathVariableData": [],
  2434. "method": "GET",
  2435. "data": null,
  2436. "dataMode": "params",
  2437. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\n// var jsonData = JSON.parse(responseBody);\n// postman.setEnvironmentVariable(\"variable_key\", jsonData.);",
  2438. "currentHelper": "normal",
  2439. "helperAttributes": "{}",
  2440. "time": 1532073314725,
  2441. "name": "get_basic_repairfee",
  2442. "description": "",
  2443. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2444. "responses": [],
  2445. "timestamp": null
  2446. },
  2447. {
  2448. "id": "64bf4e20-02db-d0e4-79f4-c99a806b0f05",
  2449. "headers": "Authorization: Rong {{rongtoken}}\n",
  2450. "headerData": [
  2451. {
  2452. "key": "Authorization",
  2453. "value": "Rong {{rongtoken}}",
  2454. "enabled": true,
  2455. "description": ""
  2456. }
  2457. ],
  2458. "url": "{{url}}/api/basic/car/?t={{$timestamp}}",
  2459. "folder": "971e459b-531d-9149-561c-f88b91970576",
  2460. "queryParams": [
  2461. {
  2462. "key": "t",
  2463. "value": "{{$timestamp}}",
  2464. "equals": true,
  2465. "description": "",
  2466. "enabled": true
  2467. }
  2468. ],
  2469. "preRequestScript": null,
  2470. "pathVariables": {},
  2471. "pathVariableData": [],
  2472. "method": "GET",
  2473. "data": null,
  2474. "dataMode": "params",
  2475. "version": 2,
  2476. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n postman.setEnvironmentVariable(\"area_id\", jsonData.results[0].areashort);\n postman.setEnvironmentVariable(\"car_code\", jsonData.results[0].code);\n}",
  2477. "currentHelper": "normal",
  2478. "helperAttributes": "{}",
  2479. "time": 1531128363402,
  2480. "name": "05_get_basiccar_areaid",
  2481. "description": "",
  2482. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2483. "responses": [],
  2484. "timestamp": null,
  2485. "isFromCollection": true,
  2486. "collectionRequestId": "64bf4e20-02db-d0e4-79f4-c99a806b0f05"
  2487. },
  2488. {
  2489. "id": "6558cd92-cade-e9a1-c4e7-8befc90913e8",
  2490. "headers": "Authorization: Rong {{rongtoken}}\n",
  2491. "headerData": [
  2492. {
  2493. "key": "Authorization",
  2494. "value": "Rong {{rongtoken}}",
  2495. "enabled": true,
  2496. "description": ""
  2497. }
  2498. ],
  2499. "url": "{{url}}/api/business/vipmemberinfobilling/?car_id={{test_car_id}}&t={{$timestamp}}",
  2500. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  2501. "queryParams": [
  2502. {
  2503. "key": "car_id",
  2504. "value": "{{test_car_id}}",
  2505. "equals": true,
  2506. "description": "",
  2507. "enabled": true
  2508. },
  2509. {
  2510. "key": "t",
  2511. "value": "{{$timestamp}}",
  2512. "equals": true,
  2513. "description": "",
  2514. "enabled": true
  2515. }
  2516. ],
  2517. "preRequestScript": null,
  2518. "pathVariables": {},
  2519. "pathVariableData": [],
  2520. "method": "GET",
  2521. "data": [],
  2522. "dataMode": "raw",
  2523. "version": 2,
  2524. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  2525. "currentHelper": "normal",
  2526. "helperAttributes": "{}",
  2527. "time": 1530617897787,
  2528. "name": "14_get_business_vipmemberinfobilling",
  2529. "description": "",
  2530. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2531. "responses": [],
  2532. "isFromCollection": true,
  2533. "timestamp": null,
  2534. "rawModeData": ""
  2535. },
  2536. {
  2537. "id": "660b5319-b041-f20b-bd05-4d7cf7d42c35",
  2538. "headers": "Authorization: Rong {{rongtoken}}\n",
  2539. "headerData": [
  2540. {
  2541. "key": "Authorization",
  2542. "value": "Rong {{rongtoken}}",
  2543. "enabled": true,
  2544. "description": ""
  2545. }
  2546. ],
  2547. "url": "{{url}}/api/vipmember/vipmemberconsumption/",
  2548. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2549. "queryParams": [
  2550. {
  2551. "key": "t",
  2552. "value": "{{$timestamp}}",
  2553. "equals": true,
  2554. "description": "",
  2555. "enabled": false
  2556. },
  2557. {
  2558. "key": "bill_date",
  2559. "value": "2018-06-20",
  2560. "equals": true,
  2561. "description": "",
  2562. "enabled": false
  2563. },
  2564. {
  2565. "key": "vipmember_info__phone_number",
  2566. "value": "18159801660",
  2567. "equals": true,
  2568. "description": "",
  2569. "enabled": false
  2570. }
  2571. ],
  2572. "preRequestScript": null,
  2573. "pathVariables": {},
  2574. "pathVariableData": [],
  2575. "method": "GET",
  2576. "data": null,
  2577. "dataMode": "params",
  2578. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2579. "currentHelper": "normal",
  2580. "helperAttributes": "{}",
  2581. "time": 1531278001070,
  2582. "name": "13_get_vipmember_vipmemberconsumption",
  2583. "description": "",
  2584. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2585. "responses": [],
  2586. "timestamp": null
  2587. },
  2588. {
  2589. "id": "6abcb1c8-75de-00b6-1c0e-d5995240429a",
  2590. "headers": "Authorization: Rong {{rongtoken}}\n",
  2591. "headerData": [
  2592. {
  2593. "key": "Authorization",
  2594. "value": "Rong {{rongtoken}}",
  2595. "enabled": true,
  2596. "description": ""
  2597. }
  2598. ],
  2599. "url": "{{url}}/api/basic/repairservice/",
  2600. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  2601. "queryParams": [],
  2602. "preRequestScript": null,
  2603. "pathVariables": {},
  2604. "pathVariableData": [],
  2605. "method": "GET",
  2606. "data": null,
  2607. "dataMode": "params",
  2608. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"repairservice_id01\", jsonData.results[0].id);\n postman.setEnvironmentVariable(\"test_category_name01\", jsonData.results[0].category_name);\n \n postman.setEnvironmentVariable(\"repairservice_id02\", jsonData.results[1].id);\n postman.setEnvironmentVariable(\"test_category_name02\", jsonData.results[1].category_name);",
  2609. "currentHelper": "normal",
  2610. "helperAttributes": "{}",
  2611. "time": 1532071219010,
  2612. "name": "get_basic_repairservice",
  2613. "description": "",
  2614. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2615. "responses": [],
  2616. "timestamp": null
  2617. },
  2618. {
  2619. "id": "6dc07085-98aa-e739-2d54-0107f612c530",
  2620. "headers": "Authorization: Rong {{rongtoken}}\n",
  2621. "headerData": [
  2622. {
  2623. "key": "Authorization",
  2624. "value": "Rong {{rongtoken}}",
  2625. "enabled": true,
  2626. "description": ""
  2627. }
  2628. ],
  2629. "url": "{{url}}/api/business/beautyserviceorder/?service_date=2018-06-14",
  2630. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  2631. "queryParams": [
  2632. {
  2633. "key": "service_date",
  2634. "value": "2018-06-14",
  2635. "equals": true,
  2636. "description": "",
  2637. "enabled": true
  2638. }
  2639. ],
  2640. "preRequestScript": null,
  2641. "pathVariables": {},
  2642. "pathVariableData": [],
  2643. "method": "GET",
  2644. "data": null,
  2645. "dataMode": "params",
  2646. "version": 2,
  2647. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  2648. "currentHelper": "normal",
  2649. "helperAttributes": "{}",
  2650. "time": 1530330788437,
  2651. "name": "01_get_business_beautyserviceorder",
  2652. "description": "",
  2653. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2654. "responses": [],
  2655. "isFromCollection": true,
  2656. "timestamp": null
  2657. },
  2658. {
  2659. "id": "6e94f1aa-5766-1b8a-b94d-5de6f1556745",
  2660. "headers": "Authorization: Rong {{rongtoken}}\n",
  2661. "headerData": [
  2662. {
  2663. "key": "Authorization",
  2664. "value": "Rong {{rongtoken}}",
  2665. "enabled": true,
  2666. "description": ""
  2667. }
  2668. ],
  2669. "url": "{{url}}/api/invoicing/salesordercount/?type=2&month=6&year=2018",
  2670. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  2671. "queryParams": [
  2672. {
  2673. "key": "type",
  2674. "value": "2",
  2675. "equals": true,
  2676. "description": "",
  2677. "enabled": true
  2678. },
  2679. {
  2680. "key": "month",
  2681. "value": "6",
  2682. "equals": true,
  2683. "description": "",
  2684. "enabled": true
  2685. },
  2686. {
  2687. "key": "year",
  2688. "value": "2018",
  2689. "equals": true,
  2690. "description": "",
  2691. "enabled": true
  2692. }
  2693. ],
  2694. "preRequestScript": null,
  2695. "pathVariables": {},
  2696. "pathVariableData": [],
  2697. "method": "GET",
  2698. "data": null,
  2699. "dataMode": "params",
  2700. "version": 2,
  2701. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  2702. "currentHelper": "normal",
  2703. "helperAttributes": "{}",
  2704. "time": 1530684847780,
  2705. "name": "08_get_capital_salesordercount_month",
  2706. "description": "",
  2707. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2708. "responses": [],
  2709. "timestamp": null
  2710. },
  2711. {
  2712. "id": "6ec07cbb-2b8d-2725-b10d-78ad3970d6b2",
  2713. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  2714. "headerData": [
  2715. {
  2716. "key": "Authorization",
  2717. "value": "Rong {{rongtoken}}",
  2718. "enabled": true,
  2719. "description": ""
  2720. },
  2721. {
  2722. "key": "Content-Type",
  2723. "value": "application/json",
  2724. "enabled": true,
  2725. "description": ""
  2726. }
  2727. ],
  2728. "url": "{{url}}/api/basic/department/{{test_department_id02}}/",
  2729. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  2730. "queryParams": [],
  2731. "preRequestScript": null,
  2732. "pathVariables": {},
  2733. "pathVariableData": [],
  2734. "method": "PUT",
  2735. "data": [],
  2736. "dataMode": "raw",
  2737. "tests": "\n\ntests[\"Status code is 200\"] = responseCode.code === 200;\n var jsonData = JSON.parse(responseBody);\n// postman.setEnvironmentVariable(\"test_department_id01\", jsonData.results[1].id);\n// postman.setEnvironmentVariable(\"test_department_name01\", jsonData.results[1].name);\n// postman.setEnvironmentVariable(\"test_department_id02\", jsonData.results[2].id);\n// postman.setEnvironmentVariable(\"test_department_name02\", jsonData.results[2].name);\n",
  2738. "currentHelper": "normal",
  2739. "helperAttributes": "{}",
  2740. "time": 1531994643082,
  2741. "name": "01_put_department",
  2742. "description": "",
  2743. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2744. "responses": [],
  2745. "isFromCollection": true,
  2746. "timestamp": null,
  2747. "rawModeData": "{\r\n\t\"id\": {{test_department_id02}},\r\n\t\"code\": null,\r\n\t\"name\": \"{{test_department_name02}}\",\r\n\t\"description\": null,\r\n\t\"lft\": 1,\r\n\t\"rght\": 2,\r\n\t\"tree_id\": \"\",\r\n\t\"level\": 0,\r\n\t\"shop\": {{test_shopid}},\r\n\t\"head\": {{test_userid02}},\r\n\t\"parent\": null\r\n}"
  2748. },
  2749. {
  2750. "id": "74014bc4-dd3a-9ca5-47af-40634a33dcfc",
  2751. "headers": "Authorization: Rong {{rongtoken}}\n",
  2752. "headerData": [
  2753. {
  2754. "key": "Authorization",
  2755. "value": "Rong {{rongtoken}}",
  2756. "enabled": true,
  2757. "description": ""
  2758. }
  2759. ],
  2760. "url": "{{url}}/api/basic/car/",
  2761. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  2762. "queryParams": [],
  2763. "preRequestScript": null,
  2764. "pathVariables": {},
  2765. "pathVariableData": [],
  2766. "method": "GET",
  2767. "data": null,
  2768. "dataMode": "params",
  2769. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\npostman.setEnvironmentVariable(\"car_id\", jsonData.results[0].id);",
  2770. "currentHelper": "normal",
  2771. "helperAttributes": "{}",
  2772. "time": 1531194362677,
  2773. "name": "06_get_basic_car",
  2774. "description": "",
  2775. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2776. "responses": [],
  2777. "timestamp": null
  2778. },
  2779. {
  2780. "id": "74a83b6e-9c08-c6da-6c68-d89bd390395f",
  2781. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  2782. "headerData": [
  2783. {
  2784. "key": "Content-Type",
  2785. "value": "application/json",
  2786. "enabled": true,
  2787. "description": ""
  2788. },
  2789. {
  2790. "key": "Authorization",
  2791. "value": "Rong {{rongtoken}}",
  2792. "enabled": true,
  2793. "description": ""
  2794. }
  2795. ],
  2796. "url": "{{url}}/api/vipmember/vipmemberrechargepackage/",
  2797. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  2798. "queryParams": [],
  2799. "preRequestScript": null,
  2800. "pathVariables": {},
  2801. "pathVariableData": [],
  2802. "method": "POST",
  2803. "data": [],
  2804. "dataMode": "raw",
  2805. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  2806. "currentHelper": "normal",
  2807. "helperAttributes": "{}",
  2808. "time": 1531988551908,
  2809. "name": "06_post_vipmember_package",
  2810. "description": "",
  2811. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2812. "responses": [],
  2813. "isFromCollection": true,
  2814. "timestamp": null,
  2815. "collectionRequestId": "74a83b6e-9c08-c6da-6c68-d89bd390395f",
  2816. "rawModeData": "{\r\n\t\"amount_package\": 2000,\r\n\t\"real_payment\": 1799,\r\n\t\"validity_period\": 12,\r\n\t\"rem\": null,\r\n\t\"state\": 1\r\n}"
  2817. },
  2818. {
  2819. "id": "74b12994-5478-8802-988d-ed8df02faecc",
  2820. "headers": "Authorization: Rong {{rongtoken}}\n",
  2821. "headerData": [
  2822. {
  2823. "key": "Authorization",
  2824. "value": "Rong {{rongtoken}}",
  2825. "enabled": true,
  2826. "description": ""
  2827. }
  2828. ],
  2829. "url": "{{url}}/api/basic/beautycategory/",
  2830. "folder": "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  2831. "queryParams": [],
  2832. "preRequestScript": null,
  2833. "pathVariables": {},
  2834. "pathVariableData": [],
  2835. "method": "GET",
  2836. "data": null,
  2837. "dataMode": "params",
  2838. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData= JSON.parse(responseBody);\n\n\npostman.setEnvironmentVariable(\"beauty_category_id01\", jsonData[0].id);\npostman.setEnvironmentVariable(\"beauty_category_id02\", jsonData[1].id);\npostman.setEnvironmentVariable(\"beauty_category_id03\", jsonData[2].id);",
  2839. "currentHelper": "normal",
  2840. "helperAttributes": "{}",
  2841. "time": 1532053006131,
  2842. "name": "get_basic_beautycategory",
  2843. "description": "",
  2844. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2845. "responses": [],
  2846. "isFromCollection": true,
  2847. "timestamp": null
  2848. },
  2849. {
  2850. "id": "74d33c98-fed0-9af4-969f-47539a387a20",
  2851. "headers": "Authorization: Rong {{rongtoken}}\n",
  2852. "headerData": [
  2853. {
  2854. "key": "Authorization",
  2855. "value": "Rong {{rongtoken}}",
  2856. "enabled": true,
  2857. "description": ""
  2858. }
  2859. ],
  2860. "url": "{{url}}/api/vipmember/vipmemberrecharge/?vipmember_info__phone_number={{test_phone_number}}&t={{$timestamp}}",
  2861. "folder": "53139a4f-0098-fcf8-5fa2-d0ec627db9af",
  2862. "queryParams": [
  2863. {
  2864. "key": "vipmember_info__phone_number",
  2865. "value": "{{test_phone_number}}",
  2866. "equals": true,
  2867. "description": "",
  2868. "enabled": true
  2869. },
  2870. {
  2871. "key": "t",
  2872. "value": "{{$timestamp}}",
  2873. "equals": true,
  2874. "description": "",
  2875. "enabled": true
  2876. }
  2877. ],
  2878. "preRequestScript": null,
  2879. "pathVariables": {},
  2880. "pathVariableData": [],
  2881. "method": "GET",
  2882. "data": null,
  2883. "dataMode": "params",
  2884. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2885. "currentHelper": "normal",
  2886. "helperAttributes": "{}",
  2887. "time": 1530325157698,
  2888. "name": "01_get_vipmember_recordvipmemberrecharge",
  2889. "description": "",
  2890. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2891. "responses": [],
  2892. "timestamp": null,
  2893. "isFromCollection": true
  2894. },
  2895. {
  2896. "id": "79f98c9f-ba8a-d155-fc6c-b88b37834947",
  2897. "headers": "Authorization: Rong {{rongtoken}}\n",
  2898. "headerData": [
  2899. {
  2900. "key": "Authorization",
  2901. "value": "Rong {{rongtoken}}",
  2902. "enabled": true,
  2903. "description": ""
  2904. }
  2905. ],
  2906. "url": "{{url}}/api/vipmember/storedvaluecard/?car_code={{test_car_code}}&car_area={{test_areashort}}&t={{$timestamp}}",
  2907. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  2908. "queryParams": [
  2909. {
  2910. "key": "car_code",
  2911. "value": "{{test_car_code}}",
  2912. "equals": true,
  2913. "description": "",
  2914. "enabled": true
  2915. },
  2916. {
  2917. "key": "car_area",
  2918. "value": "{{test_areashort}}",
  2919. "equals": true,
  2920. "description": "",
  2921. "enabled": true
  2922. },
  2923. {
  2924. "key": "t",
  2925. "value": "{{$timestamp}}",
  2926. "equals": true,
  2927. "description": "",
  2928. "enabled": true
  2929. }
  2930. ],
  2931. "preRequestScript": null,
  2932. "pathVariables": {},
  2933. "pathVariableData": [],
  2934. "method": "GET",
  2935. "data": null,
  2936. "dataMode": "params",
  2937. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2938. "currentHelper": "normal",
  2939. "helperAttributes": "{}",
  2940. "time": 1530669487644,
  2941. "name": "21_get_vipmember_cardcarcode",
  2942. "description": "",
  2943. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2944. "responses": [],
  2945. "isFromCollection": true,
  2946. "timestamp": null
  2947. },
  2948. {
  2949. "id": "7e232948-656b-021a-6adc-9828b7b08ddb",
  2950. "headers": "Authorization: Rong {{rongtoken}}\n",
  2951. "headerData": [
  2952. {
  2953. "key": "Authorization",
  2954. "value": "Rong {{rongtoken}}",
  2955. "enabled": true,
  2956. "description": ""
  2957. }
  2958. ],
  2959. "url": "{{url}}/api/vipmember/vipmemberworkprice/",
  2960. "queryParams": [
  2961. {
  2962. "key": "t",
  2963. "value": "{{$timestamp}}",
  2964. "equals": true,
  2965. "description": "",
  2966. "enabled": false
  2967. },
  2968. {
  2969. "key": "bill_date",
  2970. "value": "2018-06-20",
  2971. "equals": true,
  2972. "description": "",
  2973. "enabled": false
  2974. },
  2975. {
  2976. "key": "vipmember_info__phone_number",
  2977. "value": "18159801660",
  2978. "equals": true,
  2979. "description": "",
  2980. "enabled": false
  2981. }
  2982. ],
  2983. "preRequestScript": null,
  2984. "pathVariables": {},
  2985. "pathVariableData": [],
  2986. "method": "GET",
  2987. "data": null,
  2988. "dataMode": "params",
  2989. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  2990. "currentHelper": "normal",
  2991. "helperAttributes": "{}",
  2992. "time": 1529748940486,
  2993. "name": "11_get_vipmember_vipmemberworkprice",
  2994. "description": "",
  2995. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  2996. "responses": [],
  2997. "timestamp": null,
  2998. "isFromCollection": true,
  2999. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec"
  3000. },
  3001. {
  3002. "id": "7e87a6e4-5114-ffaa-6675-4f7e9e5ad9af",
  3003. "headers": "Authorization: Rong {{rongtoken}}\n",
  3004. "headerData": [
  3005. {
  3006. "key": "Authorization",
  3007. "value": "Rong {{rongtoken}}",
  3008. "enabled": true,
  3009. "description": ""
  3010. }
  3011. ],
  3012. "url": "{{url}}/api/basic/getcarrepairservicefee/?areashort_id={{test_areashort}}&car_code={{test_car_code}}",
  3013. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  3014. "queryParams": [
  3015. {
  3016. "key": "areashort_id",
  3017. "value": "{{test_areashort}}",
  3018. "equals": true,
  3019. "description": "",
  3020. "enabled": true
  3021. },
  3022. {
  3023. "key": "car_code",
  3024. "value": "{{test_car_code}}",
  3025. "equals": true,
  3026. "description": "",
  3027. "enabled": true
  3028. },
  3029. {
  3030. "key": "repair_service_id",
  3031. "value": "{{repairservice_id01}}",
  3032. "equals": true,
  3033. "description": "",
  3034. "enabled": false
  3035. },
  3036. {
  3037. "key": "standard_fee",
  3038. "value": "None",
  3039. "equals": true,
  3040. "description": "",
  3041. "enabled": false
  3042. },
  3043. {
  3044. "key": "repair_parts_items",
  3045. "value": "None",
  3046. "equals": true,
  3047. "description": "",
  3048. "enabled": false
  3049. },
  3050. {
  3051. "key": "repair_parts_rates",
  3052. "value": "None",
  3053. "equals": true,
  3054. "description": "",
  3055. "enabled": false
  3056. }
  3057. ],
  3058. "preRequestScript": null,
  3059. "pathVariables": {},
  3060. "pathVariableData": [],
  3061. "method": "GET",
  3062. "data": null,
  3063. "dataMode": "params",
  3064. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3065. "currentHelper": "normal",
  3066. "helperAttributes": "{}",
  3067. "time": 1530328846391,
  3068. "name": "25_get_basic_getcarrepairservicefee",
  3069. "description": "",
  3070. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3071. "responses": [],
  3072. "timestamp": null,
  3073. "isFromCollection": true
  3074. },
  3075. {
  3076. "id": "7eab6ce9-c057-bc18-0b40-45e73f442c04",
  3077. "headers": "Authorization: Rong {{rongtoken}}\n",
  3078. "headerData": [
  3079. {
  3080. "key": "Authorization",
  3081. "value": "Rong {{rongtoken}}",
  3082. "enabled": true,
  3083. "description": ""
  3084. }
  3085. ],
  3086. "url": "{{url}}/api/vipmember/vipmemberscoreadjust/",
  3087. "queryParams": [
  3088. {
  3089. "key": "t",
  3090. "value": "{{$timestamp}}",
  3091. "equals": true,
  3092. "description": "",
  3093. "enabled": false
  3094. },
  3095. {
  3096. "key": "bill_date",
  3097. "value": "2018-06-20",
  3098. "equals": true,
  3099. "description": "",
  3100. "enabled": false
  3101. },
  3102. {
  3103. "key": "vipmember_info__phone_number",
  3104. "value": "18159801660",
  3105. "equals": true,
  3106. "description": "",
  3107. "enabled": false
  3108. }
  3109. ],
  3110. "preRequestScript": null,
  3111. "pathVariables": {},
  3112. "pathVariableData": [],
  3113. "method": "GET",
  3114. "data": null,
  3115. "dataMode": "params",
  3116. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  3117. "currentHelper": "normal",
  3118. "helperAttributes": "{}",
  3119. "time": 1529748836307,
  3120. "name": "09_get_vipmember_vipmemberscoreadjust",
  3121. "description": "",
  3122. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3123. "responses": [],
  3124. "timestamp": null,
  3125. "isFromCollection": true,
  3126. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec"
  3127. },
  3128. {
  3129. "id": "81338043-9c97-1997-364a-2123811aa1b8",
  3130. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  3131. "headerData": [
  3132. {
  3133. "key": "Content-Type",
  3134. "value": "application/json",
  3135. "enabled": true,
  3136. "description": ""
  3137. },
  3138. {
  3139. "key": "Authorization",
  3140. "value": "Rong {{rongtoken}}",
  3141. "enabled": true,
  3142. "description": ""
  3143. }
  3144. ],
  3145. "url": "{{url}}/api/basic/employee/",
  3146. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  3147. "queryParams": [],
  3148. "preRequestScript": null,
  3149. "pathVariables": {},
  3150. "pathVariableData": [],
  3151. "method": "POST",
  3152. "data": [],
  3153. "dataMode": "raw",
  3154. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\nvar jsonData = JSON.parse(responseBody);\n\n//postman.setEnvironmentVariable(\"test_userid01\", jsonData.user);",
  3155. "currentHelper": "normal",
  3156. "helperAttributes": "{}",
  3157. "time": 1531992400315,
  3158. "name": "03_post_employee 02",
  3159. "description": "",
  3160. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3161. "responses": [],
  3162. "timestamp": null,
  3163. "isFromCollection": true,
  3164. "rawModeData": "{\r\n\t\"cellphone\": \"17700003333\",\r\n\t\"code\": \"17700003333\",\r\n\t\"degree\": \"维修徒弟\",\r\n\t\"dept\": \"{{test_department_id}}\",\r\n\t\"description\": null,\r\n\t\"dimission_date\": null,\r\n\t\"email\": \"17700003333@qq.com\",\r\n\t\"id_card\": \"39898719990805679\",\r\n\t\"is_staff\": \"True\",\r\n\t\"shop\": {{test_shopid}},\r\n\t\"status\": \"draft\",\r\n\t\"user_name\": \"韩二\"\r\n}"
  3165. },
  3166. {
  3167. "id": "8192901a-574b-f19d-4649-382ff5b28ebf",
  3168. "headers": "Authorization: Rong {{rongtoken}}\n",
  3169. "headerData": [
  3170. {
  3171. "key": "Authorization",
  3172. "value": "Rong {{rongtoken}}",
  3173. "enabled": true,
  3174. "description": ""
  3175. }
  3176. ],
  3177. "url": "{{url}}/api/basic/integralexchangerule/",
  3178. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  3179. "queryParams": [],
  3180. "preRequestScript": null,
  3181. "pathVariables": {},
  3182. "pathVariableData": [],
  3183. "method": "GET",
  3184. "data": null,
  3185. "dataMode": "params",
  3186. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3187. "currentHelper": "normal",
  3188. "helperAttributes": "{}",
  3189. "time": 1530328058352,
  3190. "name": "24_get_basic_integralexchangerule",
  3191. "description": "",
  3192. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3193. "responses": [],
  3194. "isFromCollection": true,
  3195. "timestamp": null
  3196. },
  3197. {
  3198. "id": "85e0d197-4796-6082-b9c9-1cccf013e61c",
  3199. "headers": "Authorization: Rong {{rongtoken}}\n",
  3200. "headerData": [
  3201. {
  3202. "key": "Authorization",
  3203. "value": "Rong {{rongtoken}}",
  3204. "enabled": true,
  3205. "description": ""
  3206. }
  3207. ],
  3208. "url": "{{url}}/api/vipmember/vipmemberscorechange/",
  3209. "queryParams": [
  3210. {
  3211. "key": "t",
  3212. "value": "{{$timestamp}}",
  3213. "equals": true,
  3214. "description": "",
  3215. "enabled": false
  3216. },
  3217. {
  3218. "key": "bill_date",
  3219. "value": "2018-06-20",
  3220. "equals": true,
  3221. "description": "",
  3222. "enabled": false
  3223. },
  3224. {
  3225. "key": "vipmember_info__phone_number",
  3226. "value": "18159801660",
  3227. "equals": true,
  3228. "description": "",
  3229. "enabled": false
  3230. }
  3231. ],
  3232. "preRequestScript": null,
  3233. "pathVariables": {},
  3234. "pathVariableData": [],
  3235. "method": "GET",
  3236. "data": null,
  3237. "dataMode": "params",
  3238. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  3239. "currentHelper": "normal",
  3240. "helperAttributes": "{}",
  3241. "time": 1529748785803,
  3242. "name": "08_get_vipmember_vipmemberscorechange",
  3243. "description": "",
  3244. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3245. "responses": [],
  3246. "isFromCollection": true,
  3247. "timestamp": null,
  3248. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec"
  3249. },
  3250. {
  3251. "id": "878116d6-72e0-1988-a558-e4bb4c0a2933",
  3252. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  3253. "headerData": [
  3254. {
  3255. "key": "Authorization",
  3256. "value": "Rong {{rongtoken}}",
  3257. "enabled": true,
  3258. "description": ""
  3259. },
  3260. {
  3261. "key": "Content-Type",
  3262. "value": "application/json",
  3263. "enabled": true,
  3264. "description": ""
  3265. }
  3266. ],
  3267. "url": "{{url}}/api/vipmember/packagecard/?t={{$timestamp}}&car_code={{test_car_code}}&areashort_id={{test_areashort}}",
  3268. "folder": "cd656873-5d45-9402-5b7f-47d6cc24c3a0",
  3269. "queryParams": [
  3270. {
  3271. "key": "t",
  3272. "value": "{{$timestamp}}",
  3273. "equals": true,
  3274. "description": "",
  3275. "enabled": true
  3276. },
  3277. {
  3278. "key": "car_code",
  3279. "value": "{{test_car_code}}",
  3280. "equals": true,
  3281. "description": "",
  3282. "enabled": true
  3283. },
  3284. {
  3285. "key": "areashort_id",
  3286. "value": "{{test_areashort}}",
  3287. "equals": true,
  3288. "description": "",
  3289. "enabled": true
  3290. }
  3291. ],
  3292. "preRequestScript": null,
  3293. "pathVariables": {},
  3294. "pathVariableData": [],
  3295. "method": "GET",
  3296. "data": [],
  3297. "dataMode": "raw",
  3298. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3299. "currentHelper": "normal",
  3300. "helperAttributes": "{}",
  3301. "time": 1530351338302,
  3302. "name": "04_get_vipmember_packagecard_carcode",
  3303. "description": "",
  3304. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3305. "responses": [],
  3306. "isFromCollection": true,
  3307. "timestamp": null,
  3308. "rawModeData": "[{\r\n\t\"number\": 1,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id01}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}, {\r\n\t\"number\": 10,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id02}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}]"
  3309. },
  3310. {
  3311. "id": "88a902fb-614b-7f0e-2058-074af786c4fb",
  3312. "headers": "Authorization: Rong {{rongtoken}}\n",
  3313. "headerData": [
  3314. {
  3315. "key": "Authorization",
  3316. "value": "Rong {{rongtoken}}",
  3317. "enabled": true,
  3318. "description": ""
  3319. }
  3320. ],
  3321. "url": "{{url}}/api/business/vipmemberinfobilling/?car_id={{car_id}}",
  3322. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3323. "queryParams": [
  3324. {
  3325. "key": "car_id",
  3326. "value": "{{car_id}}",
  3327. "equals": true,
  3328. "description": "",
  3329. "enabled": true
  3330. },
  3331. {
  3332. "key": "service_id",
  3333. "value": "{{service_id}}",
  3334. "equals": true,
  3335. "description": "",
  3336. "enabled": false
  3337. }
  3338. ],
  3339. "preRequestScript": null,
  3340. "pathVariables": {},
  3341. "pathVariableData": [],
  3342. "method": "GET",
  3343. "data": null,
  3344. "dataMode": "params",
  3345. "version": 2,
  3346. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3347. "currentHelper": "normal",
  3348. "helperAttributes": "{}",
  3349. "time": 1530346814178,
  3350. "name": "07_get_business_vipdervicepriceview",
  3351. "description": "",
  3352. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3353. "responses": [],
  3354. "isFromCollection": true,
  3355. "timestamp": null
  3356. },
  3357. {
  3358. "id": "894569f3-f9c2-08c8-79da-36b9d6c4d6e4",
  3359. "headers": "Authorization: Rong {{rongtoken}}\n",
  3360. "headerData": [
  3361. {
  3362. "key": "Authorization",
  3363. "value": "Rong {{rongtoken}}",
  3364. "enabled": true,
  3365. "description": ""
  3366. }
  3367. ],
  3368. "url": "{{url}}/api/business/repairserviceorder/{{repairservice_id}}/?t={{$timestamp}}",
  3369. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3370. "queryParams": [
  3371. {
  3372. "key": "receipt_date",
  3373. "value": "2018-06-19",
  3374. "equals": true,
  3375. "description": "",
  3376. "enabled": false
  3377. },
  3378. {
  3379. "key": "t",
  3380. "value": "{{$timestamp}}",
  3381. "equals": true,
  3382. "description": "",
  3383. "enabled": true
  3384. }
  3385. ],
  3386. "preRequestScript": null,
  3387. "pathVariables": {},
  3388. "pathVariableData": [],
  3389. "method": "GET",
  3390. "data": null,
  3391. "dataMode": "params",
  3392. "version": 2,
  3393. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3394. "currentHelper": "normal",
  3395. "helperAttributes": "{}",
  3396. "time": 1530339604481,
  3397. "name": "02_get_business_repairserviceorderid",
  3398. "description": "",
  3399. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3400. "responses": [],
  3401. "isFromCollection": true,
  3402. "timestamp": null
  3403. },
  3404. {
  3405. "id": "90639dda-79f7-6e91-b7a0-abee307e125b",
  3406. "headers": "Authorization: Rong {{rongtoken}}\n",
  3407. "headerData": [
  3408. {
  3409. "key": "Authorization",
  3410. "value": "Rong {{rongtoken}}",
  3411. "enabled": true,
  3412. "description": ""
  3413. }
  3414. ],
  3415. "url": "{{url}}/api/business/beautyserviceorderadmin/?cellphone={{test_phone_number}}&car_code={{test_car_code}}&start_date=2018-07-03&end_date=2018-07-03",
  3416. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3417. "queryParams": [
  3418. {
  3419. "key": "cellphone",
  3420. "value": "{{test_phone_number}}",
  3421. "equals": true,
  3422. "description": "",
  3423. "enabled": true
  3424. },
  3425. {
  3426. "key": "car_code",
  3427. "value": "{{test_car_code}}",
  3428. "equals": true,
  3429. "description": "",
  3430. "enabled": true
  3431. },
  3432. {
  3433. "key": "start_date",
  3434. "value": "2018-07-03",
  3435. "equals": true,
  3436. "description": "",
  3437. "enabled": true
  3438. },
  3439. {
  3440. "key": "end_date",
  3441. "value": "2018-07-03",
  3442. "equals": true,
  3443. "description": "",
  3444. "enabled": true
  3445. }
  3446. ],
  3447. "preRequestScript": null,
  3448. "pathVariables": {},
  3449. "pathVariableData": [],
  3450. "method": "GET",
  3451. "data": [],
  3452. "dataMode": "raw",
  3453. "version": 2,
  3454. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3455. "currentHelper": "normal",
  3456. "helperAttributes": "{}",
  3457. "time": 1530616521378,
  3458. "name": "09_get_business_beautyservicerecordadmin",
  3459. "description": "",
  3460. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3461. "responses": [],
  3462. "isFromCollection": true,
  3463. "timestamp": null,
  3464. "rawModeData": ""
  3465. },
  3466. {
  3467. "id": "906a625e-4454-8bd5-5257-2d6dfdc26dd6",
  3468. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  3469. "headerData": [
  3470. {
  3471. "key": "Authorization",
  3472. "value": "Rong {{rongtoken}}",
  3473. "enabled": true,
  3474. "description": ""
  3475. },
  3476. {
  3477. "key": "Content-Type",
  3478. "value": "application/json",
  3479. "enabled": true,
  3480. "description": ""
  3481. }
  3482. ],
  3483. "url": "{{url}}/api/business/beautyserviceorder/",
  3484. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3485. "queryParams": [
  3486. {
  3487. "key": "service_id",
  3488. "value": "{{service_id}}",
  3489. "equals": true,
  3490. "description": "",
  3491. "enabled": false
  3492. }
  3493. ],
  3494. "preRequestScript": null,
  3495. "pathVariables": {},
  3496. "pathVariableData": [],
  3497. "method": "POST",
  3498. "data": [],
  3499. "dataMode": "raw",
  3500. "version": 2,
  3501. "tests": "\n\ntests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  3502. "currentHelper": "normal",
  3503. "helperAttributes": "{}",
  3504. "time": 1530615968913,
  3505. "name": "08_post_business_beautyservicerecord",
  3506. "description": "",
  3507. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3508. "responses": [],
  3509. "isFromCollection": true,
  3510. "timestamp": null,
  3511. "rawModeData": "{\r\n\t\"beauty_services\": {{test_service_id01}},\r\n\t\"cash_payment\": \"{{test_price01}}\",\r\n\t\"style\": 0,\r\n\t\"service_date\": \"2018-07-03\",\r\n\t\"car_code\": \"{{test_car_code}}\",\r\n\t\"areashort\": {{test_areashort}},\r\n\t\"phone_number\": \"{{test_phone_number}}\",\r\n\t\"car_category\": {{test_cartype}},\r\n\t\"vip_name\": \"{{test_vip_name}}\",\r\n\t\"vip_grade\": \"{{test_grade}}\",\r\n\t\"agent\": {{test_userid}},\r\n\t\"beauty_dispatched\": [{\r\n\t\t\"rate\": \"50.00\",\r\n\t\t\"worker\": {{test_userid01}}\r\n\t}, {\r\n\t\t\"rate\": \"50.00\",\r\n\t\t\"worker\": {{test_userid01}}\r\n\t}],\r\n\t\"service_amount\": \"{{test_price01}}\",\r\n\t\"arrival_amount\": 0\r\n}"
  3512. },
  3513. {
  3514. "id": "92a5653a-b724-9214-41e3-726c5df69c0d",
  3515. "headers": "Authorization: Rong {{rongtoken}}\n",
  3516. "headerData": [
  3517. {
  3518. "key": "Authorization",
  3519. "value": "Rong {{rongtoken}}",
  3520. "enabled": true,
  3521. "description": ""
  3522. }
  3523. ],
  3524. "url": "{{url}}/api/basic/supplierlevel/",
  3525. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  3526. "queryParams": [],
  3527. "preRequestScript": null,
  3528. "pathVariables": {},
  3529. "pathVariableData": [],
  3530. "method": "GET",
  3531. "data": null,
  3532. "dataMode": "params",
  3533. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3534. "currentHelper": "normal",
  3535. "helperAttributes": "{}",
  3536. "time": 1530327877343,
  3537. "name": "20_get_basic_supplierlevel",
  3538. "description": "",
  3539. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3540. "responses": [],
  3541. "timestamp": null,
  3542. "isFromCollection": true
  3543. },
  3544. {
  3545. "id": "94103fab-daa7-eac8-49dc-471243f9d8c7",
  3546. "headers": "Authorization: Rong {{rongtoken}}\n",
  3547. "headerData": [
  3548. {
  3549. "key": "Authorization",
  3550. "value": "Rong {{rongtoken}}",
  3551. "enabled": true,
  3552. "description": ""
  3553. }
  3554. ],
  3555. "url": "{{url}}/api/capital/revenuereport/?day=29&month=6&year=2018 ",
  3556. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  3557. "queryParams": [
  3558. {
  3559. "key": "day",
  3560. "value": "29",
  3561. "equals": true,
  3562. "description": "",
  3563. "enabled": true
  3564. },
  3565. {
  3566. "key": "month",
  3567. "value": "6",
  3568. "equals": true,
  3569. "description": "",
  3570. "enabled": true
  3571. },
  3572. {
  3573. "key": "year",
  3574. "value": "2018 ",
  3575. "equals": true,
  3576. "description": "",
  3577. "enabled": true
  3578. }
  3579. ],
  3580. "preRequestScript": null,
  3581. "pathVariables": {},
  3582. "pathVariableData": [],
  3583. "method": "GET",
  3584. "data": null,
  3585. "dataMode": "params",
  3586. "version": 2,
  3587. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3588. "currentHelper": "normal",
  3589. "helperAttributes": "{}",
  3590. "time": 1530672517222,
  3591. "name": "01_get_capital_revenuereport_day",
  3592. "description": "",
  3593. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3594. "responses": [],
  3595. "isFromCollection": true,
  3596. "timestamp": null
  3597. },
  3598. {
  3599. "id": "99a7bef3-ff9b-7618-0e04-982e4558a6b7",
  3600. "headers": "Authorization: Rong {{rongtoken}}\n",
  3601. "headerData": [
  3602. {
  3603. "key": "Authorization",
  3604. "value": "Rong {{rongtoken}}",
  3605. "enabled": true,
  3606. "description": ""
  3607. }
  3608. ],
  3609. "url": "{{url}}/api/vipmember/storedvaluecard/{{valuecard_id}}/",
  3610. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  3611. "queryParams": [
  3612. {
  3613. "key": "access_token",
  3614. "value": "{{access_token}}",
  3615. "equals": true,
  3616. "description": "",
  3617. "enabled": false
  3618. }
  3619. ],
  3620. "preRequestScript": null,
  3621. "pathVariables": {},
  3622. "pathVariableData": [],
  3623. "method": "GET",
  3624. "data": null,
  3625. "dataMode": "params",
  3626. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  3627. "currentHelper": "normal",
  3628. "helperAttributes": "{}",
  3629. "time": 1531189203920,
  3630. "name": "02_get_vipmember_storedvaluecardid_info",
  3631. "description": "",
  3632. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3633. "responses": [],
  3634. "timestamp": null,
  3635. "isFromCollection": true
  3636. },
  3637. {
  3638. "id": "9b6d9be1-4a38-b489-2dbd-2fb3a42c3acf",
  3639. "headers": "Authorization: Rong {{rongtoken}}\n",
  3640. "headerData": [
  3641. {
  3642. "key": "Authorization",
  3643. "value": "Rong {{rongtoken}}",
  3644. "enabled": true,
  3645. "description": ""
  3646. }
  3647. ],
  3648. "url": "{{url}}/api/invoicing/inventorydetail/?car_products_name={{test_carproduct_name}}&t={{$timestamp}}",
  3649. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  3650. "queryParams": [
  3651. {
  3652. "key": "car_products_name",
  3653. "value": "{{test_carproduct_name}}",
  3654. "equals": true,
  3655. "description": "",
  3656. "enabled": true
  3657. },
  3658. {
  3659. "key": "t",
  3660. "value": "{{$timestamp}}",
  3661. "equals": true,
  3662. "description": "",
  3663. "enabled": true
  3664. }
  3665. ],
  3666. "preRequestScript": null,
  3667. "pathVariables": {},
  3668. "pathVariableData": [],
  3669. "method": "GET",
  3670. "data": null,
  3671. "dataMode": "params",
  3672. "version": 2,
  3673. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  3674. "currentHelper": "normal",
  3675. "helperAttributes": "{}",
  3676. "time": 1530684860727,
  3677. "name": "09_get_invoicing_inventorydetail",
  3678. "description": "",
  3679. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3680. "responses": [],
  3681. "timestamp": null
  3682. },
  3683. {
  3684. "id": "9c3dec5b-86f1-5ea6-1d7f-8d27a8c14212",
  3685. "headers": "Authorization: Rong {{rongtoken}}\n",
  3686. "headerData": [
  3687. {
  3688. "key": "Authorization",
  3689. "value": "Rong {{rongtoken}}",
  3690. "enabled": true,
  3691. "description": ""
  3692. }
  3693. ],
  3694. "url": "{{url}}/api/vipmember/vipmemberinfo/?search=1815980",
  3695. "folder": "971e459b-531d-9149-561c-f88b91970576",
  3696. "queryParams": [
  3697. {
  3698. "key": "access_token",
  3699. "value": "{{access_token}}",
  3700. "equals": true,
  3701. "description": "",
  3702. "enabled": false
  3703. },
  3704. {
  3705. "key": "search",
  3706. "value": "1815980",
  3707. "equals": true,
  3708. "description": "",
  3709. "enabled": true
  3710. }
  3711. ],
  3712. "preRequestScript": null,
  3713. "pathVariables": {},
  3714. "pathVariableData": [],
  3715. "method": "GET",
  3716. "data": null,
  3717. "dataMode": "params",
  3718. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"phone_number\", jsonData.results[0].phone_number);\n}",
  3719. "currentHelper": "normal",
  3720. "helperAttributes": "{}",
  3721. "time": 1531124541506,
  3722. "name": "02_get_vipmember_searchmixnumber",
  3723. "description": "",
  3724. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3725. "responses": [],
  3726. "timestamp": null
  3727. },
  3728. {
  3729. "id": "9c92680e-4f18-b0dc-b6ad-7d8fa63b8bed",
  3730. "headers": "Authorization: Rong {{rongtoken}}\n",
  3731. "headerData": [
  3732. {
  3733. "key": "Authorization",
  3734. "value": "Rong {{rongtoken}}",
  3735. "enabled": true,
  3736. "description": ""
  3737. }
  3738. ],
  3739. "url": "{{url}}/api/business/vipservicepriceview/?car_id={{test_car_id}}&service_id={{test_service_id02}}&t={{$timestamp}}",
  3740. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3741. "queryParams": [
  3742. {
  3743. "key": "car_id",
  3744. "value": "{{test_car_id}}",
  3745. "equals": true,
  3746. "description": "",
  3747. "enabled": true
  3748. },
  3749. {
  3750. "key": "service_id",
  3751. "value": "{{test_service_id02}}",
  3752. "equals": true,
  3753. "description": "",
  3754. "enabled": true
  3755. },
  3756. {
  3757. "key": "t",
  3758. "value": "{{$timestamp}}",
  3759. "equals": true,
  3760. "description": "",
  3761. "enabled": true
  3762. }
  3763. ],
  3764. "preRequestScript": null,
  3765. "pathVariables": {},
  3766. "pathVariableData": [],
  3767. "method": "GET",
  3768. "data": [],
  3769. "dataMode": "raw",
  3770. "version": 2,
  3771. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  3772. "currentHelper": "normal",
  3773. "helperAttributes": "{}",
  3774. "time": 1530618008560,
  3775. "name": "15_get_business_vipservicepriceview",
  3776. "description": "",
  3777. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3778. "responses": [],
  3779. "isFromCollection": true,
  3780. "timestamp": null,
  3781. "rawModeData": ""
  3782. },
  3783. {
  3784. "id": "9e9bbb1b-16b4-9e32-3889-a1b364a6ba24",
  3785. "headers": "Authorization: Rong {{rongtoken}}\n",
  3786. "headerData": [
  3787. {
  3788. "key": "Authorization",
  3789. "value": "Rong {{rongtoken}}",
  3790. "enabled": true,
  3791. "description": ""
  3792. }
  3793. ],
  3794. "url": "{{url}}/api/business/repairserviceorder/?recepit_date=2018-07-03",
  3795. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3796. "queryParams": [
  3797. {
  3798. "key": "recepit_date",
  3799. "value": "2018-07-03",
  3800. "equals": true,
  3801. "description": "",
  3802. "enabled": true
  3803. }
  3804. ],
  3805. "preRequestScript": null,
  3806. "pathVariables": {},
  3807. "pathVariableData": [],
  3808. "method": "GET",
  3809. "data": [],
  3810. "dataMode": "raw",
  3811. "version": 2,
  3812. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  3813. "currentHelper": "normal",
  3814. "helperAttributes": "{}",
  3815. "time": 1530616555703,
  3816. "name": "10_get_business_repairserviceorder",
  3817. "description": "",
  3818. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3819. "responses": [],
  3820. "isFromCollection": true,
  3821. "timestamp": null,
  3822. "rawModeData": ""
  3823. },
  3824. {
  3825. "id": "9f8244a5-aa2c-5b09-2fd1-c0a34df703f8",
  3826. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  3827. "headerData": [
  3828. {
  3829. "key": "Authorization",
  3830. "value": "Rong {{rongtoken}}",
  3831. "enabled": true,
  3832. "description": ""
  3833. },
  3834. {
  3835. "key": "Content-Type",
  3836. "value": "application/json",
  3837. "enabled": true,
  3838. "description": ""
  3839. }
  3840. ],
  3841. "url": "{{url}}/api/basic/department/",
  3842. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  3843. "queryParams": [],
  3844. "preRequestScript": null,
  3845. "pathVariables": {},
  3846. "pathVariableData": [],
  3847. "method": "POST",
  3848. "data": [],
  3849. "dataMode": "raw",
  3850. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\n\n var jsonData = JSON.parse(responseBody);\npostman.setEnvironmentVariable(\"test_department_id\", jsonData.id);\n//postman.setEnvironmentVariable(\"test_department_name\", jsonData.name);\n",
  3851. "currentHelper": "normal",
  3852. "helperAttributes": "{}",
  3853. "time": 1531985447508,
  3854. "name": "01_post_department",
  3855. "description": "",
  3856. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3857. "responses": [],
  3858. "isFromCollection": true,
  3859. "timestamp": null,
  3860. "collectionRequestId": "9f8244a5-aa2c-5b09-2fd1-c0a34df703f8",
  3861. "rawModeData": "{\r\n\"description\":\"\",\r\n\"head\":\"\",\r\n\"name\":\"维修部二部\",\r\n\"status\":\"draft\"\r\n\t\r\n}"
  3862. },
  3863. {
  3864. "id": "ab178c07-7dd8-a8c4-c06d-537861531419",
  3865. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  3866. "headerData": [
  3867. {
  3868. "key": "Authorization",
  3869. "value": "Rong {{rongtoken}}",
  3870. "enabled": true,
  3871. "description": ""
  3872. },
  3873. {
  3874. "key": "Content-Type",
  3875. "value": "application/json",
  3876. "enabled": true,
  3877. "description": ""
  3878. }
  3879. ],
  3880. "url": "{{url}}/api/basic/department/30045/",
  3881. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  3882. "queryParams": [],
  3883. "preRequestScript": null,
  3884. "pathVariables": {},
  3885. "pathVariableData": [],
  3886. "method": "DELETE",
  3887. "data": [],
  3888. "dataMode": "raw",
  3889. "tests": "\n\ntests[\"Status code is 204\"] = responseCode.code === 204 || responseCode.code === 404 ;\n var jsonData = JSON.parse(responseBody);\n// postman.setEnvironmentVariable(\"test_department_id01\", jsonData.results[1].id);\n// postman.setEnvironmentVariable(\"test_department_name01\", jsonData.results[1].name);\n// postman.setEnvironmentVariable(\"test_department_id02\", jsonData.results[2].id);\n// postman.setEnvironmentVariable(\"test_department_name02\", jsonData.results[2].name);\n",
  3890. "currentHelper": "normal",
  3891. "helperAttributes": "{}",
  3892. "time": 1532001104404,
  3893. "name": "01_delete_department",
  3894. "description": "",
  3895. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3896. "responses": [],
  3897. "timestamp": null,
  3898. "isFromCollection": true,
  3899. "rawModeData": "{\r\n\t\"id\": {{test_department_id02}},\r\n\t\"code\": null,\r\n\t\"name\": \"{{test_department_name02}}\",\r\n\t\"description\": null,\r\n\t\"lft\": 1,\r\n\t\"rght\": 2,\r\n\t\"tree_id\": \"\",\r\n\t\"level\": 0,\r\n\t\"shop\": {{test_shopid}},\r\n\t\"head\": {{test_userid02}},\r\n\t\"parent\": null\r\n}"
  3900. },
  3901. {
  3902. "id": "b0b27a78-55c4-56bb-8d44-cbdb41c6f4b5",
  3903. "headers": "Authorization: Rong {{rongtoken}}\n",
  3904. "headerData": [
  3905. {
  3906. "key": "Authorization",
  3907. "value": "Rong {{rongtoken}}",
  3908. "enabled": true,
  3909. "description": ""
  3910. }
  3911. ],
  3912. "url": "{{url}}/api/basic/beautypackages/",
  3913. "folder": "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  3914. "queryParams": [],
  3915. "preRequestScript": null,
  3916. "pathVariables": {},
  3917. "pathVariableData": [],
  3918. "method": "GET",
  3919. "data": null,
  3920. "dataMode": "params",
  3921. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_package_id\", jsonData.results[0].id);\npostman.setEnvironmentVariable(\"test_card_price\", jsonData.results[0].price);\n// postman.setEnvironmentVariable(\"test_service_id01\", jsonData.results[3].service_details[0].beauty_services_id);\n\n// postman.setEnvironmentVariable(\"test_service_id02\", jsonData.results[3].service_details[1].beauty_services_id);\n\n//postman.setEnvironmentVariable(\"test_service_id03\", jsonData.results[3].service_details[2].beauty_services_id);",
  3922. "currentHelper": "normal",
  3923. "helperAttributes": "{}",
  3924. "time": 1532060152828,
  3925. "name": "get_basic_beautypackages",
  3926. "description": "",
  3927. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3928. "responses": [],
  3929. "timestamp": null
  3930. },
  3931. {
  3932. "id": "b22d7372-44d2-20ce-def7-511ffb1342ec",
  3933. "headers": "Authorization: Rong {{rongtoken}}\n",
  3934. "headerData": [
  3935. {
  3936. "key": "Authorization",
  3937. "value": "Rong {{rongtoken}}",
  3938. "enabled": true,
  3939. "description": ""
  3940. }
  3941. ],
  3942. "url": "{{url}}/api/business/repaircardetail/",
  3943. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  3944. "queryParams": [
  3945. {
  3946. "key": "recepit_date",
  3947. "value": "2018-07-03",
  3948. "equals": true,
  3949. "description": "",
  3950. "enabled": false
  3951. }
  3952. ],
  3953. "preRequestScript": null,
  3954. "pathVariables": {},
  3955. "pathVariableData": [],
  3956. "method": "GET",
  3957. "data": [],
  3958. "dataMode": "raw",
  3959. "version": 2,
  3960. "tests": "\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;",
  3961. "currentHelper": "normal",
  3962. "helperAttributes": "{}",
  3963. "time": 1530616617452,
  3964. "name": "11_get_business_repaircardetail",
  3965. "description": "",
  3966. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  3967. "responses": [],
  3968. "isFromCollection": true,
  3969. "timestamp": null,
  3970. "rawModeData": ""
  3971. },
  3972. {
  3973. "id": "b2887460-7b7a-44b6-f39d-fd36b704fe71",
  3974. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  3975. "headerData": [
  3976. {
  3977. "key": "Content-Type",
  3978. "value": "application/json",
  3979. "enabled": true,
  3980. "description": ""
  3981. },
  3982. {
  3983. "key": "Authorization",
  3984. "value": "Rong {{rongtoken}}",
  3985. "enabled": true,
  3986. "description": ""
  3987. }
  3988. ],
  3989. "url": "{{url}}/api/basic/storehouse/",
  3990. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  3991. "queryParams": [],
  3992. "preRequestScript": null,
  3993. "pathVariables": {},
  3994. "pathVariableData": [],
  3995. "method": "POST",
  3996. "data": [],
  3997. "dataMode": "raw",
  3998. "version": 2,
  3999. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  4000. "currentHelper": "normal",
  4001. "helperAttributes": "{}",
  4002. "time": 1532000567503,
  4003. "name": "post_storehouse",
  4004. "description": "",
  4005. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4006. "responses": [],
  4007. "timestamp": null,
  4008. "isFromCollection": true,
  4009. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"自营仓007\",\r\n\t\"parent\": 1,\r\n\t\"dept\": {{test_department_id01}},\r\n\t\"head\": {{test_userid01}},\r\n\t\"telephone\": \"{{test_user_cellphone01}}\",\r\n\t\"note\": null\r\n}"
  4010. },
  4011. {
  4012. "id": "b955ce50-b147-1922-7170-b2dccea3f39a",
  4013. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  4014. "headerData": [
  4015. {
  4016. "key": "Content-Type",
  4017. "value": "application/json",
  4018. "enabled": true,
  4019. "description": ""
  4020. },
  4021. {
  4022. "key": "Authorization",
  4023. "value": "Rong {{rongtoken}}",
  4024. "enabled": true,
  4025. "description": ""
  4026. }
  4027. ],
  4028. "url": "{{url}}/api/basic/repairservice/",
  4029. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  4030. "queryParams": [],
  4031. "preRequestScript": null,
  4032. "pathVariables": {},
  4033. "pathVariableData": [],
  4034. "method": "POST",
  4035. "data": [],
  4036. "dataMode": "raw",
  4037. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  4038. "currentHelper": "normal",
  4039. "helperAttributes": "{}",
  4040. "time": 1532069449349,
  4041. "name": "post_repairservice",
  4042. "description": "",
  4043. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4044. "responses": [],
  4045. "isFromCollection": true,
  4046. "timestamp": null,
  4047. "rawModeData": "{\r\n\t\"name\": \"机箱检测\",\r\n\t\"category\": {{test_repaircategory_id01}},\r\n\t\"note\": null\r\n}"
  4048. },
  4049. {
  4050. "id": "b9e89160-2a74-b20f-7782-794cf2c0e637",
  4051. "headers": "Authorization: Rong {{rongtoken}}\n",
  4052. "headerData": [
  4053. {
  4054. "key": "Authorization",
  4055. "value": "Rong {{rongtoken}}",
  4056. "description": "",
  4057. "enabled": true
  4058. }
  4059. ],
  4060. "url": "{{url}}/api/basic/areashort/",
  4061. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  4062. "queryParams": [
  4063. {
  4064. "key": "access_token",
  4065. "value": "{{access_token}}",
  4066. "equals": true,
  4067. "description": "",
  4068. "enabled": false
  4069. }
  4070. ],
  4071. "preRequestScript": null,
  4072. "pathVariables": {},
  4073. "pathVariableData": [],
  4074. "method": "GET",
  4075. "data": null,
  4076. "dataMode": "params",
  4077. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"area_id01\", jsonData[0].id);\n postman.setEnvironmentVariable(\"area_name01\", jsonData[0].name);\n}\n\n\n",
  4078. "currentHelper": "normal",
  4079. "helperAttributes": {},
  4080. "time": 1532346301008,
  4081. "name": "03_get_basic_areashort",
  4082. "description": "",
  4083. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4084. "responses": []
  4085. },
  4086. {
  4087. "id": "ba041183-f0f1-da39-de59-33ec03df9272",
  4088. "headers": "Authorization: Rong {{rongtoken}}\n",
  4089. "headerData": [
  4090. {
  4091. "key": "Authorization",
  4092. "value": "Rong {{rongtoken}}",
  4093. "enabled": true,
  4094. "description": ""
  4095. }
  4096. ],
  4097. "url": "{{url}}/api/vipmember/vipmemberrechargepackage/?t={{$timestamp}}",
  4098. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  4099. "queryParams": [
  4100. {
  4101. "key": "t",
  4102. "value": "{{$timestamp}}",
  4103. "equals": true,
  4104. "description": "",
  4105. "enabled": true
  4106. }
  4107. ],
  4108. "preRequestScript": null,
  4109. "pathVariables": {},
  4110. "pathVariableData": [],
  4111. "method": "GET",
  4112. "data": null,
  4113. "dataMode": "params",
  4114. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"amount_package02\", jsonData.results[0].amount_package);\n postman.setEnvironmentVariable(\"real_payment02\", jsonData.results[0].real_payment);\n ",
  4115. "currentHelper": "normal",
  4116. "helperAttributes": "{}",
  4117. "time": 1531278445017,
  4118. "name": "15_get_vipmember_vipmemberrechargepackage",
  4119. "description": "",
  4120. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4121. "responses": [],
  4122. "timestamp": null
  4123. },
  4124. {
  4125. "id": "bd588a0a-923e-24ce-68f9-31c5768d7545",
  4126. "headers": "Authorization: Rong {{rongtoken}}\n",
  4127. "headerData": [
  4128. {
  4129. "key": "Authorization",
  4130. "value": "Rong {{rongtoken}}",
  4131. "enabled": true,
  4132. "description": ""
  4133. }
  4134. ],
  4135. "url": "{{url}}/api/basic/storehouse/",
  4136. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  4137. "queryParams": [],
  4138. "preRequestScript": null,
  4139. "pathVariables": {},
  4140. "pathVariableData": [],
  4141. "method": "GET",
  4142. "data": null,
  4143. "dataMode": "params",
  4144. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonDate = JSON.parse(responseBody);\n\n\npostman.setEnvironmentVariable(\"test_storehouse_id01\", jsonDate.results[1].id);\npostman.setEnvironmentVariable(\"test_storehouse_id02\", jsonDate.results[2].id);\n",
  4145. "currentHelper": "normal",
  4146. "helperAttributes": "{}",
  4147. "time": 1532000555906,
  4148. "name": "get_basic_storehouse",
  4149. "description": "",
  4150. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4151. "responses": [],
  4152. "isFromCollection": true,
  4153. "timestamp": null
  4154. },
  4155. {
  4156. "id": "c1ae95c0-b42d-bb4d-4899-5eedc329a94b",
  4157. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  4158. "headerData": [
  4159. {
  4160. "key": "Content-Type",
  4161. "value": "application/json",
  4162. "description": "",
  4163. "enabled": true
  4164. },
  4165. {
  4166. "key": "Authorization",
  4167. "value": "Rong {{rongtoken}}",
  4168. "description": "",
  4169. "enabled": true
  4170. }
  4171. ],
  4172. "url": "{{url}}/api/basic/employee/",
  4173. "folder": "16e0730e-fe73-455a-bfd4-90d1a78b6fb6",
  4174. "queryParams": [],
  4175. "preRequestScript": null,
  4176. "pathVariables": {},
  4177. "pathVariableData": [],
  4178. "method": "POST",
  4179. "data": [],
  4180. "dataMode": "raw",
  4181. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\n\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_userid\", jsonData.user);",
  4182. "currentHelper": "normal",
  4183. "helperAttributes": {},
  4184. "time": 1532343970584,
  4185. "name": "02_post_employee 01",
  4186. "description": "",
  4187. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4188. "responses": [],
  4189. "rawModeData": "{\r\n\t\"cellphone\": \"17700002222\",\r\n\t\"code\": \"17700002222\",\r\n\t\"degree\": \"维修师傅\",\r\n\t\"dept\": \"{{test_department_id}}\",\r\n\t\"description\": null,\r\n\t\"dimission_date\": null,\r\n\t\"email\": \"17700002222@qq.com\",\r\n\t\"id_card\": \"398987199908090799\",\r\n\t\"is_staff\": \"True\",\r\n\t\"shop\": {{test_shopid}},\r\n\t\"status\": \"draft\",\r\n\t\"user_name\": \"韩一\"\r\n}"
  4190. },
  4191. {
  4192. "id": "c45586a0-5536-fc28-bac2-e45886b39f39",
  4193. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  4194. "headerData": [
  4195. {
  4196. "key": "Authorization",
  4197. "value": "Rong {{rongtoken}}",
  4198. "enabled": true,
  4199. "description": ""
  4200. },
  4201. {
  4202. "key": "Content-Type",
  4203. "value": "application/json",
  4204. "enabled": true,
  4205. "description": ""
  4206. }
  4207. ],
  4208. "url": "{{url}}/api/vipmember/storedvaluecard/?t={{$timestamp}}",
  4209. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  4210. "queryParams": [
  4211. {
  4212. "key": "vipmember_info__phone_number",
  4213. "value": "13100008888",
  4214. "equals": true,
  4215. "description": "",
  4216. "enabled": false
  4217. },
  4218. {
  4219. "key": "t",
  4220. "value": "{{$timestamp}}",
  4221. "equals": true,
  4222. "description": "",
  4223. "enabled": true
  4224. }
  4225. ],
  4226. "preRequestScript": null,
  4227. "pathVariables": {},
  4228. "pathVariableData": [],
  4229. "method": "POST",
  4230. "data": [],
  4231. "dataMode": "raw",
  4232. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 200;\n \n",
  4233. "currentHelper": "normal",
  4234. "helperAttributes": "{}",
  4235. "time": 1531278980510,
  4236. "name": "16_post_vipmember_storedvaluecard",
  4237. "description": "",
  4238. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4239. "responses": [],
  4240. "timestamp": null,
  4241. "isFromCollection": true,
  4242. "rawModeData": "{\r\n\t\"rem\": \"\",\r\n\t\"begin_date\": \"2018-06-30\",\r\n\t\"end_date\": \"2018-07-30\",\r\n\t\"state\": 1,\r\n\t\"amount_available\": \"{{test_amount_package}}\",\r\n\t\"shop\": 2,\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"agent\": null,\r\n\t\"car_code\": \"{{test_car_code}}\",\r\n\t\"phone_number\": \"{{test_phone_number}}\",\r\n\t\"areashort\": {{test_areashort}},\r\n\t\"vip_name\": \"{{test_vip_name}}\"\r\n}"
  4243. },
  4244. {
  4245. "id": "c6d6d392-e4b5-dbca-cf76-0ef65dd0be7a",
  4246. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  4247. "headerData": [
  4248. {
  4249. "key": "Authorization",
  4250. "value": "Rong {{rongtoken}}",
  4251. "enabled": true,
  4252. "description": ""
  4253. },
  4254. {
  4255. "key": "Content-Type",
  4256. "value": "application/json",
  4257. "enabled": true,
  4258. "description": ""
  4259. }
  4260. ],
  4261. "url": "{{url}}/api/basic/supplier/",
  4262. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  4263. "queryParams": [],
  4264. "preRequestScript": null,
  4265. "pathVariables": {},
  4266. "pathVariableData": [],
  4267. "method": "GET",
  4268. "data": [],
  4269. "dataMode": "raw",
  4270. "tests": "\n\n\n\n\ntests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\npostman.setEnvironmentVariable(\"supplier_id01\", jsonData.results[0].id);",
  4271. "currentHelper": "normal",
  4272. "helperAttributes": "{}",
  4273. "time": 1532001557682,
  4274. "name": "get_basic_supplier",
  4275. "description": "",
  4276. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4277. "responses": [],
  4278. "isFromCollection": true,
  4279. "timestamp": null,
  4280. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"新华都科技公司\",\r\n\t\"abbreviation\": \"新科技\",\r\n\t\"supplier_code\": \"GYS0001\",\r\n\t\"category\": {{supplier_category_id01}},\r\n\t\"credit_code\": null,\r\n\t\"style\": 1,\r\n\t\"settlement_day\": 15,\r\n\t\"pic\": \"柳启悦\",\r\n\t\"pic_telephone\": \"17700001110\",\r\n\t\"contacts\": \"明华月\",\r\n\t\"contacts_telephone\": \"17700001112\",\r\n\t\"unit_area\": null,\r\n\t\"address\": \"厦门明发园A栋\",\r\n\t\"note\": null,\r\n\t\"scope_item_ids\": [{{supplier_scope_id01}}, {{supplier_scope_id02}}, {{supplier_scope_id03}}],\r\n\t\"shop_supplier\": null\r\n}"
  4281. },
  4282. {
  4283. "id": "cc4e89fb-f762-0af1-a410-7ed978cb5cb6",
  4284. "headers": "Authorization: Rong {{rongtoken}}\n",
  4285. "headerData": [
  4286. {
  4287. "key": "Authorization",
  4288. "value": "Rong {{rongtoken}}",
  4289. "enabled": true,
  4290. "description": ""
  4291. }
  4292. ],
  4293. "url": "{{url}}/api/basic/repaircategory/",
  4294. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  4295. "queryParams": [],
  4296. "preRequestScript": null,
  4297. "pathVariables": {},
  4298. "pathVariableData": [],
  4299. "method": "GET",
  4300. "data": null,
  4301. "dataMode": "params",
  4302. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"test_repaircategory_id01\", jsonData[0].id);\n",
  4303. "currentHelper": "normal",
  4304. "helperAttributes": "{}",
  4305. "time": 1532069907595,
  4306. "name": "get_basic_repaircategory",
  4307. "description": "",
  4308. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4309. "responses": [],
  4310. "timestamp": null
  4311. },
  4312. {
  4313. "id": "cf097c33-dfc0-d210-599d-7026636aee42",
  4314. "headers": "Authorization: Rong {{rongtoken}}\n",
  4315. "headerData": [
  4316. {
  4317. "key": "Authorization",
  4318. "value": "Rong {{rongtoken}}",
  4319. "enabled": true,
  4320. "description": ""
  4321. }
  4322. ],
  4323. "url": "{{url}}/api/capital/businessreport/?month=6&year=2018 ",
  4324. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  4325. "queryParams": [
  4326. {
  4327. "key": "month",
  4328. "value": "6",
  4329. "equals": true,
  4330. "description": "",
  4331. "enabled": true
  4332. },
  4333. {
  4334. "key": "year",
  4335. "value": "2018 ",
  4336. "equals": true,
  4337. "description": "",
  4338. "enabled": true
  4339. }
  4340. ],
  4341. "preRequestScript": null,
  4342. "pathVariables": {},
  4343. "pathVariableData": [],
  4344. "method": "GET",
  4345. "data": null,
  4346. "dataMode": "params",
  4347. "version": 2,
  4348. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4349. "currentHelper": "normal",
  4350. "helperAttributes": "{}",
  4351. "time": 1530671980306,
  4352. "name": "04_get_capital_business_month",
  4353. "description": "",
  4354. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4355. "responses": [],
  4356. "isFromCollection": true,
  4357. "timestamp": null
  4358. },
  4359. {
  4360. "id": "d345fc5b-1f8b-d34f-1f7e-879fe3950888",
  4361. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  4362. "headerData": [
  4363. {
  4364. "key": "Content-Type",
  4365. "value": "application/json",
  4366. "enabled": true,
  4367. "description": ""
  4368. },
  4369. {
  4370. "key": "Authorization",
  4371. "value": "Rong {{rongtoken}}",
  4372. "enabled": true,
  4373. "description": ""
  4374. }
  4375. ],
  4376. "url": "{{url}}/api/vipmember/vipmemberinfo/",
  4377. "folder": "971e459b-531d-9149-561c-f88b91970576",
  4378. "queryParams": [],
  4379. "preRequestScript": null,
  4380. "pathVariables": {},
  4381. "pathVariableData": [],
  4382. "method": "POST",
  4383. "data": [],
  4384. "dataMode": "raw",
  4385. "version": 2,
  4386. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\n\n var jsonData = JSON.parse(responseBody);\n postman.setEnvironmentVariable(\"vipmember_id\", jsonData.id);\n ",
  4387. "currentHelper": "normal",
  4388. "helperAttributes": "{}",
  4389. "time": 1531973025346,
  4390. "name": "07_post_vipmember_info",
  4391. "description": "",
  4392. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4393. "responses": [],
  4394. "timestamp": null,
  4395. "isFromCollection": true,
  4396. "collectionRequestId": "d345fc5b-1f8b-d34f-1f7e-879fe3950888",
  4397. "rawModeData": "{\r\n\t\"phone_number\": \"17700007777\",\r\n\t\"name\": \"山丘\",\r\n\t\"sex\": \"1\",\r\n\t\"number\": \"17700007777\",\r\n\t\"register_date\": \"2018-06-30\",\r\n\t\"email\": \"17700007777@qq.com\",\r\n\t\"grade\": \"\",\r\n\t\"wechat\": \"weixi180\",\r\n\t\"alipay\": \"zhifub80\",\r\n\t\"birthday\": \"1997-08-08\",\r\n\t\"address\": \"福建厦门思明软件园二期77\",\r\n\t\"agent\": \"\",\r\n\t\"rem\": \"\"\r\n}"
  4398. },
  4399. {
  4400. "id": "d34b0524-70ca-7703-7804-eaa050f9e020",
  4401. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  4402. "headerData": [
  4403. {
  4404. "key": "Content-Type",
  4405. "value": "application/json",
  4406. "enabled": true,
  4407. "description": ""
  4408. },
  4409. {
  4410. "key": "Authorization",
  4411. "value": "Rong {{rongtoken}}",
  4412. "enabled": true,
  4413. "description": ""
  4414. }
  4415. ],
  4416. "url": "{{url}}/api/basic/beautypackages/",
  4417. "folder": "180bd428-f3e0-cbba-b32b-dce17d9389b9",
  4418. "queryParams": [],
  4419. "preRequestScript": null,
  4420. "pathVariables": {},
  4421. "pathVariableData": [],
  4422. "method": "POST",
  4423. "data": [],
  4424. "dataMode": "raw",
  4425. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  4426. "currentHelper": "normal",
  4427. "helperAttributes": "{}",
  4428. "time": 1532055812900,
  4429. "name": "post_beatuyservice",
  4430. "description": "",
  4431. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4432. "responses": [],
  4433. "isFromCollection": true,
  4434. "timestamp": null,
  4435. "rawModeData": "{\r\n\t\"name\": \"新会员套餐\",\r\n\t\"price\": \"199\",\r\n\t\"deadline\": 6,\r\n\t\"available\": true,\r\n\t\"release_date\": \"2018-07-20\",\r\n\t\"service_details\": [{\r\n\t\t\"amount\":3,\r\n\t\t\"beauty_services_id\": {{test_service_id01}},\r\n\t\t\"name\": \"{{test_name01}}\",\r\n\t\t\"price\": \"{{test_price01}}\",\r\n\t\t\"unit\": 0\r\n\t}, {\r\n\t\t\"amount\": 1,\r\n\t\t\"beauty_services_id\": {{test_service_id02}},\r\n\t\t\"name\": \"{{test_name02}}\",\r\n\t\t\"price\": \"{{test_price02}}\",\r\n\t\t\"unit\": 0\r\n\t}, {\r\n\t\t\"amount\": 1,\r\n\t\t\"beauty_services_id\": {{test_service_id03}},\r\n\t\t\"name\": \"{{test_name03}}\",\r\n\t\t\"price\": \"{{test_price03}}\",\r\n\t\t\"unit\": 0\r\n\t}]\r\n}"
  4436. },
  4437. {
  4438. "id": "d472ff90-38b1-3bcc-64cc-3ffb31055d3c",
  4439. "headers": "Authorization: Rong {{rongtoken}}\n",
  4440. "headerData": [
  4441. {
  4442. "key": "Authorization",
  4443. "value": "Rong {{rongtoken}}",
  4444. "enabled": true,
  4445. "description": ""
  4446. }
  4447. ],
  4448. "url": "{{url}}/api/invoicing/purchaseordercount/?type=2&from_time=2018-06-20&to_time=2018-06-20",
  4449. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  4450. "queryParams": [
  4451. {
  4452. "key": "type",
  4453. "value": "2",
  4454. "equals": true,
  4455. "description": "",
  4456. "enabled": true
  4457. },
  4458. {
  4459. "key": "from_time",
  4460. "value": "2018-06-20",
  4461. "equals": true,
  4462. "description": "",
  4463. "enabled": true
  4464. },
  4465. {
  4466. "key": "to_time",
  4467. "value": "2018-06-20",
  4468. "equals": true,
  4469. "description": "",
  4470. "enabled": true
  4471. }
  4472. ],
  4473. "preRequestScript": null,
  4474. "pathVariables": {},
  4475. "pathVariableData": [],
  4476. "method": "GET",
  4477. "data": null,
  4478. "dataMode": "params",
  4479. "version": 2,
  4480. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4481. "currentHelper": "normal",
  4482. "helperAttributes": "{}",
  4483. "time": 1530671863007,
  4484. "name": "05_get_capital_purchaseordercount_day",
  4485. "description": "",
  4486. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4487. "responses": [],
  4488. "isFromCollection": true,
  4489. "timestamp": null
  4490. },
  4491. {
  4492. "id": "d4bbcc09-905e-1c30-0277-9d242013399b",
  4493. "headers": "Authorization: Rong {{rongtoken}}\n",
  4494. "headerData": [
  4495. {
  4496. "key": "Authorization",
  4497. "value": "Rong {{rongtoken}}",
  4498. "enabled": true,
  4499. "description": ""
  4500. }
  4501. ],
  4502. "url": "{{url}}/api/vipmember/vipmemberserviceitem/?t={{$timestamp}}",
  4503. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  4504. "queryParams": [
  4505. {
  4506. "key": "vipmember_info__phone_number",
  4507. "value": "13100008888",
  4508. "equals": true,
  4509. "description": "",
  4510. "enabled": false
  4511. },
  4512. {
  4513. "key": "t",
  4514. "value": "{{$timestamp}}",
  4515. "equals": true,
  4516. "description": "",
  4517. "enabled": true
  4518. }
  4519. ],
  4520. "preRequestScript": null,
  4521. "pathVariables": {},
  4522. "pathVariableData": [],
  4523. "method": "GET",
  4524. "data": null,
  4525. "dataMode": "params",
  4526. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  4527. "currentHelper": "normal",
  4528. "helperAttributes": "{}",
  4529. "time": 1529746178230,
  4530. "name": "04_get_vipmember_vipmemberserviceitem",
  4531. "description": "",
  4532. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4533. "responses": [],
  4534. "isFromCollection": true,
  4535. "timestamp": null
  4536. },
  4537. {
  4538. "id": "d5e90dc5-1b9f-79c3-9558-7b47b0c341a1",
  4539. "headers": "Authorization: Rong {{rongtoken}}\n",
  4540. "headerData": [
  4541. {
  4542. "key": "Authorization",
  4543. "value": "Rong {{rongtoken}}",
  4544. "enabled": true,
  4545. "description": ""
  4546. }
  4547. ],
  4548. "url": "{{url}}/api/vipmember/vipmemberscorerule/",
  4549. "folder": "99c3fe71-18d8-19a7-9729-2a7d2aa443ec",
  4550. "queryParams": [
  4551. {
  4552. "key": "t",
  4553. "value": "{{$timestamp}}",
  4554. "equals": true,
  4555. "description": "",
  4556. "enabled": false
  4557. },
  4558. {
  4559. "key": "bill_date",
  4560. "value": "2018-06-20",
  4561. "equals": true,
  4562. "description": "",
  4563. "enabled": false
  4564. },
  4565. {
  4566. "key": "vipmember_info__phone_number",
  4567. "value": "18159801660",
  4568. "equals": true,
  4569. "description": "",
  4570. "enabled": false
  4571. }
  4572. ],
  4573. "preRequestScript": null,
  4574. "pathVariables": {},
  4575. "pathVariableData": [],
  4576. "method": "GET",
  4577. "data": null,
  4578. "dataMode": "params",
  4579. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  4580. "currentHelper": "normal",
  4581. "helperAttributes": "{}",
  4582. "time": 1531203366104,
  4583. "name": "07_get_vipmember_vipmemberstorerule",
  4584. "description": "",
  4585. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4586. "responses": [],
  4587. "timestamp": null
  4588. },
  4589. {
  4590. "id": "d6598938-7d03-62e8-e77b-b6287e0c5945",
  4591. "headers": "Authorization: Rong {{rongtoken}}\n",
  4592. "headerData": [
  4593. {
  4594. "key": "Authorization",
  4595. "value": "Rong {{rongtoken}}",
  4596. "enabled": true,
  4597. "description": ""
  4598. }
  4599. ],
  4600. "url": "{{url}}/api/invoicing/inventorydetail/?storehouse_ids={{test_storehouse_id01}}&t={{$timestamp}}",
  4601. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  4602. "queryParams": [
  4603. {
  4604. "key": "storehouse_ids",
  4605. "value": "{{test_storehouse_id01}}",
  4606. "equals": true,
  4607. "description": "",
  4608. "enabled": true
  4609. },
  4610. {
  4611. "key": "t",
  4612. "value": "{{$timestamp}}",
  4613. "equals": true,
  4614. "description": "",
  4615. "enabled": true
  4616. }
  4617. ],
  4618. "preRequestScript": null,
  4619. "pathVariables": {},
  4620. "pathVariableData": [],
  4621. "method": "GET",
  4622. "data": null,
  4623. "dataMode": "params",
  4624. "version": 2,
  4625. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4626. "currentHelper": "normal",
  4627. "helperAttributes": "{}",
  4628. "time": 1530687517514,
  4629. "name": "10_get_invoicing_inventorydetail_storehouse",
  4630. "description": "",
  4631. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4632. "responses": [],
  4633. "timestamp": null
  4634. },
  4635. {
  4636. "id": "da9affee-820b-5fdd-9c26-38bd42ecde57",
  4637. "headers": "Content-Type: application/json\nAuthorization: Rong {{rongtoken}}\n",
  4638. "headerData": [
  4639. {
  4640. "key": "Content-Type",
  4641. "value": "application/json",
  4642. "enabled": true,
  4643. "description": ""
  4644. },
  4645. {
  4646. "key": "Authorization",
  4647. "value": "Rong {{rongtoken}}",
  4648. "enabled": true,
  4649. "description": ""
  4650. }
  4651. ],
  4652. "url": "{{url}}/api/basic/car/",
  4653. "folder": "971e459b-531d-9149-561c-f88b91970576",
  4654. "queryParams": [
  4655. {
  4656. "key": "access_token",
  4657. "value": "{{access_token}}",
  4658. "equals": true,
  4659. "description": "",
  4660. "enabled": false
  4661. }
  4662. ],
  4663. "preRequestScript": null,
  4664. "pathVariables": {},
  4665. "pathVariableData": [],
  4666. "method": "POST",
  4667. "data": [],
  4668. "dataMode": "raw",
  4669. "version": 2,
  4670. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  4671. "currentHelper": "normal",
  4672. "helperAttributes": "{}",
  4673. "time": 1531973021198,
  4674. "name": "08_post_basiccar_addcar",
  4675. "description": "",
  4676. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4677. "responses": [],
  4678. "timestamp": null,
  4679. "isFromCollection": true,
  4680. "collectionRequestId": "da9affee-820b-5fdd-9c26-38bd42ecde57",
  4681. "rawModeData": "[{\r\n \"code\": \"A81289\",\r\n \"vip\": {{test_vipmember_id}},\r\n \"areashort\": \"{{test_areashort}}\",\r\n \"carcategory\": \"{{test_cartype}}\",\r\n \"on_date\": \"2018-07-09\",\r\n \"engine_no\": \"\",\r\n \"carbody_no\": \"\",\r\n \"body_color\": \"\",\r\n \"description\": \"\"\r\n}]"
  4682. },
  4683. {
  4684. "id": "dbcda8a5-77a8-6c7e-2bbe-acd490897b8a",
  4685. "headers": "Authorization: Rong {{rongtoken}}\n",
  4686. "headerData": [
  4687. {
  4688. "key": "Authorization",
  4689. "value": "Rong {{rongtoken}}",
  4690. "enabled": true,
  4691. "description": ""
  4692. }
  4693. ],
  4694. "url": "{{url}}/api/basic/supplierbusinessscope/",
  4695. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  4696. "queryParams": [],
  4697. "preRequestScript": null,
  4698. "pathVariables": {},
  4699. "pathVariableData": [],
  4700. "method": "GET",
  4701. "data": null,
  4702. "dataMode": "params",
  4703. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nvar jsonData = JSON.parse(responseBody);\n\npostman.setEnvironmentVariable(\"supplier_scope_id01\", jsonData[0].id);\npostman.setEnvironmentVariable(\"supplier_scope_id02\", jsonData[1].id);\npostman.setEnvironmentVariable(\"supplier_scope_id03\", jsonData[2].id);",
  4704. "currentHelper": "normal",
  4705. "helperAttributes": "{}",
  4706. "time": 1531999914034,
  4707. "name": "get_basic_supplierbusinessscope",
  4708. "description": "",
  4709. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4710. "responses": [],
  4711. "isFromCollection": true,
  4712. "timestamp": null
  4713. },
  4714. {
  4715. "id": "dcdea255-611e-83d9-495c-f713420c187d",
  4716. "headers": "Content-Type: application/json\n",
  4717. "headerData": [
  4718. {
  4719. "key": "Content-Type",
  4720. "value": "application/json",
  4721. "enabled": true,
  4722. "description": ""
  4723. }
  4724. ],
  4725. "url": "{{imurl}}/user/login/",
  4726. "folder": "258dbb78-5893-cb28-78f7-69b6f54919e0",
  4727. "queryParams": [],
  4728. "preRequestScript": null,
  4729. "pathVariables": {},
  4730. "pathVariableData": [],
  4731. "method": "POST",
  4732. "data": [],
  4733. "dataMode": "raw",
  4734. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nif(tests[\"Status code is 200\"] ){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"rongtoken\", jsonData.result.token);\n}",
  4735. "currentHelper": "normal",
  4736. "helperAttributes": "{}",
  4737. "time": 1531984068310,
  4738. "name": "02_post_login",
  4739. "description": "",
  4740. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4741. "responses": [],
  4742. "isFromCollection": true,
  4743. "timestamp": null,
  4744. "rawModeData": "{\r\n\t\"password\": \"17700007777\",\r\n\t\"phone\": \"17700007777\",\r\n\t\"region\": \"86\"\r\n}"
  4745. },
  4746. {
  4747. "id": "de398edf-8e64-d524-2fa3-bf8821c883c5",
  4748. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/x-www-form-urlencoded\n",
  4749. "headerData": [
  4750. {
  4751. "key": "Authorization",
  4752. "value": "Rong {{rongtoken}}",
  4753. "enabled": true,
  4754. "description": ""
  4755. },
  4756. {
  4757. "key": "Content-Type",
  4758. "value": "application/x-www-form-urlencoded",
  4759. "enabled": true,
  4760. "description": ""
  4761. }
  4762. ],
  4763. "url": "{{url}}/api/basic/supplier/2/",
  4764. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  4765. "queryParams": [],
  4766. "preRequestScript": null,
  4767. "pathVariables": {},
  4768. "pathVariableData": [],
  4769. "method": "DELETE",
  4770. "data": [],
  4771. "dataMode": "raw",
  4772. "tests": "\n\n// var jsonData = JSON.parse(responseBody);\n// postman.setEnvironmentVariable(\"test_brands01\", jsonData.results[0].id);\n\n\n\ntests[\"Status code is 204\"] = responseCode.code === 204 || responseCode.code === 404 ;",
  4773. "currentHelper": "normal",
  4774. "helperAttributes": "{}",
  4775. "time": 1532001081631,
  4776. "name": "delete_basic_supplier",
  4777. "description": "",
  4778. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4779. "responses": [],
  4780. "isFromCollection": true,
  4781. "timestamp": null,
  4782. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"新华都科技公司\",\r\n\t\"abbreviation\": \"新科技\",\r\n\t\"supplier_code\": \"GYS0001\",\r\n\t\"category\": {{supplier_category_id01}},\r\n\t\"credit_code\": null,\r\n\t\"style\": 1,\r\n\t\"settlement_day\": 15,\r\n\t\"pic\": \"柳启悦\",\r\n\t\"pic_telephone\": \"17700001110\",\r\n\t\"contacts\": \"明华月\",\r\n\t\"contacts_telephone\": \"17700001112\",\r\n\t\"unit_area\": null,\r\n\t\"address\": \"厦门明发园A栋\",\r\n\t\"note\": null,\r\n\t\"scope_item_ids\": [{{supplier_scope_id01}}, {{supplier_scope_id02}}, {{supplier_scope_id03}}],\r\n\t\"shop_supplier\": null\r\n}"
  4783. },
  4784. {
  4785. "id": "decaad4b-13f1-66be-85d7-02f0826be793",
  4786. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  4787. "headerData": [
  4788. {
  4789. "key": "Authorization",
  4790. "value": "Rong {{rongtoken}}",
  4791. "enabled": true,
  4792. "description": ""
  4793. },
  4794. {
  4795. "key": "Content-Type",
  4796. "value": "application/json",
  4797. "enabled": true,
  4798. "description": ""
  4799. }
  4800. ],
  4801. "url": "{{url}}/api/basic/supplier/",
  4802. "folder": "b9652708-c73e-a7d0-4155-1695fee6fc80",
  4803. "queryParams": [],
  4804. "preRequestScript": null,
  4805. "pathVariables": {},
  4806. "pathVariableData": [],
  4807. "method": "POST",
  4808. "data": [],
  4809. "dataMode": "raw",
  4810. "tests": "\n\n// var jsonData = JSON.parse(responseBody);\n// postman.setEnvironmentVariable(\"test_brands01\", jsonData.results[0].id);\n\ntests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;",
  4811. "currentHelper": "normal",
  4812. "helperAttributes": "{}",
  4813. "time": 1532000856310,
  4814. "name": "post_basic_supplier",
  4815. "description": "",
  4816. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4817. "responses": [],
  4818. "isFromCollection": true,
  4819. "timestamp": null,
  4820. "rawModeData": "{\r\n\t\"status\": \"draft\",\r\n\t\"name\": \"新华都科技公司\",\r\n\t\"abbreviation\": \"新科技\",\r\n\t\"supplier_code\": \"GYS0001\",\r\n\t\"category\": {{supplier_category_id01}},\r\n\t\"credit_code\": null,\r\n\t\"style\": 1,\r\n\t\"settlement_day\": 15,\r\n\t\"pic\": \"柳启悦\",\r\n\t\"pic_telephone\": \"17700001110\",\r\n\t\"contacts\": \"明华月\",\r\n\t\"contacts_telephone\": \"17700001112\",\r\n\t\"unit_area\": null,\r\n\t\"address\": \"厦门明发园A栋\",\r\n\t\"note\": null,\r\n\t\"scope_item_ids\": [{{supplier_scope_id01}}, {{supplier_scope_id02}}, {{supplier_scope_id03}}],\r\n\t\"shop_supplier\": null\r\n}"
  4821. },
  4822. {
  4823. "id": "def5327f-61b3-368e-62ef-2b8ebb0b22e0",
  4824. "headers": "Authorization: Rong {{rongtoken}}\n",
  4825. "headerData": [
  4826. {
  4827. "key": "Authorization",
  4828. "value": "Rong {{rongtoken}}",
  4829. "enabled": true,
  4830. "description": ""
  4831. }
  4832. ],
  4833. "url": "{{url}}/api/capital/businessreport/?day=29&month=6&year=2018 ",
  4834. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  4835. "queryParams": [
  4836. {
  4837. "key": "day",
  4838. "value": "29",
  4839. "equals": true,
  4840. "description": "",
  4841. "enabled": true
  4842. },
  4843. {
  4844. "key": "month",
  4845. "value": "6",
  4846. "equals": true,
  4847. "description": "",
  4848. "enabled": true
  4849. },
  4850. {
  4851. "key": "year",
  4852. "value": "2018 ",
  4853. "equals": true,
  4854. "description": "",
  4855. "enabled": true
  4856. }
  4857. ],
  4858. "preRequestScript": null,
  4859. "pathVariables": {},
  4860. "pathVariableData": [],
  4861. "method": "GET",
  4862. "data": null,
  4863. "dataMode": "params",
  4864. "version": 2,
  4865. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4866. "currentHelper": "normal",
  4867. "helperAttributes": "{}",
  4868. "time": 1530671590295,
  4869. "name": "03_get_capital_business_day",
  4870. "description": "",
  4871. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4872. "responses": [],
  4873. "isFromCollection": true,
  4874. "timestamp": null
  4875. },
  4876. {
  4877. "id": "e052f5a9-a923-e14b-1cd9-33c4016071fc",
  4878. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  4879. "headerData": [
  4880. {
  4881. "key": "Authorization",
  4882. "value": "Rong {{rongtoken}}",
  4883. "enabled": true,
  4884. "description": ""
  4885. },
  4886. {
  4887. "key": "Content-Type",
  4888. "value": "application/json",
  4889. "enabled": true,
  4890. "description": ""
  4891. }
  4892. ],
  4893. "url": "{{url}}/api/vipmember/packagecard/?t={{$timestamp}}&vipmember_info__phone_number={{test_phone_number}}",
  4894. "folder": "cd656873-5d45-9402-5b7f-47d6cc24c3a0",
  4895. "queryParams": [
  4896. {
  4897. "key": "t",
  4898. "value": "{{$timestamp}}",
  4899. "equals": true,
  4900. "description": "",
  4901. "enabled": true
  4902. },
  4903. {
  4904. "key": "vipmember_info__phone_number",
  4905. "value": "{{test_phone_number}}",
  4906. "equals": true,
  4907. "description": "",
  4908. "enabled": true
  4909. }
  4910. ],
  4911. "preRequestScript": null,
  4912. "pathVariables": {},
  4913. "pathVariableData": [],
  4914. "method": "GET",
  4915. "data": [],
  4916. "dataMode": "raw",
  4917. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4918. "currentHelper": "normal",
  4919. "helperAttributes": "{}",
  4920. "time": 1530349790484,
  4921. "name": "03_get_vipmember_packagecard_number",
  4922. "description": "",
  4923. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4924. "responses": [],
  4925. "isFromCollection": true,
  4926. "timestamp": null,
  4927. "rawModeData": "[{\r\n\t\"number\": 1,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id01}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}, {\r\n\t\"number\": 10,\r\n\t\"already_used\": 0,\r\n\t\"shop\": 2,\r\n\t\"service_item\": {{test_service_id02}},\r\n\t\"package_card\": {{test_packagecard_id}}\r\n}]"
  4928. },
  4929. {
  4930. "id": "e125b540-a871-f054-b610-e4ea25d54128",
  4931. "headers": "Authorization: Rong {{rongtoken}}\n",
  4932. "headerData": [
  4933. {
  4934. "key": "Authorization",
  4935. "value": "Rong {{rongtoken}}",
  4936. "enabled": true,
  4937. "description": ""
  4938. }
  4939. ],
  4940. "url": "{{url}}/api/basic/beautypackageitem/",
  4941. "folder": "539db340-8e5c-cc19-6ff1-17c39ace8f7f",
  4942. "queryParams": [],
  4943. "preRequestScript": null,
  4944. "pathVariables": {},
  4945. "pathVariableData": [],
  4946. "method": "GET",
  4947. "data": null,
  4948. "dataMode": "params",
  4949. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  4950. "currentHelper": "normal",
  4951. "helperAttributes": "{}",
  4952. "time": 1530327517768,
  4953. "name": "13_get_basic_beautypackageitem",
  4954. "description": "",
  4955. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4956. "responses": [],
  4957. "isFromCollection": true,
  4958. "timestamp": null
  4959. },
  4960. {
  4961. "id": "e2a7d5bd-b2ff-8ebc-ea90-4e9e72319244",
  4962. "headers": "Authorization: Rong {{rongtoken}}\n",
  4963. "headerData": [
  4964. {
  4965. "key": "Authorization",
  4966. "value": "Rong {{rongtoken}}",
  4967. "enabled": true,
  4968. "description": ""
  4969. }
  4970. ],
  4971. "url": "{{url}}/api/business/repairserviceorder/?receipt_date=2018-06-19",
  4972. "folder": "4560df61-c6be-e868-4dcb-d9c518d0ed6c",
  4973. "queryParams": [
  4974. {
  4975. "key": "receipt_date",
  4976. "value": "2018-06-19",
  4977. "equals": true,
  4978. "description": "",
  4979. "enabled": true
  4980. }
  4981. ],
  4982. "preRequestScript": null,
  4983. "pathVariables": {},
  4984. "pathVariableData": [],
  4985. "method": "GET",
  4986. "data": null,
  4987. "dataMode": "params",
  4988. "version": 2,
  4989. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nvar jsonData = JSON.parse(responseBody);\n\n\n\npostman.setEnvironmentVariable(\"repairservice_id\", jsonData.results[0].id);",
  4990. "currentHelper": "normal",
  4991. "helperAttributes": "{}",
  4992. "time": 1530341399699,
  4993. "name": "02_get_business_repairserviceorder",
  4994. "description": "",
  4995. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  4996. "responses": [],
  4997. "isFromCollection": true,
  4998. "timestamp": null
  4999. },
  5000. {
  5001. "id": "e2df20b4-1698-2c3a-5a1b-14bb437554c6",
  5002. "headers": "Authorization: Rong {{rongtoken}}\n",
  5003. "headerData": [
  5004. {
  5005. "key": "Authorization",
  5006. "value": "Rong {{rongtoken}}",
  5007. "enabled": true,
  5008. "description": ""
  5009. }
  5010. ],
  5011. "url": "{{url}}/api/basic/carcategory/",
  5012. "folder": "a57764df-8558-a6a8-70ae-f05b02dcb13f",
  5013. "queryParams": [],
  5014. "preRequestScript": null,
  5015. "pathVariables": {},
  5016. "pathVariableData": [],
  5017. "method": "GET",
  5018. "data": null,
  5019. "dataMode": "params",
  5020. "version": 2,
  5021. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n\nif(tests[\"Status code is 200\"]){\n \n var jsonData = JSON.parse(responseBody);\n postman.setEnvironmentVariable(\"carcategory_id01\", jsonData[0].i);\n postman.setEnvironmentVariable(\"carcategory_id01_id01\", jsonData[0].c[0].i);\n postman.setEnvironmentVariable(\"carcategory_id01_id01_id01\", jsonData[0].c[0].c[0].i);\n postman.setEnvironmentVariable(\"carcategory_id01_id01_id01_id01\", jsonData[0].c[0].c[0].c[0].i);\n \n}\n",
  5022. "currentHelper": "normal",
  5023. "helperAttributes": "{}",
  5024. "time": 1532072406835,
  5025. "name": "get_basic_carcategory",
  5026. "description": "",
  5027. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5028. "responses": [],
  5029. "timestamp": null
  5030. },
  5031. {
  5032. "id": "e301ffb0-20d6-173a-7655-7c1a3fc7cce2",
  5033. "headers": "Authorization: Rong {{rongtoken}}\n",
  5034. "headerData": [
  5035. {
  5036. "key": "Authorization",
  5037. "value": "Rong {{rongtoken}}",
  5038. "enabled": true,
  5039. "description": ""
  5040. }
  5041. ],
  5042. "url": "{{url}}/api/basic/car/?code_contains={{test_car_code}}&areashort={{test_areashort}}&t={{$timestamp}}",
  5043. "folder": "53139a4f-0098-fcf8-5fa2-d0ec627db9af",
  5044. "queryParams": [
  5045. {
  5046. "key": "code_contains",
  5047. "value": "{{test_car_code}}",
  5048. "equals": true,
  5049. "description": "",
  5050. "enabled": true
  5051. },
  5052. {
  5053. "key": "areashort",
  5054. "value": "{{test_areashort}}",
  5055. "equals": true,
  5056. "description": "",
  5057. "enabled": true
  5058. },
  5059. {
  5060. "key": "t",
  5061. "value": "{{$timestamp}}",
  5062. "equals": true,
  5063. "description": "",
  5064. "enabled": true
  5065. }
  5066. ],
  5067. "preRequestScript": null,
  5068. "pathVariables": {},
  5069. "pathVariableData": [],
  5070. "method": "GET",
  5071. "data": null,
  5072. "dataMode": "params",
  5073. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\n",
  5074. "currentHelper": "normal",
  5075. "helperAttributes": "{}",
  5076. "time": 1531288768154,
  5077. "name": "03_get_basic_car_params",
  5078. "description": "",
  5079. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5080. "responses": [],
  5081. "timestamp": null
  5082. },
  5083. {
  5084. "id": "e388191c-5b34-784c-3421-731681f03358",
  5085. "headers": "Authorization: Rong {{rongtoken}}\n",
  5086. "headerData": [
  5087. {
  5088. "key": "Authorization",
  5089. "value": "Rong {{rongtoken}}",
  5090. "enabled": true,
  5091. "description": ""
  5092. }
  5093. ],
  5094. "url": "{{url}}/api/invoicing/salesordercount/?type=2&from_time=2018-06-14&to_time=2018-06-14",
  5095. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  5096. "queryParams": [
  5097. {
  5098. "key": "type",
  5099. "value": "2",
  5100. "equals": true,
  5101. "description": "",
  5102. "enabled": true
  5103. },
  5104. {
  5105. "key": "from_time",
  5106. "value": "2018-06-14",
  5107. "equals": true,
  5108. "description": "",
  5109. "enabled": true
  5110. },
  5111. {
  5112. "key": "to_time",
  5113. "value": "2018-06-14",
  5114. "equals": true,
  5115. "description": "",
  5116. "enabled": true
  5117. }
  5118. ],
  5119. "preRequestScript": null,
  5120. "pathVariables": {},
  5121. "pathVariableData": [],
  5122. "method": "GET",
  5123. "data": null,
  5124. "dataMode": "params",
  5125. "version": 2,
  5126. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  5127. "currentHelper": "normal",
  5128. "helperAttributes": "{}",
  5129. "time": 1530687538328,
  5130. "name": "07_get_capital_salesordercount_day",
  5131. "description": "",
  5132. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5133. "responses": [],
  5134. "timestamp": null
  5135. },
  5136. {
  5137. "id": "e8d34f46-708d-c063-7578-1f0ffd9ca862",
  5138. "headers": "Authorization: Rong {{rongtoken}}\n",
  5139. "headerData": [
  5140. {
  5141. "key": "Authorization",
  5142. "value": "Rong {{rongtoken}}",
  5143. "enabled": true,
  5144. "description": ""
  5145. }
  5146. ],
  5147. "url": "{{url}}/api/vipmember/vipmemberinfo/",
  5148. "folder": "971e459b-531d-9149-561c-f88b91970576",
  5149. "queryParams": [],
  5150. "preRequestScript": null,
  5151. "pathVariables": {},
  5152. "pathVariableData": [],
  5153. "method": "GET",
  5154. "data": null,
  5155. "dataMode": "params",
  5156. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;\nif(tests[\"Status code is 200\"]){\n var jsonData = JSON.parse(responseBody);\n \n postman.setEnvironmentVariable(\"vip_id\", jsonData.results[0].id);\n}",
  5157. "currentHelper": "normal",
  5158. "helperAttributes": "{}",
  5159. "time": 1529650606415,
  5160. "name": "01_get_vipmember_viplist",
  5161. "description": null,
  5162. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5163. "isFromCollection": true,
  5164. "timestamp": null,
  5165. "collectionRequestId": "e8d34f46-708d-c063-7578-1f0ffd9ca862"
  5166. },
  5167. {
  5168. "id": "ec502a5c-f8ef-5151-f29f-219381d4d3b9",
  5169. "headers": "Authorization: Rong {{rongtoken}}\n",
  5170. "headerData": [
  5171. {
  5172. "key": "Authorization",
  5173. "value": "Rong {{rongtoken}}",
  5174. "enabled": true,
  5175. "description": ""
  5176. }
  5177. ],
  5178. "url": "{{url}}/api/invoicing/purchaseordercount/?type=2&month=6&year=2018",
  5179. "folder": "1e29e83b-5f04-31b3-6f14-a304fbe9b690",
  5180. "queryParams": [
  5181. {
  5182. "key": "type",
  5183. "value": "2",
  5184. "equals": true,
  5185. "description": "",
  5186. "enabled": true
  5187. },
  5188. {
  5189. "key": "month",
  5190. "value": "6",
  5191. "equals": true,
  5192. "description": "",
  5193. "enabled": true
  5194. },
  5195. {
  5196. "key": "year",
  5197. "value": "2018",
  5198. "equals": true,
  5199. "description": "",
  5200. "enabled": true
  5201. }
  5202. ],
  5203. "preRequestScript": null,
  5204. "pathVariables": {},
  5205. "pathVariableData": [],
  5206. "method": "GET",
  5207. "data": null,
  5208. "dataMode": "params",
  5209. "version": 2,
  5210. "tests": "tests[\"Status code is 200\"] = responseCode.code === 200;",
  5211. "currentHelper": "normal",
  5212. "helperAttributes": "{}",
  5213. "time": 1530671977821,
  5214. "name": "06_get_capital_purchaseordercount_month",
  5215. "description": "",
  5216. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5217. "responses": [],
  5218. "isFromCollection": true,
  5219. "timestamp": null
  5220. },
  5221. {
  5222. "id": "fc8443e8-d8d7-f07e-7984-67b97f3c38a3",
  5223. "headers": "Authorization: Rong {{rongtoken}}\nContent-Type: application/json\n",
  5224. "headerData": [
  5225. {
  5226. "key": "Authorization",
  5227. "value": "Rong {{rongtoken}}",
  5228. "enabled": true,
  5229. "description": ""
  5230. },
  5231. {
  5232. "key": "Content-Type",
  5233. "value": "application/json",
  5234. "enabled": true,
  5235. "description": ""
  5236. }
  5237. ],
  5238. "url": "{{url}}/api/vipmember/packagecard/",
  5239. "folder": "cd656873-5d45-9402-5b7f-47d6cc24c3a0",
  5240. "queryParams": [],
  5241. "preRequestScript": null,
  5242. "pathVariables": {},
  5243. "pathVariableData": [],
  5244. "method": "POST",
  5245. "data": [],
  5246. "dataMode": "raw",
  5247. "tests": "tests[\"Successful POST request\"] = responseCode.code === 201 || responseCode.code === 202;\nvar jsonData = JSON.parse(responseBody);\n\n\n\npostman.setEnvironmentVariable(\"test_packagecard_id\", jsonData.id);",
  5248. "currentHelper": "normal",
  5249. "helperAttributes": "{}",
  5250. "time": 1531988870463,
  5251. "name": "01_post_vipmember_packsgecard",
  5252. "description": "",
  5253. "collectionId": "63176a49-49a7-3c33-64ef-452ff8c16982",
  5254. "responses": [],
  5255. "timestamp": null,
  5256. "rawModeData": "{\r\n\t\"begin_date\": \"2018-07-19\",\r\n\t\"end_date\": \"2019-07-19\",\r\n\t\"state\": 1,\r\n\t\"opencard_amount\":{{test_card_price}},\r\n\t\"shop\": 2,\r\n\t\"vipmember_info\": {{test_vipmember_id}},\r\n\t\"agent\": {{test_userid}},\r\n\t\"package\": {{test_package_id}},\r\n\t\"car\": {{test_car_id}},\r\n\t\"car_code\": \"{{test_car_code}}\",\r\n\t\"phone_number\": \"{{test_phone_number}}\",\r\n\t\"areashort\": {{test_areashort}},\r\n\t\"vip_name\": \"{{test_vip_name}}\"\r\n}"
  5257. }
  5258. ]
  5259. }