Guest User

Untitled

a guest
May 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. import { HnrContent } from '../models/hnrcontent.interface';
  2.  
  3. const hnrcontentModal: HnrContent[] = [
  4. {
  5. itemId: "1T",
  6. topic: "Valor Hora",
  7. items: [
  8. {
  9. valueId: 1,
  10. description: "Despesas Correntes",
  11. value: 0,
  12. formattedValue: '0,00'
  13. },
  14. {
  15. valueId: 2,
  16. description: "VH Arquiteto",
  17. value: 0,
  18. formattedValue: '0,00'
  19. },
  20. {
  21. valueId: 3,
  22. description: "VH Estag./Funcion.",
  23. value: 0,
  24. formattedValue: '0,00'
  25. },
  26. {
  27. valueId: 4,
  28. description: "VH Escritório",
  29. value: 0,
  30. formattedValue: '0,00'
  31. },
  32. {
  33. valueId: 5,
  34. description: "Valor Hora",
  35. value: 0,
  36. formattedValue: '0,00'
  37. },
  38. ]
  39. },
  40. {
  41. itemId: "2T",
  42. topic: "Somatório",
  43. items: [
  44. {
  45. valueId:1,
  46. description:"Deslocamento",
  47. value:0,
  48. formattedValue:'0D'
  49. },
  50. {
  51. valueId:2,
  52. description:"Hora Arquiteto",
  53. value:0,
  54. formattedValue:'00:00'
  55. },
  56. {
  57. valueId:3,
  58. description:"Hora Estagiário",
  59. value:0,
  60. formattedValue:'00:00'
  61. },
  62. {
  63. valueId:4,
  64. description:"Hora Escritório",
  65. value:0,
  66. formattedValue:'00:00'
  67. },
  68. ]
  69. },
  70. {
  71. itemId: "3T",
  72. topic: "Subtotal",
  73. items: [
  74. {
  75. valueId:1,
  76. description:"Deslocamento",
  77. value:0,
  78. formattedValue:'0,00'
  79. },
  80. {
  81. valueId:2,
  82. description:"Hora Arquiteto",
  83. value:0,
  84. formattedValue:'0,00'
  85. },
  86. {
  87. valueId:3,
  88. description:"Hora Estagiário",
  89. value:0,
  90. formattedValue:'0,00'
  91. },
  92. {
  93. valueId:4,
  94. description:"Hora Escritório",
  95. value:0,
  96. formattedValue:'0,00'
  97. },
  98. ]
  99. },
  100. {
  101. itemId: "4T",
  102. topic: "Despesas do Serviço",
  103. items: [
  104. {
  105. valueId:1,
  106. description:"Total",
  107. value:0,
  108. formattedValue:'0,00'
  109. },
  110. ]
  111. },
  112. {
  113. itemId: "5T",
  114. topic: "Risco de Retrabalho",
  115. items: [
  116. {
  117. valueId: 1,
  118. description: "15% do total da hora do arquiteto",
  119. value: 0,
  120. formattedValue: '0,00'
  121. },
  122. ]
  123. },
  124. {
  125. itemId: "6T",
  126. topic: "Lucro do Serviço",
  127. items: [
  128. {
  129. valueId: 1,
  130. description: "25% do total de despesas + risco",
  131. value: 0,
  132. formattedValue: '0,00'
  133. },
  134. ]
  135. },
  136. {
  137. itemId: "7T",
  138. topic: "HONORÁRIOS PROFISSIONAIS",
  139. items: [
  140. {
  141. valueId: 1,
  142. description: "Total",
  143. value: 0,
  144. formattedValue: '0,00'
  145. },
  146. ]
  147. },
  148. ]
  149.  
  150. export const HNRCONTENT_MODAL = hnrcontentModal;
Add Comment
Please, Sign In to add comment