Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. var exclusiveCategoryId = db.getCollection('categories').findOne({name: "Exclusive", status: "ACTIVE"})._id;
  2. var mercedesBenzG500Id = db.getCollection('manufactureinfos').findOne({name: "Mercedes-Benz G500", status: "ACTIVE"})._id;
  3.  
  4. db.packagetemplates.insert({
  5. "title": "30 дней",
  6. "type": "CUSTOM",
  7. "categories": [],
  8. "manufacturers": [mercedesBenzG500Id],
  9. "schedule": {
  10. "duration": {
  11. "minimum": 30,
  12. "maximum": 30
  13. }
  14. },
  15. "price" : {
  16. "amount" : 240000.0,
  17. "currency" : "RUB"
  18. },
  19. "features": {
  20. "rent" : {
  21. "source" : "PACKAGE",
  22. "price" : {
  23. "amount" : 8000.0,
  24. "currency" : "RUB"
  25. }
  26. },
  27. "delivery" : {
  28. "source" : "PACKAGE",
  29. "price" : {
  30. "amount" : 0.0,
  31. "currency" : "RUB"
  32. }
  33. },
  34. "washing" : {
  35. "prices" : [
  36. {
  37. "price" : {
  38. "amount" : 800.0,
  39. "currency" : "RUB"
  40. }
  41. }
  42. ]
  43. },
  44. "unlimitedMileage" : {
  45. "included" : false
  46. },
  47. "carReplace": {
  48. "filter": "ALL",
  49. "categories": [],
  50. "prices": []
  51. }
  52. },
  53. "sorting" : 100.0,
  54. "status" : "ACTIVE",
  55. "updatedAt" : new Date(),
  56. "createdAt" : new Date(),
  57. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement