Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. var shop1 = {
  2. id: 1,
  3. staff: 10,
  4. maxPersonal: 17,
  5. storage: 100,
  6. managers: [
  7. {
  8. id: 1,
  9. name: "Irina",
  10. salary: 5030,
  11. conversion: 45
  12. },
  13. {
  14. id: 2,
  15. name: "Vlad",
  16. salary: 4000,
  17. conversion: 73
  18. },
  19. {
  20. id: 3,
  21. name: "Lena",
  22. salary: 6000,
  23. conversion: 62
  24. }
  25. ],
  26. goods: [
  27. {
  28. id: 1,
  29. name: "iPhone",
  30. popularity: 20,
  31. price: 100,
  32. inStock: 41
  33. },
  34. {
  35. id: 2,
  36. name: "Samsung",
  37. popularity: 40,
  38. price: 150,
  39. inStock: 23
  40. },
  41. {
  42. id: 3,
  43. name: "HTC",
  44. popularity: 10,
  45. price: 200,
  46. inStock: 70
  47. }
  48. ]
  49. };
  50.  
  51.  
  52. var shop2 = {
  53. id: 2,
  54. staff: 7,
  55. maxPersonal: 12,
  56. storage: 70,
  57. managers: [
  58. {
  59. id: 1,
  60. name: "Petya",
  61. salary: 2000,
  62. conversion: 32
  63. },
  64. {
  65. id: 2,
  66. name: "Anya",
  67. salary: 5500,
  68. conversion: 77
  69. }
  70. ],
  71. goods: [
  72. {
  73. id: 1,
  74. name: "iPhone",
  75. popularity: 60,
  76. price: 140,
  77. inStock: 13
  78. },
  79. {
  80. id: 2,
  81. name: "Samsung",
  82. popularity: 20,
  83. price: 70,
  84. inStock: 10
  85. },
  86. {
  87. id: 3,
  88. name: "HTC",
  89. popularity: 15,
  90. price: 50,
  91. inStock: 20
  92. }
  93. ]
  94. };
  95.  
  96. var shop3 = {
  97. id: 3,
  98. staff: 4,
  99. maxPersonal: 7,
  100. storage: 40,
  101. managers: [
  102. {
  103. id: 6,
  104. name: "Marina",
  105. salary: 16300,
  106. conversion: 50
  107. },
  108. {
  109. id: 2,
  110. name: "Vlad",
  111. salary: 7000,
  112. conversion: 40
  113. }
  114. ],
  115. goods: [
  116. {
  117. id: 1,
  118. name: "iPhone",
  119. popularity: 63,
  120. price: 210,
  121. inStock: 12
  122. },
  123. {
  124. id: 2,
  125. name: "Samsung",
  126. popularity: 34,
  127. price: 130,
  128. inStock: 14
  129. },
  130. {
  131. id: 3,
  132. name: "HTC",
  133. popularity: 23,
  134. price: 100,
  135. inStock: 8
  136. }
  137. ]
  138. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement