data-grid-workspace 0.0.120

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (325) hide show
  1. package/.editorconfig +16 -0
  2. package/.vscode/extensions.json +4 -0
  3. package/.vscode/launch.json +20 -0
  4. package/.vscode/tasks.json +42 -0
  5. package/README.md +265 -0
  6. package/angular.json +144 -0
  7. package/backup-04112025/projects/data-grid/README.md +24 -0
  8. package/backup-04112025/projects/data-grid/ng-package.json +18 -0
  9. package/backup-04112025/projects/data-grid/package-lock.json +25 -0
  10. package/backup-04112025/projects/data-grid/package.json +23 -0
  11. package/backup-04112025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  12. package/backup-04112025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  13. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5356 -0
  14. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2005 -0
  15. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  16. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5368 -0
  17. package/backup-04112025/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  18. package/backup-04112025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  19. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  20. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  21. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  22. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  23. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  24. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  25. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  26. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  27. package/backup-04112025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  28. package/backup-04112025/projects/data-grid/src/lib/services/common.service.ts +278 -0
  29. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  30. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  31. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  32. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  33. package/backup-04112025/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  34. package/backup-04112025/projects/data-grid/src/lib/services/export.service.ts +189 -0
  35. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  36. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  37. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  38. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  39. package/backup-04112025/projects/data-grid/src/public-api.ts +6 -0
  40. package/backup-04112025/projects/data-grid/src/typings.d.ts +4 -0
  41. package/backup-04112025/projects/data-grid/tsconfig.lib.json +19 -0
  42. package/backup-04112025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  43. package/backup-04112025/projects/data-grid/tsconfig.spec.json +14 -0
  44. package/backup-29-10-2025/projects/data-grid/README.md +24 -0
  45. package/backup-29-10-2025/projects/data-grid/ng-package.json +10 -0
  46. package/backup-29-10-2025/projects/data-grid/package-lock.json +25 -0
  47. package/backup-29-10-2025/projects/data-grid/package.json +12 -0
  48. package/backup-29-10-2025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  49. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  50. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5236 -0
  51. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +1717 -0
  52. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  53. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5092 -0
  54. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/statuses.ts +47 -0
  55. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  56. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  57. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  58. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  59. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  60. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  61. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  62. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  63. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  64. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  65. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.ts +274 -0
  66. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  67. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.ts +251 -0
  68. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  69. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  70. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  71. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  72. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  73. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  74. package/backup-29-10-2025/projects/data-grid/src/public-api.ts +6 -0
  75. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.json +16 -0
  76. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  77. package/backup-29-10-2025/projects/data-grid/tsconfig.spec.json +14 -0
  78. package/image.png +0 -0
  79. package/package.json +52 -0
  80. package/projects/data-grid/README.md +324 -0
  81. package/projects/data-grid/ng-package.json +19 -0
  82. package/projects/data-grid/package-lock.json +25 -0
  83. package/projects/data-grid/package.json +38 -0
  84. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
  85. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
  86. package/projects/data-grid/src/lib/assets/fonts/Inter/OFL.txt +93 -0
  87. package/projects/data-grid/src/lib/assets/fonts/Inter/README.txt +118 -0
  88. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Black.ttf +0 -0
  89. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BlackItalic.ttf +0 -0
  90. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Bold.ttf +0 -0
  91. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BoldItalic.ttf +0 -0
  92. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBold.ttf +0 -0
  93. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBoldItalic.ttf +0 -0
  94. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLight.ttf +0 -0
  95. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLightItalic.ttf +0 -0
  96. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Italic.ttf +0 -0
  97. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Light.ttf +0 -0
  98. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-LightItalic.ttf +0 -0
  99. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Medium.ttf +0 -0
  100. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-MediumItalic.ttf +0 -0
  101. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Regular.ttf +0 -0
  102. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf +0 -0
  103. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBoldItalic.ttf +0 -0
  104. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Thin.ttf +0 -0
  105. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ThinItalic.ttf +0 -0
  106. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Black.ttf +0 -0
  107. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BlackItalic.ttf +0 -0
  108. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Bold.ttf +0 -0
  109. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BoldItalic.ttf +0 -0
  110. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBold.ttf +0 -0
  111. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBoldItalic.ttf +0 -0
  112. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLight.ttf +0 -0
  113. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLightItalic.ttf +0 -0
  114. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Italic.ttf +0 -0
  115. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Light.ttf +0 -0
  116. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-LightItalic.ttf +0 -0
  117. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Medium.ttf +0 -0
  118. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-MediumItalic.ttf +0 -0
  119. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Regular.ttf +0 -0
  120. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf +0 -0
  121. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBoldItalic.ttf +0 -0
  122. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Thin.ttf +0 -0
  123. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ThinItalic.ttf +0 -0
  124. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Black.ttf +0 -0
  125. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BlackItalic.ttf +0 -0
  126. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Bold.ttf +0 -0
  127. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BoldItalic.ttf +0 -0
  128. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBold.ttf +0 -0
  129. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf +0 -0
  130. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLight.ttf +0 -0
  131. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLightItalic.ttf +0 -0
  132. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Italic.ttf +0 -0
  133. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Light.ttf +0 -0
  134. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-LightItalic.ttf +0 -0
  135. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Medium.ttf +0 -0
  136. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-MediumItalic.ttf +0 -0
  137. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Regular.ttf +0 -0
  138. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBold.ttf +0 -0
  139. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBoldItalic.ttf +0 -0
  140. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Thin.ttf +0 -0
  141. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ThinItalic.ttf +0 -0
  142. package/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  143. package/projects/data-grid/src/lib/data-grid/animations.ts +267 -0
  144. package/projects/data-grid/src/lib/data-grid/data-grid.component.html +5759 -0
  145. package/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2154 -0
  146. package/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  147. package/projects/data-grid/src/lib/data-grid/data-grid.component.ts +6773 -0
  148. package/projects/data-grid/src/lib/data-grid/data-grid.tokens.ts +4 -0
  149. package/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  150. package/projects/data-grid/src/lib/data-grid.module.ts +23 -0
  151. package/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  152. package/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  153. package/projects/data-grid/src/lib/directives/cell-editor.directive.spec.ts +11 -0
  154. package/projects/data-grid/src/lib/directives/cell-editor.directive.ts +88 -0
  155. package/projects/data-grid/src/lib/directives/cell-render-init.directive.spec.ts +11 -0
  156. package/projects/data-grid/src/lib/directives/cell-render-init.directive.ts +98 -0
  157. package/projects/data-grid/src/lib/directives/cellHost.directive.spec.ts +11 -0
  158. package/projects/data-grid/src/lib/directives/cellHost.directive.ts +10 -0
  159. package/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  160. package/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  161. package/projects/data-grid/src/lib/interfaces/data-grid-config.ts.ts +136 -0
  162. package/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  163. package/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  164. package/projects/data-grid/src/lib/pipes/format-currency.pipe.spec.ts +11 -0
  165. package/projects/data-grid/src/lib/pipes/format-currency.pipe.ts +59 -0
  166. package/projects/data-grid/src/lib/pipes/format-index.pipe.spec.ts +11 -0
  167. package/projects/data-grid/src/lib/pipes/format-index.pipe.ts +20 -0
  168. package/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  169. package/projects/data-grid/src/lib/services/cell-selection.service.ts +372 -0
  170. package/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  171. package/projects/data-grid/src/lib/services/common.service.ts +395 -0
  172. package/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  173. package/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  174. package/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  175. package/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  176. package/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  177. package/projects/data-grid/src/lib/services/export.service.ts +189 -0
  178. package/projects/data-grid/src/lib/services/row-action.service.ts +203 -0
  179. package/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  180. package/projects/data-grid/src/lib/services/split-columns.service.ts +168 -0
  181. package/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  182. package/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  183. package/projects/data-grid/src/lib/styles/font-style.css +34 -0
  184. package/projects/data-grid/src/public-api.ts +8 -0
  185. package/projects/data-grid/src/typings.d.ts +4 -0
  186. package/projects/data-grid/tsconfig.lib.json +19 -0
  187. package/projects/data-grid/tsconfig.lib.prod.json +10 -0
  188. package/projects/data-grid/tsconfig.spec.json +14 -0
  189. package/src/app/app.component.html +61 -0
  190. package/src/app/app.component.scss +1 -0
  191. package/src/app/app.component.spec.ts +27 -0
  192. package/src/app/app.component.ts +166 -0
  193. package/src/app/app.module.ts +33 -0
  194. package/src/app/dropdown-filter/dropdown-filter.component.css +122 -0
  195. package/src/app/dropdown-filter/dropdown-filter.component.html +118 -0
  196. package/src/app/dropdown-filter/dropdown-filter.component.spec.ts +28 -0
  197. package/src/app/dropdown-filter/dropdown-filter.component.ts +139 -0
  198. package/src/app/status-cell/status-cell.component.css +0 -0
  199. package/src/app/status-cell/status-cell.component.html +1 -0
  200. package/src/app/status-cell/status-cell.component.spec.ts +28 -0
  201. package/src/app/status-cell/status-cell.component.ts +18 -0
  202. package/src/app/status-cell-editor/status-cell-editor.component.css +0 -0
  203. package/src/app/status-cell-editor/status-cell-editor.component.html +12 -0
  204. package/src/app/status-cell-editor/status-cell-editor.component.spec.ts +28 -0
  205. package/src/app/status-cell-editor/status-cell-editor.component.ts +77 -0
  206. package/src/app/sub-category-cell-component/sub-category-cell-component.component.css +6 -0
  207. package/src/app/sub-category-cell-component/sub-category-cell-component.component.html +3 -0
  208. package/src/app/sub-category-cell-component/sub-category-cell-component.component.spec.ts +28 -0
  209. package/src/app/sub-category-cell-component/sub-category-cell-component.component.ts +26 -0
  210. package/src/app/testing-data/api-translation/data.ts +1929 -0
  211. package/src/app/testing-data/assets-category/data.ts +1410 -0
  212. package/src/app/testing-data/assets-list/data.ts +26633 -0
  213. package/src/app/testing-data/invoices/data.ts +3698 -0
  214. package/src/app/testing-data/manage-employee/data.ts +83205 -0
  215. package/src/app/testing-data/single-day-timesheet/data.ts +4450 -0
  216. package/src/app/testing-data/task-management/tasks.ts +2536 -0
  217. package/src/app/testing-data/translation.ts +135580 -0
  218. package/src/app/testing-data/writeup/data.ts +29506 -0
  219. package/src/assets/.gitkeep +0 -0
  220. package/src/assets/data-grid/document-icons/Newxlsx.svg +19 -0
  221. package/src/assets/data-grid/document-icons/Presentation.pptx +0 -0
  222. package/src/assets/data-grid/document-icons/Untitled spreadsheet.xlsx +0 -0
  223. package/src/assets/data-grid/document-icons/bell-icon.svg +31 -0
  224. package/src/assets/data-grid/document-icons/blank sheet ppt.pptx +0 -0
  225. package/src/assets/data-grid/document-icons/blank-docs-file.docx +0 -0
  226. package/src/assets/data-grid/document-icons/csv.svg +34 -0
  227. package/src/assets/data-grid/document-icons/doc.svg +34 -0
  228. package/src/assets/data-grid/document-icons/document-download.svg +18 -0
  229. package/src/assets/data-grid/document-icons/document-upload.svg +6 -0
  230. package/src/assets/data-grid/document-icons/docx.svg +35 -0
  231. package/src/assets/data-grid/document-icons/downloadDOC.svg +7 -0
  232. package/src/assets/data-grid/document-icons/edit-doc.svg +6 -0
  233. package/src/assets/data-grid/document-icons/empty-trash.svg +47 -0
  234. package/src/assets/data-grid/document-icons/jpeg.svg +40 -0
  235. package/src/assets/data-grid/document-icons/jpg.svg +24 -0
  236. package/src/assets/data-grid/document-icons/loading gif.gif +0 -0
  237. package/src/assets/data-grid/document-icons/more-Icon.svg +19 -0
  238. package/src/assets/data-grid/document-icons/mp4.svg +28 -0
  239. package/src/assets/data-grid/document-icons/my-request-empty.svg +37 -0
  240. package/src/assets/data-grid/document-icons/newDoc.svg +16 -0
  241. package/src/assets/data-grid/document-icons/newppt.svg +16 -0
  242. package/src/assets/data-grid/document-icons/overDue.svg +8 -0
  243. package/src/assets/data-grid/document-icons/ownerShare.svg +13 -0
  244. package/src/assets/data-grid/document-icons/pdf.svg +36 -0
  245. package/src/assets/data-grid/document-icons/permanantDelete.svg +4 -0
  246. package/src/assets/data-grid/document-icons/png.svg +53 -0
  247. package/src/assets/data-grid/document-icons/ppt.svg +24 -0
  248. package/src/assets/data-grid/document-icons/pptx.svg +25 -0
  249. package/src/assets/data-grid/document-icons/restore-delete.svg +4 -0
  250. package/src/assets/data-grid/document-icons/restoreTrash.svg +10 -0
  251. package/src/assets/data-grid/document-icons/send-2.svg +16 -0
  252. package/src/assets/data-grid/document-icons/send-request-empty.svg +41 -0
  253. package/src/assets/data-grid/document-icons/shareIcon.svg +6 -0
  254. package/src/assets/data-grid/document-icons/sharedFileIcon.svg +6 -0
  255. package/src/assets/data-grid/document-icons/sharedriveempty.svg +40 -0
  256. package/src/assets/data-grid/document-icons/task-square.svg +25 -0
  257. package/src/assets/data-grid/document-icons/trash-01.svg +3 -0
  258. package/src/assets/data-grid/document-icons/trashRestore.svg +4 -0
  259. package/src/assets/data-grid/document-icons/txt.svg +34 -0
  260. package/src/assets/data-grid/document-icons/uploadFile.svg +16 -0
  261. package/src/assets/data-grid/document-icons/uploadfilefolder.svg +40 -0
  262. package/src/assets/data-grid/document-icons/xls.svg +34 -0
  263. package/src/assets/data-grid/document-icons/xlsx.svg +36 -0
  264. package/src/assets/data-grid/icons/Buttons.svg +3 -0
  265. package/src/assets/data-grid/icons/High.svg +3 -0
  266. package/src/assets/data-grid/icons/Low.svg +3 -0
  267. package/src/assets/data-grid/icons/Medium.svg +3 -0
  268. package/src/assets/data-grid/icons/Vector.svg +3 -0
  269. package/src/assets/data-grid/icons/arrow-counterclockwise.svg +4 -0
  270. package/src/assets/data-grid/icons/arrow-down.svg +3 -0
  271. package/src/assets/data-grid/icons/arrow-left.svg +3 -0
  272. package/src/assets/data-grid/icons/arrow-right-solid-full.svg +1 -0
  273. package/src/assets/data-grid/icons/arrow-right.svg +10 -0
  274. package/src/assets/data-grid/icons/arrow-up.svg +3 -0
  275. package/src/assets/data-grid/icons/arrows-angle-expand.svg +3 -0
  276. package/src/assets/data-grid/icons/arrows-expand-vertical.svg +3 -0
  277. package/src/assets/data-grid/icons/arrows-move.svg +3 -0
  278. package/src/assets/data-grid/icons/attachments.svg +3 -0
  279. package/src/assets/data-grid/icons/ban.svg +3 -0
  280. package/src/assets/data-grid/icons/check-blue.svg +3 -0
  281. package/src/assets/data-grid/icons/chevron-down.svg +3 -0
  282. package/src/assets/data-grid/icons/chevron-right.svg +3 -0
  283. package/src/assets/data-grid/icons/comments.svg +3 -0
  284. package/src/assets/data-grid/icons/cross-primary.svg +3 -0
  285. package/src/assets/data-grid/icons/dash.svg +3 -0
  286. package/src/assets/data-grid/icons/delete.svg +3 -0
  287. package/src/assets/data-grid/icons/diagram-3.svg +3 -0
  288. package/src/assets/data-grid/icons/download.svg +5 -0
  289. package/src/assets/data-grid/icons/edit.svg +3 -0
  290. package/src/assets/data-grid/icons/expend.svg +3 -0
  291. package/src/assets/data-grid/icons/eye-cross.svg +10 -0
  292. package/src/assets/data-grid/icons/eye.svg +4 -0
  293. package/src/assets/data-grid/icons/filter-2.svg +5 -0
  294. package/src/assets/data-grid/icons/grid-3x2-gap.svg +3 -0
  295. package/src/assets/data-grid/icons/grip-vertical.svg +8 -0
  296. package/src/assets/data-grid/icons/horizontal-dots.svg +5 -0
  297. package/src/assets/data-grid/icons/justify.svg +3 -0
  298. package/src/assets/data-grid/icons/layout-three-columns.svg +3 -0
  299. package/src/assets/data-grid/icons/list-details.svg +8 -0
  300. package/src/assets/data-grid/icons/minimize.svg +4 -0
  301. package/src/assets/data-grid/icons/pin-blue.svg +5 -0
  302. package/src/assets/data-grid/icons/pin-left.svg +3 -0
  303. package/src/assets/data-grid/icons/pin-right.svg +3 -0
  304. package/src/assets/data-grid/icons/pin.svg +5 -0
  305. package/src/assets/data-grid/icons/plus.svg +3 -0
  306. package/src/assets/data-grid/icons/resize-handle.svg +3 -0
  307. package/src/assets/data-grid/icons/search.svg +3 -0
  308. package/src/assets/data-grid/icons/settings-2.svg +3 -0
  309. package/src/assets/data-grid/icons/sort-asc.svg +4 -0
  310. package/src/assets/data-grid/icons/sort-desc.svg +4 -0
  311. package/src/assets/data-grid/icons/star-blue.svg +3 -0
  312. package/src/assets/data-grid/icons/star.svg +3 -0
  313. package/src/assets/data-grid/icons/table-2.svg +3 -0
  314. package/src/assets/data-grid/icons/three-dots-vertical.svg +5 -0
  315. package/src/assets/data-grid/icons/trash-red.svg +7 -0
  316. package/src/assets/data-grid/icons/ui-checks-grid.svg +3 -0
  317. package/src/assets/data-grid/icons/x.svg +3 -0
  318. package/src/assets/data-grid/icons/zoom-charge.svg +4 -0
  319. package/src/favicon.ico +0 -0
  320. package/src/index.html +19 -0
  321. package/src/main.ts +7 -0
  322. package/src/styles.scss +3 -0
  323. package/tsconfig.app.json +14 -0
  324. package/tsconfig.json +44 -0
  325. package/tsconfig.spec.json +14 -0
@@ -0,0 +1,3698 @@
1
+ export const result = {
2
+ "config": {
3
+ "actions": [
4
+ "edit",
5
+ "archive",
6
+ "unarchive"
7
+ ],
8
+ "columns": [
9
+ {
10
+ "_id": "68cd0cb47789f8be9afd5766",
11
+ "field": "invoice_image",
12
+ "query": {
13
+ "first_condition": null,
14
+ "first_value": null,
15
+ "condition": null,
16
+ "second_condition": null,
17
+ "second_value": null,
18
+ "__typename": "queryType"
19
+ },
20
+ "header": "Attachment",
21
+ "is_search_able": false,
22
+ "is_amount": false,
23
+ "is_sortable": false,
24
+ "is_visible": true,
25
+ "search": null,
26
+ "type": "image",
27
+ is_editable: true,
28
+ isGroupable: false,
29
+ "filterValue": null,
30
+ "column_data": [],
31
+ "column_dropdown_value": null,
32
+ "__typename": "listingColumnsType"
33
+ },
34
+ {
35
+ "_id": "68cd0cb47789f8be9afd5767",
36
+ "field": "orderNumber",
37
+ "query": {
38
+ "first_condition": null,
39
+ "first_value": null,
40
+ "condition": null,
41
+ "second_condition": null,
42
+ "second_value": null,
43
+ "__typename": "queryType"
44
+ },
45
+ "header": "Invoice Number",
46
+ "is_search_able": true,
47
+ "is_amount": false,
48
+ "is_sortable": false,
49
+ "is_visible": true,
50
+ "search": null,
51
+ "type": "string",
52
+ "filterValue": null,
53
+ is_editable: true,
54
+ isGroupable: true,
55
+ "column_data": [],
56
+ "column_dropdown_value": null,
57
+ "__typename": "listingColumnsType"
58
+ },
59
+ {
60
+ "_id": "68cd0cb47789f8be9afd5768",
61
+ "field": "name",
62
+ "query": {
63
+ "first_condition": null,
64
+ "first_value": null,
65
+ "condition": null,
66
+ "second_condition": null,
67
+ "second_value": null,
68
+ "__typename": "queryType"
69
+ },
70
+ "header": "Name",
71
+ "is_search_able": true,
72
+ "is_amount": false,
73
+ "is_sortable": true,
74
+ "is_visible": true,
75
+ "search": null,
76
+ "type": "string",
77
+ is_editable: true,
78
+ isGroupable: true,
79
+ "filterValue": null,
80
+ "column_data": [],
81
+ "column_dropdown_value": null,
82
+ "__typename": "listingColumnsType"
83
+ },
84
+ {
85
+ "_id": "68cd0cb47789f8be9afd5769",
86
+ "field": "orderDate",
87
+ "query": {
88
+ "first_condition": null,
89
+ "first_value": null,
90
+ "condition": null,
91
+ "second_condition": null,
92
+ "second_value": null,
93
+ "__typename": "queryType"
94
+ },
95
+ "header": "Invoice Date",
96
+ "is_search_able": true,
97
+ "is_amount": false,
98
+ "is_sortable": true,
99
+ "is_visible": true,
100
+ "search": null,
101
+ "type": "date",
102
+ "filterValue": null,
103
+ is_editable: true,
104
+ isGroupable: true,
105
+ "column_data": [],
106
+ "column_dropdown_value": null,
107
+ "__typename": "listingColumnsType"
108
+ },
109
+ {
110
+ "_id": "68cd0cb47789f8be9afd576a",
111
+ "field": "vendor.name",
112
+ "query": {
113
+ "first_condition": null,
114
+ "first_value": null,
115
+ "condition": null,
116
+ "second_condition": null,
117
+ "second_value": null,
118
+ "__typename": "queryType"
119
+ },
120
+ "header": "Vendor",
121
+ "is_search_able": false,
122
+ "is_amount": false,
123
+ "is_sortable": false,
124
+ "is_visible": true,
125
+ "search": null,
126
+ "type": "dropdown",
127
+ is_editable: true,
128
+ isGroupable: true,
129
+ "filterValue": null,
130
+ "column_data": [],
131
+ "column_dropdown_value": [
132
+ {
133
+ "_id": "679cc333d4543aedfdf21940",
134
+ "value": "Ali Apple",
135
+ "__typename": "column_dropdown_value"
136
+ },
137
+ {
138
+ "_id": "670528fd4f0df6afaecb2a8d",
139
+ "value": "Choudhry Computers",
140
+ "__typename": "column_dropdown_value"
141
+ },
142
+ {
143
+ "_id": "670613074f0df6afaed83701",
144
+ "value": "Click Solution",
145
+ "__typename": "column_dropdown_value"
146
+ },
147
+ {
148
+ "_id": "6789f9807a50225e94778eff",
149
+ "value": "Computer & Laptops",
150
+ "__typename": "column_dropdown_value"
151
+ },
152
+ {
153
+ "_id": "670620ac4f0df6afaed960df",
154
+ "value": "Computer Iin",
155
+ "__typename": "column_dropdown_value"
156
+ },
157
+ {
158
+ "_id": "676a91461f87c1ce40e8841c",
159
+ "value": "FBR",
160
+ "__typename": "column_dropdown_value"
161
+ },
162
+ {
163
+ "_id": "67061f194f0df6afaed93669",
164
+ "value": "FM",
165
+ "__typename": "column_dropdown_value"
166
+ },
167
+ {
168
+ "_id": "670611374f0df6afaed81f2f",
169
+ "value": "IP",
170
+ "__typename": "column_dropdown_value"
171
+ },
172
+ {
173
+ "_id": "670655774f0df6afaee0ae88",
174
+ "value": "MR Technologies",
175
+ "__typename": "column_dropdown_value"
176
+ },
177
+ {
178
+ "_id": "67052c334f0df6afaecb63d1",
179
+ "value": "Muhammad Gulzar",
180
+ "__typename": "column_dropdown_value"
181
+ },
182
+ {
183
+ "_id": "6706126e4f0df6afaed8321e",
184
+ "value": "Paintex",
185
+ "__typename": "column_dropdown_value"
186
+ },
187
+ {
188
+ "_id": "6706613b4f0df6afaee15d02",
189
+ "value": "Ra Techonologes",
190
+ "__typename": "column_dropdown_value"
191
+ },
192
+ {
193
+ "_id": "67052d8a4f0df6afaecbbbfb",
194
+ "value": "Sakhawat Shah",
195
+ "__typename": "column_dropdown_value"
196
+ },
197
+ {
198
+ "_id": "6706189d4f0df6afaed8a1b6",
199
+ "value": "UK",
200
+ "__typename": "column_dropdown_value"
201
+ },
202
+ {
203
+ "_id": "67065ec74f0df6afaee141a6",
204
+ "value": "Unique GADGETS",
205
+ "__typename": "column_dropdown_value"
206
+ }
207
+ ],
208
+ "__typename": "listingColumnsType"
209
+ },
210
+ {
211
+ "_id": "68cd0cb47789f8be9afd576b",
212
+ "field": "shippingMethod.name",
213
+ "query": {
214
+ "first_condition": null,
215
+ "first_value": null,
216
+ "condition": null,
217
+ "second_condition": null,
218
+ "second_value": null,
219
+ "__typename": "queryType"
220
+ },
221
+ "header": "Shipping Method",
222
+ "is_search_able": false,
223
+ "is_amount": false,
224
+ "is_sortable": false,
225
+ "is_visible": true,
226
+ "search": null,
227
+ "type": "dropdown",
228
+ "filterValue": null,
229
+ "column_data": [],
230
+ "column_dropdown_value": [
231
+ {
232
+ "_id": "67065f084f0df6afaee141f9",
233
+ "value": "personal",
234
+ "__typename": "column_dropdown_value"
235
+ }
236
+ ],
237
+ "__typename": "listingColumnsType"
238
+ },
239
+ {
240
+ "_id": "68cd0cb47789f8be9afd576c",
241
+ "field": "grandTotal",
242
+ "query": {
243
+ "first_condition": null,
244
+ "first_value": null,
245
+ "condition": null,
246
+ "second_condition": null,
247
+ "second_value": null,
248
+ "__typename": "queryType"
249
+ },
250
+ "header": "Grand Total",
251
+ "is_search_able": false,
252
+ "is_amount": true,
253
+ "is_sortable": true,
254
+ "is_visible": true,
255
+ "search": null,
256
+ "type": "number",
257
+ "filterValue": null,
258
+ "column_data": [],
259
+ "column_dropdown_value": null,
260
+ "__typename": "listingColumnsType"
261
+ },
262
+ {
263
+ "_id": "68cd0cb47789f8be9afd576d",
264
+ "field": "shipTo.location",
265
+ "query": {
266
+ "first_condition": null,
267
+ "first_value": null,
268
+ "condition": null,
269
+ "second_condition": null,
270
+ "second_value": null,
271
+ "__typename": "queryType"
272
+ },
273
+ "header": "Ship To",
274
+ "is_search_able": false,
275
+ "is_amount": false,
276
+ "is_sortable": false,
277
+ "is_visible": true,
278
+ "search": null,
279
+ "type": "dropdown",
280
+ "filterValue": null,
281
+ "column_data": [],
282
+ "column_dropdown_value": [
283
+ {
284
+ "_id": "67065eee4f0df6afaee141d9",
285
+ "value": "ideal innovative Solutions pvt",
286
+ "__typename": "column_dropdown_value"
287
+ }
288
+ ],
289
+ "__typename": "listingColumnsType"
290
+ },
291
+ {
292
+ "_id": "68cd0cb47789f8be9afd576e",
293
+ "field": "billTo.location",
294
+ "query": {
295
+ "first_condition": null,
296
+ "first_value": null,
297
+ "condition": null,
298
+ "second_condition": null,
299
+ "second_value": null,
300
+ "__typename": "queryType"
301
+ },
302
+ "header": "Bill To",
303
+ "is_search_able": false,
304
+ "is_amount": false,
305
+ "is_sortable": false,
306
+ "is_visible": false,
307
+ "search": null,
308
+ "type": "dropdown",
309
+ "filterValue": null,
310
+ "column_data": [],
311
+ "column_dropdown_value": [
312
+ {
313
+ "_id": "67065eee4f0df6afaee141d9",
314
+ "value": "ideal innovative Solutions pvt",
315
+ "__typename": "column_dropdown_value"
316
+ }
317
+ ],
318
+ "__typename": "listingColumnsType"
319
+ },
320
+ {
321
+ "_id": "68cd0cb47789f8be9afd576f",
322
+ "field": "subTotal",
323
+ "query": {
324
+ "first_condition": null,
325
+ "first_value": null,
326
+ "condition": null,
327
+ "second_condition": null,
328
+ "second_value": null,
329
+ "__typename": "queryType"
330
+ },
331
+ "header": "Total",
332
+ "is_search_able": false,
333
+ "is_amount": true,
334
+ "is_sortable": true,
335
+ "is_visible": false,
336
+ "search": null,
337
+ "type": "number",
338
+ "filterValue": null,
339
+ "column_data": [],
340
+ "column_dropdown_value": null,
341
+ "__typename": "listingColumnsType"
342
+ },
343
+ {
344
+ "_id": "68cd0cb47789f8be9afd5770",
345
+ "field": "taxes",
346
+ "query": {
347
+ "first_condition": null,
348
+ "first_value": null,
349
+ "condition": null,
350
+ "second_condition": null,
351
+ "second_value": null,
352
+ "__typename": "queryType"
353
+ },
354
+ "header": "taxes",
355
+ "is_search_able": false,
356
+ "is_amount": true,
357
+ "is_sortable": true,
358
+ "is_visible": false,
359
+ "search": null,
360
+ "type": "number",
361
+ "filterValue": null,
362
+ "column_data": [],
363
+ "column_dropdown_value": null,
364
+ "__typename": "listingColumnsType"
365
+ },
366
+ {
367
+ "_id": "68cd0cb47789f8be9afd5771",
368
+ "field": "totalShippingCharges",
369
+ "query": {
370
+ "first_condition": null,
371
+ "first_value": null,
372
+ "condition": null,
373
+ "second_condition": null,
374
+ "second_value": null,
375
+ "__typename": "queryType"
376
+ },
377
+ "header": "Shipping",
378
+ "is_search_able": false,
379
+ "is_amount": true,
380
+ "is_sortable": true,
381
+ "is_visible": false,
382
+ "search": null,
383
+ "type": "number",
384
+ "filterValue": null,
385
+ "column_data": [],
386
+ "column_dropdown_value": null,
387
+ "__typename": "listingColumnsType"
388
+ }
389
+ ],
390
+ "filters": [],
391
+ "limit": 50,
392
+ "no_of_records": 50,
393
+ "page": 1,
394
+ "totalPages": 1,
395
+ "totalResults": 30,
396
+ "type": "AllInvoiceListing",
397
+ "__typename": "dataTableConfig"
398
+ },
399
+ "data": [
400
+ {
401
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d02032e240a11b39d119b8/invoiceImage/1742479745857_.pdf",
402
+ "invoiceId": "INV-576231",
403
+ "name": "SSD purchased from Iqbal ",
404
+ "orderDate": "2025-03-20T14:07:29.048Z",
405
+ "orderNumber": "3434",
406
+ "id": "67dc21828aaac992e940fca8",
407
+ "vendor": {
408
+ "id": "6789f9807a50225e94778eff",
409
+ "name": "Computer & Laptops",
410
+ "__typename": "vendors"
411
+ },
412
+ "shippingMethod": null,
413
+ "company": "",
414
+ "billTo": null,
415
+ "shipTo": null,
416
+ "type": "Expense",
417
+ "taxes": null,
418
+ "totalShippingCharges": null,
419
+ "totalInvoiceItems": 5,
420
+ "grandTotal": 250,
421
+ "is_deleted": false,
422
+ "subTotal": 250,
423
+ "invoice_image_name": "Integrations Transalations Project Google Payment (1).pdf",
424
+ "detail": {
425
+ "columns": [
426
+ {
427
+ "_id": "68ca9b04c2ce7f1261635d4c",
428
+ "header": "Unit Price",
429
+ "field": "price",
430
+ "is_amount": true,
431
+ "__typename": "listingColumnsType"
432
+ },
433
+ {
434
+ "_id": "68ca9b04c2ce7f1261635d48",
435
+ "header": "Product",
436
+ "field": "product",
437
+ "is_amount": false,
438
+ "__typename": "listingColumnsType"
439
+ },
440
+ {
441
+ "_id": "68ca9b04c2ce7f1261635d4b",
442
+ "header": "Quantity",
443
+ "field": "quantity",
444
+ "is_amount": false,
445
+ "__typename": "listingColumnsType"
446
+ },
447
+ {
448
+ "_id": "68ca9b04c2ce7f1261635d49",
449
+ "header": "Serial Number",
450
+ "field": "serial_number",
451
+ "is_amount": false,
452
+ "__typename": "listingColumnsType"
453
+ },
454
+ {
455
+ "_id": "68ca9b04c2ce7f1261635d4a",
456
+ "header": "SKU",
457
+ "field": "sku",
458
+ "is_amount": false,
459
+ "__typename": "listingColumnsType"
460
+ },
461
+ {
462
+ "_id": "68ca9b04c2ce7f1261635d4e",
463
+ "header": "Total",
464
+ "field": "total",
465
+ "is_amount": true,
466
+ "__typename": "listingColumnsType"
467
+ },
468
+ {
469
+ "_id": "68ca9b04c2ce7f1261635d4d",
470
+ "header": "Type",
471
+ "field": "type",
472
+ "is_amount": false,
473
+ "__typename": "listingColumnsType"
474
+ }
475
+ ],
476
+ "result": [
477
+ {
478
+ "product": "SSD",
479
+ "serial_number": null,
480
+ "sku": "",
481
+ "quantity": "5",
482
+ "price": "50",
483
+ "type": "expense",
484
+ "total": 250,
485
+ "__typename": "invoiceItemsType"
486
+ },
487
+ {
488
+ "product": "Dell INspiron",
489
+ "serial_number": null,
490
+ "sku": "",
491
+ "quantity": "1",
492
+ "price": "128000",
493
+ "type": "asset",
494
+ "total": 128000,
495
+ "__typename": "invoiceItemsType"
496
+ },
497
+ {
498
+ "product": "Dell Precision",
499
+ "serial_number": null,
500
+ "sku": null,
501
+ "quantity": "1",
502
+ "price": "92000",
503
+ "type": "asset",
504
+ "total": 92000,
505
+ "__typename": "invoiceItemsType"
506
+ },
507
+ {
508
+ "product": "Dell INspiron",
509
+ "serial_number": null,
510
+ "sku": "",
511
+ "quantity": "1",
512
+ "price": "128000",
513
+ "type": "asset",
514
+ "total": 128000,
515
+ "__typename": "invoiceItemsType"
516
+ },
517
+ {
518
+ "product": "Dell Precision",
519
+ "serial_number": null,
520
+ "sku": null,
521
+ "quantity": "1",
522
+ "price": "92000",
523
+ "type": "asset",
524
+ "total": 92000,
525
+ "__typename": "invoiceItemsType"
526
+ },
527
+ {
528
+ "product": "Dell INspiron",
529
+ "serial_number": null,
530
+ "sku": "",
531
+ "quantity": "1",
532
+ "price": "128000",
533
+ "type": "asset",
534
+ "total": 128000,
535
+ "__typename": "invoiceItemsType"
536
+ },
537
+ {
538
+ "product": "Dell Precision",
539
+ "serial_number": null,
540
+ "sku": null,
541
+ "quantity": "1",
542
+ "price": "92000",
543
+ "type": "asset",
544
+ "total": 92000,
545
+ "__typename": "invoiceItemsType"
546
+ },
547
+ {
548
+ "product": "Dell INspiron",
549
+ "serial_number": null,
550
+ "sku": "",
551
+ "quantity": "1",
552
+ "price": "128000",
553
+ "type": "asset",
554
+ "total": 128000,
555
+ "__typename": "invoiceItemsType"
556
+ },
557
+ {
558
+ "product": "Dell Precision",
559
+ "serial_number": null,
560
+ "sku": null,
561
+ "quantity": "1",
562
+ "price": "92000",
563
+ "type": "asset",
564
+ "total": 92000,
565
+ "__typename": "invoiceItemsType"
566
+ },
567
+ {
568
+ "product": "Dell INspiron",
569
+ "serial_number": null,
570
+ "sku": "",
571
+ "quantity": "1",
572
+ "price": "128000",
573
+ "type": "asset",
574
+ "total": 128000,
575
+ "__typename": "invoiceItemsType"
576
+ },
577
+ {
578
+ "product": "Dell Precision",
579
+ "serial_number": null,
580
+ "sku": null,
581
+ "quantity": "1",
582
+ "price": "92000",
583
+ "type": "asset",
584
+ "total": 92000,
585
+ "__typename": "invoiceItemsType"
586
+ },
587
+ ],
588
+ "__typename": "invoiceDetail"
589
+ },
590
+ "__typename": "InvoiceData"
591
+ },
592
+ {
593
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d02032e240a11b39d119b8/invoiceImage/1742477495019_.pdf",
594
+ "invoiceId": "INV-126588",
595
+ "name": "Pushase of laptops",
596
+ "orderDate": "2025-03-18T13:26:57.000Z",
597
+ "orderNumber": "000234",
598
+ "id": "67dc18b78aaac992e9402317",
599
+ "vendor": {
600
+ "id": "6789f9807a50225e94778eff",
601
+ "name": "Computer & Laptops",
602
+ "__typename": "vendors"
603
+ },
604
+ "shippingMethod": {
605
+ "_id": "67065f084f0df6afaee141f9",
606
+ "name": "personal",
607
+ "__typename": "ShippingMethods"
608
+ },
609
+ "company": "",
610
+ "billTo": {
611
+ "location": "ideal innovative Solutions pvt",
612
+ "id": "67065eee4f0df6afaee141d9",
613
+ "__typename": "getShipToType"
614
+ },
615
+ "shipTo": {
616
+ "location": "ideal innovative Solutions pvt",
617
+ "id": "67065eee4f0df6afaee141d9",
618
+ "__typename": "getShipToType"
619
+ },
620
+ "type": "Asset",
621
+ "taxes": 30,
622
+ "totalShippingCharges": 25,
623
+ "totalInvoiceItems": 2,
624
+ "grandTotal": 755,
625
+ "is_deleted": false,
626
+ "subTotal": 700,
627
+ "invoice_image_name": "Google Cloud MAP and Language ttranslation APIs on Integrations email (1).pdf",
628
+ "detail": {
629
+ "columns": [
630
+ {
631
+ "_id": "68ca9b04c2ce7f1261635d4c",
632
+ "header": "Unit Price",
633
+ "field": "price",
634
+ "is_amount": true,
635
+ "__typename": "listingColumnsType"
636
+ },
637
+ {
638
+ "_id": "68ca9b04c2ce7f1261635d48",
639
+ "header": "Product",
640
+ "field": "product",
641
+ "is_amount": false,
642
+ "__typename": "listingColumnsType"
643
+ },
644
+ {
645
+ "_id": "68ca9b04c2ce7f1261635d4b",
646
+ "header": "Quantity",
647
+ "field": "quantity",
648
+ "is_amount": false,
649
+ "__typename": "listingColumnsType"
650
+ },
651
+ {
652
+ "_id": "68ca9b04c2ce7f1261635d49",
653
+ "header": "Serial Number",
654
+ "field": "serial_number",
655
+ "is_amount": false,
656
+ "__typename": "listingColumnsType"
657
+ },
658
+ {
659
+ "_id": "68ca9b04c2ce7f1261635d4a",
660
+ "header": "SKU",
661
+ "field": "sku",
662
+ "is_amount": false,
663
+ "__typename": "listingColumnsType"
664
+ },
665
+ {
666
+ "_id": "68ca9b04c2ce7f1261635d4e",
667
+ "header": "Total",
668
+ "field": "total",
669
+ "is_amount": true,
670
+ "__typename": "listingColumnsType"
671
+ },
672
+ {
673
+ "_id": "68ca9b04c2ce7f1261635d4d",
674
+ "header": "Type",
675
+ "field": "type",
676
+ "is_amount": false,
677
+ "__typename": "listingColumnsType"
678
+ }
679
+ ],
680
+ "result": [
681
+ {
682
+ "product": "Dell Inspiration",
683
+ "serial_number": null,
684
+ "sku": "",
685
+ "quantity": "2",
686
+ "price": "350",
687
+ "type": "asset",
688
+ "total": 700,
689
+ "__typename": "invoiceItemsType"
690
+ }
691
+ ],
692
+ "__typename": "invoiceDetail"
693
+ },
694
+ "__typename": "InvoiceData"
695
+ },
696
+ {
697
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1738327118858_.jpeg",
698
+ "invoiceId": "INV-285700",
699
+ "name": "Apple Macbook Pro",
700
+ "orderDate": "2025-01-31T12:34:30.774Z",
701
+ "orderNumber": "016",
702
+ "id": "679cc44fd4543aedfdf22d1b",
703
+ "vendor": {
704
+ "id": "679cc333d4543aedfdf21940",
705
+ "name": "Ali Apple",
706
+ "__typename": "vendors"
707
+ },
708
+ "shippingMethod": null,
709
+ "company": "",
710
+ "billTo": null,
711
+ "shipTo": null,
712
+ "type": "Asset",
713
+ "taxes": null,
714
+ "totalShippingCharges": null,
715
+ "totalInvoiceItems": 11,
716
+ "grandTotal": 994000,
717
+ "is_deleted": false,
718
+ "subTotal": 994000,
719
+ "invoice_image_name": "Ali Apple.jpeg",
720
+ "detail": {
721
+ "columns": [
722
+ {
723
+ "_id": "68ca9b04c2ce7f1261635d4c",
724
+ "header": "Unit Price",
725
+ "field": "price",
726
+ "is_amount": true,
727
+ "__typename": "listingColumnsType"
728
+ },
729
+ {
730
+ "_id": "68ca9b04c2ce7f1261635d48",
731
+ "header": "Product",
732
+ "field": "product",
733
+ "is_amount": false,
734
+ "__typename": "listingColumnsType"
735
+ },
736
+ {
737
+ "_id": "68ca9b04c2ce7f1261635d4b",
738
+ "header": "Quantity",
739
+ "field": "quantity",
740
+ "is_amount": false,
741
+ "__typename": "listingColumnsType"
742
+ },
743
+ {
744
+ "_id": "68ca9b04c2ce7f1261635d49",
745
+ "header": "Serial Number",
746
+ "field": "serial_number",
747
+ "is_amount": false,
748
+ "__typename": "listingColumnsType"
749
+ },
750
+ {
751
+ "_id": "68ca9b04c2ce7f1261635d4a",
752
+ "header": "SKU",
753
+ "field": "sku",
754
+ "is_amount": false,
755
+ "__typename": "listingColumnsType"
756
+ },
757
+ {
758
+ "_id": "68ca9b04c2ce7f1261635d4e",
759
+ "header": "Total",
760
+ "field": "total",
761
+ "is_amount": true,
762
+ "__typename": "listingColumnsType"
763
+ },
764
+ {
765
+ "_id": "68ca9b04c2ce7f1261635d4d",
766
+ "header": "Type",
767
+ "field": "type",
768
+ "is_amount": false,
769
+ "__typename": "listingColumnsType"
770
+ }
771
+ ],
772
+ "result": [
773
+ {
774
+ "product": "14 inch Macbook Pro CT2H9WYK21",
775
+ "serial_number": null,
776
+ "sku": "",
777
+ "quantity": "1",
778
+ "price": "497000",
779
+ "type": "asset",
780
+ "total": 497000,
781
+ "__typename": "invoiceItemsType"
782
+ },
783
+ {
784
+ "product": "14 inch Macbook Pro FGFYW0HTMC",
785
+ "serial_number": null,
786
+ "sku": null,
787
+ "quantity": "1",
788
+ "price": "497000",
789
+ "type": "asset",
790
+ "total": 497000,
791
+ "__typename": "invoiceItemsType"
792
+ }
793
+ ],
794
+ "__typename": "invoiceDetail"
795
+ },
796
+ "__typename": "InvoiceData"
797
+ },
798
+ {
799
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1737095579550_.jpeg",
800
+ "invoiceId": "INV-899018",
801
+ "name": "Dell Laptop",
802
+ "orderDate": "2025-01-16T06:28:21.000Z",
803
+ "orderNumber": "465",
804
+ "id": "6789f99c7a50225e947793b9",
805
+ "vendor": {
806
+ "id": "6789f9807a50225e94778eff",
807
+ "name": "Computer & Laptops",
808
+ "__typename": "vendors"
809
+ },
810
+ "shippingMethod": {
811
+ "_id": "67065f084f0df6afaee141f9",
812
+ "name": "personal",
813
+ "__typename": "ShippingMethods"
814
+ },
815
+ "company": "",
816
+ "billTo": {
817
+ "location": "ideal innovative Solutions pvt",
818
+ "id": "67065eee4f0df6afaee141d9",
819
+ "__typename": "getShipToType"
820
+ },
821
+ "shipTo": {
822
+ "location": "ideal innovative Solutions pvt",
823
+ "id": "67065eee4f0df6afaee141d9",
824
+ "__typename": "getShipToType"
825
+ },
826
+ "type": "Asset",
827
+ "taxes": null,
828
+ "totalShippingCharges": null,
829
+ "totalInvoiceItems": 11,
830
+ "grandTotal": 220000,
831
+ "is_deleted": false,
832
+ "subTotal": 220000,
833
+ "invoice_image_name": "WhatsApp Image 2025-01-17 at 10.46.12 AM.jpeg",
834
+ "detail": {
835
+ "columns": [
836
+ {
837
+ "_id": "68ca9b04c2ce7f1261635d4c",
838
+ "header": "Unit Price",
839
+ "field": "price",
840
+ "is_amount": true,
841
+ "__typename": "listingColumnsType"
842
+ },
843
+ {
844
+ "_id": "68ca9b04c2ce7f1261635d48",
845
+ "header": "Product",
846
+ "field": "product",
847
+ "is_amount": false,
848
+ "__typename": "listingColumnsType"
849
+ },
850
+ {
851
+ "_id": "68ca9b04c2ce7f1261635d4b",
852
+ "header": "Quantity",
853
+ "field": "quantity",
854
+ "is_amount": false,
855
+ "__typename": "listingColumnsType"
856
+ },
857
+ {
858
+ "_id": "68ca9b04c2ce7f1261635d49",
859
+ "header": "Serial Number",
860
+ "field": "serial_number",
861
+ "is_amount": false,
862
+ "__typename": "listingColumnsType"
863
+ },
864
+ {
865
+ "_id": "68ca9b04c2ce7f1261635d4a",
866
+ "header": "SKU",
867
+ "field": "sku",
868
+ "is_amount": false,
869
+ "__typename": "listingColumnsType"
870
+ },
871
+ {
872
+ "_id": "68ca9b04c2ce7f1261635d4e",
873
+ "header": "Total",
874
+ "field": "total",
875
+ "is_amount": true,
876
+ "__typename": "listingColumnsType"
877
+ },
878
+ {
879
+ "_id": "68ca9b04c2ce7f1261635d4d",
880
+ "header": "Type",
881
+ "field": "type",
882
+ "is_amount": false,
883
+ "__typename": "listingColumnsType"
884
+ }
885
+ ],
886
+ "result": [
887
+ {
888
+ "product": "Dell INspiron",
889
+ "serial_number": null,
890
+ "sku": "",
891
+ "quantity": "1",
892
+ "price": "128000",
893
+ "type": "asset",
894
+ "total": 128000,
895
+ "__typename": "invoiceItemsType"
896
+ },
897
+ {
898
+ "product": "Dell Precision",
899
+ "serial_number": null,
900
+ "sku": null,
901
+ "quantity": "1",
902
+ "price": "92000",
903
+ "type": "asset",
904
+ "total": 92000,
905
+ "__typename": "invoiceItemsType"
906
+ },
907
+ ],
908
+ "__typename": "invoiceDetail"
909
+ },
910
+ "__typename": "InvoiceData"
911
+ },
912
+ {
913
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1736833386969_.pdf",
914
+ "invoiceId": "INV-508814",
915
+ "name": "613",
916
+ "orderDate": "2025-01-13T05:41:37.000Z",
917
+ "orderNumber": "613",
918
+ "id": "6785f96ea21835b0e24082b6",
919
+ "vendor": {
920
+ "id": "670528fd4f0df6afaecb2a8d",
921
+ "name": "Choudhry Computers",
922
+ "__typename": "vendors"
923
+ },
924
+ "shippingMethod": {
925
+ "_id": "67065f084f0df6afaee141f9",
926
+ "name": "personal",
927
+ "__typename": "ShippingMethods"
928
+ },
929
+ "company": "",
930
+ "billTo": {
931
+ "location": "ideal innovative Solutions pvt",
932
+ "id": "67065eee4f0df6afaee141d9",
933
+ "__typename": "getShipToType"
934
+ },
935
+ "shipTo": {
936
+ "location": "ideal innovative Solutions pvt",
937
+ "id": "67065eee4f0df6afaee141d9",
938
+ "__typename": "getShipToType"
939
+ },
940
+ "type": "Asset",
941
+ "taxes": null,
942
+ "totalShippingCharges": null,
943
+ "totalInvoiceItems": 1,
944
+ "grandTotal": 5000,
945
+ "is_deleted": false,
946
+ "subTotal": 5000,
947
+ "invoice_image_name": "0114202510351700111.pdf",
948
+ "detail": {
949
+ "columns": [
950
+ {
951
+ "_id": "68ca9b04c2ce7f1261635d4c",
952
+ "header": "Unit Price",
953
+ "field": "price",
954
+ "is_amount": true,
955
+ "__typename": "listingColumnsType"
956
+ },
957
+ {
958
+ "_id": "68ca9b04c2ce7f1261635d48",
959
+ "header": "Product",
960
+ "field": "product",
961
+ "is_amount": false,
962
+ "__typename": "listingColumnsType"
963
+ },
964
+ {
965
+ "_id": "68ca9b04c2ce7f1261635d4b",
966
+ "header": "Quantity",
967
+ "field": "quantity",
968
+ "is_amount": false,
969
+ "__typename": "listingColumnsType"
970
+ },
971
+ {
972
+ "_id": "68ca9b04c2ce7f1261635d49",
973
+ "header": "Serial Number",
974
+ "field": "serial_number",
975
+ "is_amount": false,
976
+ "__typename": "listingColumnsType"
977
+ },
978
+ {
979
+ "_id": "68ca9b04c2ce7f1261635d4a",
980
+ "header": "SKU",
981
+ "field": "sku",
982
+ "is_amount": false,
983
+ "__typename": "listingColumnsType"
984
+ },
985
+ {
986
+ "_id": "68ca9b04c2ce7f1261635d4e",
987
+ "header": "Total",
988
+ "field": "total",
989
+ "is_amount": true,
990
+ "__typename": "listingColumnsType"
991
+ },
992
+ {
993
+ "_id": "68ca9b04c2ce7f1261635d4d",
994
+ "header": "Type",
995
+ "field": "type",
996
+ "is_amount": false,
997
+ "__typename": "listingColumnsType"
998
+ }
999
+ ],
1000
+ "result": [
1001
+ {
1002
+ "product": "Laptop IC",
1003
+ "serial_number": null,
1004
+ "sku": "",
1005
+ "quantity": "1",
1006
+ "price": "5000",
1007
+ "type": "asset",
1008
+ "total": 5000,
1009
+ "__typename": "invoiceItemsType"
1010
+ }
1011
+ ],
1012
+ "__typename": "invoiceDetail"
1013
+ },
1014
+ "__typename": "InvoiceData"
1015
+ },
1016
+ {
1017
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1735037687203_.png",
1018
+ "invoiceId": "INV-456040",
1019
+ "name": "Umar Electronics",
1020
+ "orderDate": "2024-12-24T10:45:52.519Z",
1021
+ "orderNumber": "1365592412171345392",
1022
+ "id": "676a92f71f87c1ce40e884c0",
1023
+ "vendor": {
1024
+ "id": "676a91461f87c1ce40e8841c",
1025
+ "name": "FBR",
1026
+ "__typename": "vendors"
1027
+ },
1028
+ "shippingMethod": null,
1029
+ "company": "",
1030
+ "billTo": null,
1031
+ "shipTo": null,
1032
+ "type": "Asset",
1033
+ "taxes": 15238.9,
1034
+ "totalShippingCharges": null,
1035
+ "totalInvoiceItems": 1,
1036
+ "grandTotal": 86900.9,
1037
+ "is_deleted": false,
1038
+ "subTotal": 71662,
1039
+ "invoice_image_name": "Screenshot 2024-12-24 154841.png",
1040
+ "detail": {
1041
+ "columns": [
1042
+ {
1043
+ "_id": "68ca9b04c2ce7f1261635d4c",
1044
+ "header": "Unit Price",
1045
+ "field": "price",
1046
+ "is_amount": true,
1047
+ "__typename": "listingColumnsType"
1048
+ },
1049
+ {
1050
+ "_id": "68ca9b04c2ce7f1261635d48",
1051
+ "header": "Product",
1052
+ "field": "product",
1053
+ "is_amount": false,
1054
+ "__typename": "listingColumnsType"
1055
+ },
1056
+ {
1057
+ "_id": "68ca9b04c2ce7f1261635d4b",
1058
+ "header": "Quantity",
1059
+ "field": "quantity",
1060
+ "is_amount": false,
1061
+ "__typename": "listingColumnsType"
1062
+ },
1063
+ {
1064
+ "_id": "68ca9b04c2ce7f1261635d49",
1065
+ "header": "Serial Number",
1066
+ "field": "serial_number",
1067
+ "is_amount": false,
1068
+ "__typename": "listingColumnsType"
1069
+ },
1070
+ {
1071
+ "_id": "68ca9b04c2ce7f1261635d4a",
1072
+ "header": "SKU",
1073
+ "field": "sku",
1074
+ "is_amount": false,
1075
+ "__typename": "listingColumnsType"
1076
+ },
1077
+ {
1078
+ "_id": "68ca9b04c2ce7f1261635d4e",
1079
+ "header": "Total",
1080
+ "field": "total",
1081
+ "is_amount": true,
1082
+ "__typename": "listingColumnsType"
1083
+ },
1084
+ {
1085
+ "_id": "68ca9b04c2ce7f1261635d4d",
1086
+ "header": "Type",
1087
+ "field": "type",
1088
+ "is_amount": false,
1089
+ "__typename": "listingColumnsType"
1090
+ }
1091
+ ],
1092
+ "result": [
1093
+ {
1094
+ "product": "TCL LED TV",
1095
+ "serial_number": null,
1096
+ "sku": "",
1097
+ "quantity": "1",
1098
+ "price": "71662.0",
1099
+ "type": "asset",
1100
+ "total": 71662,
1101
+ "__typename": "invoiceItemsType"
1102
+ }
1103
+ ],
1104
+ "__typename": "invoiceDetail"
1105
+ },
1106
+ "__typename": "InvoiceData"
1107
+ },
1108
+ {
1109
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d02032e240a11b39d119b8/invoiceImage/1731590837300_.png",
1110
+ "invoiceId": "INV-354251",
1111
+ "name": "tanzila",
1112
+ "orderDate": "2024-11-14T13:18:22.862Z",
1113
+ "orderNumber": "245245222222222222222222222222",
1114
+ "id": "6735fab625796ccbb6618a2b",
1115
+ "vendor": {
1116
+ "id": "670620ac4f0df6afaed960df",
1117
+ "name": "Computer Iin",
1118
+ "__typename": "vendors"
1119
+ },
1120
+ "shippingMethod": {
1121
+ "_id": "67065f084f0df6afaee141f9",
1122
+ "name": "personal",
1123
+ "__typename": "ShippingMethods"
1124
+ },
1125
+ "company": "",
1126
+ "billTo": {
1127
+ "location": "ideal innovative Solutions pvt",
1128
+ "id": "67065eee4f0df6afaee141d9",
1129
+ "__typename": "getShipToType"
1130
+ },
1131
+ "shipTo": {
1132
+ "location": "ideal innovative Solutions pvt",
1133
+ "id": "67065eee4f0df6afaee141d9",
1134
+ "__typename": "getShipToType"
1135
+ },
1136
+ "type": "Accessories",
1137
+ "taxes": 300,
1138
+ "totalShippingCharges": 20,
1139
+ "totalInvoiceItems": 4022,
1140
+ "grandTotal": 208320,
1141
+ "is_deleted": false,
1142
+ "subTotal": 208000,
1143
+ "invoice_image_name": "dashboard timesheet.png",
1144
+ "detail": {
1145
+ "columns": [
1146
+ {
1147
+ "_id": "68ca9b04c2ce7f1261635d4c",
1148
+ "header": "Unit Price",
1149
+ "field": "price",
1150
+ "is_amount": true,
1151
+ "__typename": "listingColumnsType"
1152
+ },
1153
+ {
1154
+ "_id": "68ca9b04c2ce7f1261635d48",
1155
+ "header": "Product",
1156
+ "field": "product",
1157
+ "is_amount": false,
1158
+ "__typename": "listingColumnsType"
1159
+ },
1160
+ {
1161
+ "_id": "68ca9b04c2ce7f1261635d4b",
1162
+ "header": "Quantity",
1163
+ "field": "quantity",
1164
+ "is_amount": false,
1165
+ "__typename": "listingColumnsType"
1166
+ },
1167
+ {
1168
+ "_id": "68ca9b04c2ce7f1261635d49",
1169
+ "header": "Serial Number",
1170
+ "field": "serial_number",
1171
+ "is_amount": false,
1172
+ "__typename": "listingColumnsType"
1173
+ },
1174
+ {
1175
+ "_id": "68ca9b04c2ce7f1261635d4a",
1176
+ "header": "SKU",
1177
+ "field": "sku",
1178
+ "is_amount": false,
1179
+ "__typename": "listingColumnsType"
1180
+ },
1181
+ {
1182
+ "_id": "68ca9b04c2ce7f1261635d4e",
1183
+ "header": "Total",
1184
+ "field": "total",
1185
+ "is_amount": true,
1186
+ "__typename": "listingColumnsType"
1187
+ },
1188
+ {
1189
+ "_id": "68ca9b04c2ce7f1261635d4d",
1190
+ "header": "Type",
1191
+ "field": "type",
1192
+ "is_amount": false,
1193
+ "__typename": "listingColumnsType"
1194
+ }
1195
+ ],
1196
+ "result": [
1197
+ {
1198
+ "product": "surf",
1199
+ "serial_number": "434",
1200
+ "sku": "343",
1201
+ "quantity": "40",
1202
+ "price": "3000",
1203
+ "type": "accessories",
1204
+ "total": 120000,
1205
+ "__typename": "invoiceItemsType"
1206
+ },
1207
+ {
1208
+ "product": "eee",
1209
+ "serial_number": "2323",
1210
+ "sku": "2323",
1211
+ "quantity": "22",
1212
+ "price": "4000",
1213
+ "type": "",
1214
+ "total": 88000,
1215
+ "__typename": "invoiceItemsType"
1216
+ }
1217
+ ],
1218
+ "__typename": "invoiceDetail"
1219
+ },
1220
+ "__typename": "InvoiceData"
1221
+ },
1222
+ {
1223
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1730354528715_.pdf",
1224
+ "invoiceId": "INV-989248",
1225
+ "name": "TPLINK",
1226
+ "orderDate": "2024-10-31T05:59:24.033Z",
1227
+ "orderNumber": "1116",
1228
+ "id": "67231d614ef13bbcb1d82878",
1229
+ "vendor": {
1230
+ "id": "67061f194f0df6afaed93669",
1231
+ "name": "FM",
1232
+ "__typename": "vendors"
1233
+ },
1234
+ "shippingMethod": {
1235
+ "_id": "67065f084f0df6afaee141f9",
1236
+ "name": "personal",
1237
+ "__typename": "ShippingMethods"
1238
+ },
1239
+ "company": "",
1240
+ "billTo": {
1241
+ "location": "ideal innovative Solutions pvt",
1242
+ "id": "67065eee4f0df6afaee141d9",
1243
+ "__typename": "getShipToType"
1244
+ },
1245
+ "shipTo": {
1246
+ "location": "ideal innovative Solutions pvt",
1247
+ "id": "67065eee4f0df6afaee141d9",
1248
+ "__typename": "getShipToType"
1249
+ },
1250
+ "type": "Asset",
1251
+ "taxes": null,
1252
+ "totalShippingCharges": null,
1253
+ "totalInvoiceItems": 1,
1254
+ "grandTotal": 2500,
1255
+ "is_deleted": false,
1256
+ "subTotal": 2500,
1257
+ "invoice_image_name": "1031202410244600084.pdf",
1258
+ "detail": {
1259
+ "columns": [
1260
+ {
1261
+ "_id": "68ca9b04c2ce7f1261635d4c",
1262
+ "header": "Unit Price",
1263
+ "field": "price",
1264
+ "is_amount": true,
1265
+ "__typename": "listingColumnsType"
1266
+ },
1267
+ {
1268
+ "_id": "68ca9b04c2ce7f1261635d48",
1269
+ "header": "Product",
1270
+ "field": "product",
1271
+ "is_amount": false,
1272
+ "__typename": "listingColumnsType"
1273
+ },
1274
+ {
1275
+ "_id": "68ca9b04c2ce7f1261635d4b",
1276
+ "header": "Quantity",
1277
+ "field": "quantity",
1278
+ "is_amount": false,
1279
+ "__typename": "listingColumnsType"
1280
+ },
1281
+ {
1282
+ "_id": "68ca9b04c2ce7f1261635d49",
1283
+ "header": "Serial Number",
1284
+ "field": "serial_number",
1285
+ "is_amount": false,
1286
+ "__typename": "listingColumnsType"
1287
+ },
1288
+ {
1289
+ "_id": "68ca9b04c2ce7f1261635d4a",
1290
+ "header": "SKU",
1291
+ "field": "sku",
1292
+ "is_amount": false,
1293
+ "__typename": "listingColumnsType"
1294
+ },
1295
+ {
1296
+ "_id": "68ca9b04c2ce7f1261635d4e",
1297
+ "header": "Total",
1298
+ "field": "total",
1299
+ "is_amount": true,
1300
+ "__typename": "listingColumnsType"
1301
+ },
1302
+ {
1303
+ "_id": "68ca9b04c2ce7f1261635d4d",
1304
+ "header": "Type",
1305
+ "field": "type",
1306
+ "is_amount": false,
1307
+ "__typename": "listingColumnsType"
1308
+ }
1309
+ ],
1310
+ "result": [
1311
+ {
1312
+ "product": "TP LINk",
1313
+ "serial_number": null,
1314
+ "sku": "",
1315
+ "quantity": "1",
1316
+ "price": "2500",
1317
+ "type": "asset",
1318
+ "total": 2500,
1319
+ "__typename": "invoiceItemsType"
1320
+ }
1321
+ ],
1322
+ "__typename": "invoiceDetail"
1323
+ },
1324
+ "__typename": "InvoiceData"
1325
+ },
1326
+ {
1327
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1730353691089_.pdf",
1328
+ "invoiceId": "INV-650018",
1329
+ "name": "keyboard",
1330
+ "orderDate": "2024-10-30T05:42:05.755Z",
1331
+ "orderNumber": "430",
1332
+ "id": "67231a1c4ef13bbcb1d74f9d",
1333
+ "vendor": {
1334
+ "id": "670528fd4f0df6afaecb2a8d",
1335
+ "name": "Choudhry Computers",
1336
+ "__typename": "vendors"
1337
+ },
1338
+ "shippingMethod": {
1339
+ "_id": "67065f084f0df6afaee141f9",
1340
+ "name": "personal",
1341
+ "__typename": "ShippingMethods"
1342
+ },
1343
+ "company": "",
1344
+ "billTo": {
1345
+ "location": "ideal innovative Solutions pvt",
1346
+ "id": "67065eee4f0df6afaee141d9",
1347
+ "__typename": "getShipToType"
1348
+ },
1349
+ "shipTo": {
1350
+ "location": "ideal innovative Solutions pvt",
1351
+ "id": "67065eee4f0df6afaee141d9",
1352
+ "__typename": "getShipToType"
1353
+ },
1354
+ "type": "Asset",
1355
+ "taxes": null,
1356
+ "totalShippingCharges": null,
1357
+ "totalInvoiceItems": 1111,
1358
+ "grandTotal": 4600,
1359
+ "is_deleted": false,
1360
+ "subTotal": 4600,
1361
+ "invoice_image_name": "1030202416210500083.pdf",
1362
+ "detail": {
1363
+ "columns": [
1364
+ {
1365
+ "_id": "68ca9b04c2ce7f1261635d4c",
1366
+ "header": "Unit Price",
1367
+ "field": "price",
1368
+ "is_amount": true,
1369
+ "__typename": "listingColumnsType"
1370
+ },
1371
+ {
1372
+ "_id": "68ca9b04c2ce7f1261635d48",
1373
+ "header": "Product",
1374
+ "field": "product",
1375
+ "is_amount": false,
1376
+ "__typename": "listingColumnsType"
1377
+ },
1378
+ {
1379
+ "_id": "68ca9b04c2ce7f1261635d4b",
1380
+ "header": "Quantity",
1381
+ "field": "quantity",
1382
+ "is_amount": false,
1383
+ "__typename": "listingColumnsType"
1384
+ },
1385
+ {
1386
+ "_id": "68ca9b04c2ce7f1261635d49",
1387
+ "header": "Serial Number",
1388
+ "field": "serial_number",
1389
+ "is_amount": false,
1390
+ "__typename": "listingColumnsType"
1391
+ },
1392
+ {
1393
+ "_id": "68ca9b04c2ce7f1261635d4a",
1394
+ "header": "SKU",
1395
+ "field": "sku",
1396
+ "is_amount": false,
1397
+ "__typename": "listingColumnsType"
1398
+ },
1399
+ {
1400
+ "_id": "68ca9b04c2ce7f1261635d4e",
1401
+ "header": "Total",
1402
+ "field": "total",
1403
+ "is_amount": true,
1404
+ "__typename": "listingColumnsType"
1405
+ },
1406
+ {
1407
+ "_id": "68ca9b04c2ce7f1261635d4d",
1408
+ "header": "Type",
1409
+ "field": "type",
1410
+ "is_amount": false,
1411
+ "__typename": "listingColumnsType"
1412
+ }
1413
+ ],
1414
+ "result": [
1415
+ {
1416
+ "product": "keyboard",
1417
+ "serial_number": null,
1418
+ "sku": "",
1419
+ "quantity": "1",
1420
+ "price": "500",
1421
+ "type": "asset",
1422
+ "total": 500,
1423
+ "__typename": "invoiceItemsType"
1424
+ },
1425
+ {
1426
+ "product": "Mouse",
1427
+ "serial_number": null,
1428
+ "sku": null,
1429
+ "quantity": "1",
1430
+ "price": "800",
1431
+ "type": "asset",
1432
+ "total": 800,
1433
+ "__typename": "invoiceItemsType"
1434
+ },
1435
+ {
1436
+ "product": "cable",
1437
+ "serial_number": null,
1438
+ "sku": null,
1439
+ "quantity": "1",
1440
+ "price": "1000",
1441
+ "type": "",
1442
+ "total": 1000,
1443
+ "__typename": "invoiceItemsType"
1444
+ },
1445
+ {
1446
+ "product": "laptop repair",
1447
+ "serial_number": null,
1448
+ "sku": null,
1449
+ "quantity": "1",
1450
+ "price": "2300",
1451
+ "type": "",
1452
+ "total": 2300,
1453
+ "__typename": "invoiceItemsType"
1454
+ }
1455
+ ],
1456
+ "__typename": "invoiceDetail"
1457
+ },
1458
+ "__typename": "InvoiceData"
1459
+ },
1460
+ {
1461
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1730353258326_.pdf",
1462
+ "invoiceId": "INV-135447",
1463
+ "name": "CPU",
1464
+ "orderDate": "2024-10-30T05:38:07.701Z",
1465
+ "orderNumber": "429",
1466
+ "id": "6723186b4ef13bbcb1d6a49a",
1467
+ "vendor": {
1468
+ "id": "670528fd4f0df6afaecb2a8d",
1469
+ "name": "Choudhry Computers",
1470
+ "__typename": "vendors"
1471
+ },
1472
+ "shippingMethod": {
1473
+ "_id": "67065f084f0df6afaee141f9",
1474
+ "name": "personal",
1475
+ "__typename": "ShippingMethods"
1476
+ },
1477
+ "company": "",
1478
+ "billTo": {
1479
+ "location": "ideal innovative Solutions pvt",
1480
+ "id": "67065eee4f0df6afaee141d9",
1481
+ "__typename": "getShipToType"
1482
+ },
1483
+ "shipTo": {
1484
+ "location": "ideal innovative Solutions pvt",
1485
+ "id": "67065eee4f0df6afaee141d9",
1486
+ "__typename": "getShipToType"
1487
+ },
1488
+ "type": "Asset",
1489
+ "taxes": null,
1490
+ "totalShippingCharges": null,
1491
+ "totalInvoiceItems": 1,
1492
+ "grandTotal": 57000,
1493
+ "is_deleted": false,
1494
+ "subTotal": 57000,
1495
+ "invoice_image_name": "1030202416204300082.pdf",
1496
+ "detail": {
1497
+ "columns": [
1498
+ {
1499
+ "_id": "68ca9b04c2ce7f1261635d4c",
1500
+ "header": "Unit Price",
1501
+ "field": "price",
1502
+ "is_amount": true,
1503
+ "__typename": "listingColumnsType"
1504
+ },
1505
+ {
1506
+ "_id": "68ca9b04c2ce7f1261635d48",
1507
+ "header": "Product",
1508
+ "field": "product",
1509
+ "is_amount": false,
1510
+ "__typename": "listingColumnsType"
1511
+ },
1512
+ {
1513
+ "_id": "68ca9b04c2ce7f1261635d4b",
1514
+ "header": "Quantity",
1515
+ "field": "quantity",
1516
+ "is_amount": false,
1517
+ "__typename": "listingColumnsType"
1518
+ },
1519
+ {
1520
+ "_id": "68ca9b04c2ce7f1261635d49",
1521
+ "header": "Serial Number",
1522
+ "field": "serial_number",
1523
+ "is_amount": false,
1524
+ "__typename": "listingColumnsType"
1525
+ },
1526
+ {
1527
+ "_id": "68ca9b04c2ce7f1261635d4a",
1528
+ "header": "SKU",
1529
+ "field": "sku",
1530
+ "is_amount": false,
1531
+ "__typename": "listingColumnsType"
1532
+ },
1533
+ {
1534
+ "_id": "68ca9b04c2ce7f1261635d4e",
1535
+ "header": "Total",
1536
+ "field": "total",
1537
+ "is_amount": true,
1538
+ "__typename": "listingColumnsType"
1539
+ },
1540
+ {
1541
+ "_id": "68ca9b04c2ce7f1261635d4d",
1542
+ "header": "Type",
1543
+ "field": "type",
1544
+ "is_amount": false,
1545
+ "__typename": "listingColumnsType"
1546
+ }
1547
+ ],
1548
+ "result": [
1549
+ {
1550
+ "product": "SSD",
1551
+ "serial_number": null,
1552
+ "sku": "512",
1553
+ "quantity": "1",
1554
+ "price": "57000",
1555
+ "type": "asset",
1556
+ "total": 57000,
1557
+ "__typename": "invoiceItemsType"
1558
+ }
1559
+ ],
1560
+ "__typename": "invoiceDetail"
1561
+ },
1562
+ "__typename": "InvoiceData"
1563
+ },
1564
+ {
1565
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729853020892_.pdf",
1566
+ "invoiceId": "INV-742878",
1567
+ "name": "174",
1568
+ "orderDate": "2024-10-09T10:54:57.134Z",
1569
+ "orderNumber": "174",
1570
+ "id": "670661c94f0df6afaee15d30",
1571
+ "vendor": {
1572
+ "id": "6706613b4f0df6afaee15d02",
1573
+ "name": "Ra Techonologes",
1574
+ "__typename": "vendors"
1575
+ },
1576
+ "shippingMethod": null,
1577
+ "company": "",
1578
+ "billTo": null,
1579
+ "shipTo": null,
1580
+ "type": null,
1581
+ "taxes": null,
1582
+ "totalShippingCharges": null,
1583
+ "totalInvoiceItems": 1241,
1584
+ "grandTotal": 50000,
1585
+ "is_deleted": false,
1586
+ "subTotal": 50000,
1587
+ "invoice_image_name": "1009202414592300078.pdf",
1588
+ "detail": {
1589
+ "columns": [
1590
+ {
1591
+ "_id": "68ca9b04c2ce7f1261635d4c",
1592
+ "header": "Unit Price",
1593
+ "field": "price",
1594
+ "is_amount": true,
1595
+ "__typename": "listingColumnsType"
1596
+ },
1597
+ {
1598
+ "_id": "68ca9b04c2ce7f1261635d48",
1599
+ "header": "Product",
1600
+ "field": "product",
1601
+ "is_amount": false,
1602
+ "__typename": "listingColumnsType"
1603
+ },
1604
+ {
1605
+ "_id": "68ca9b04c2ce7f1261635d4b",
1606
+ "header": "Quantity",
1607
+ "field": "quantity",
1608
+ "is_amount": false,
1609
+ "__typename": "listingColumnsType"
1610
+ },
1611
+ {
1612
+ "_id": "68ca9b04c2ce7f1261635d49",
1613
+ "header": "Serial Number",
1614
+ "field": "serial_number",
1615
+ "is_amount": false,
1616
+ "__typename": "listingColumnsType"
1617
+ },
1618
+ {
1619
+ "_id": "68ca9b04c2ce7f1261635d4a",
1620
+ "header": "SKU",
1621
+ "field": "sku",
1622
+ "is_amount": false,
1623
+ "__typename": "listingColumnsType"
1624
+ },
1625
+ {
1626
+ "_id": "68ca9b04c2ce7f1261635d4e",
1627
+ "header": "Total",
1628
+ "field": "total",
1629
+ "is_amount": true,
1630
+ "__typename": "listingColumnsType"
1631
+ },
1632
+ {
1633
+ "_id": "68ca9b04c2ce7f1261635d4d",
1634
+ "header": "Type",
1635
+ "field": "type",
1636
+ "is_amount": false,
1637
+ "__typename": "listingColumnsType"
1638
+ }
1639
+ ],
1640
+ "result": [
1641
+ {
1642
+ "product": "16Gb",
1643
+ "serial_number": null,
1644
+ "sku": "",
1645
+ "quantity": "12",
1646
+ "price": "3500",
1647
+ "type": "",
1648
+ "total": 42000,
1649
+ "__typename": "invoiceItemsType"
1650
+ },
1651
+ {
1652
+ "product": "8GB",
1653
+ "serial_number": null,
1654
+ "sku": null,
1655
+ "quantity": "4",
1656
+ "price": "1500",
1657
+ "type": "",
1658
+ "total": 6000,
1659
+ "__typename": "invoiceItemsType"
1660
+ },
1661
+ {
1662
+ "product": "Service Charges",
1663
+ "serial_number": null,
1664
+ "sku": null,
1665
+ "quantity": "1",
1666
+ "price": "2000",
1667
+ "type": "",
1668
+ "total": 2000,
1669
+ "__typename": "invoiceItemsType"
1670
+ }
1671
+ ],
1672
+ "__typename": "invoiceDetail"
1673
+ },
1674
+ "__typename": "InvoiceData"
1675
+ },
1676
+ {
1677
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729852906587_.pdf",
1678
+ "invoiceId": "INV-787820",
1679
+ "name": "Dell Laptop",
1680
+ "orderDate": "2023-10-24T10:52:59.068Z",
1681
+ "orderNumber": "479",
1682
+ "id": "670660f44f0df6afaee15973",
1683
+ "vendor": {
1684
+ "id": "670613074f0df6afaed83701",
1685
+ "name": "Click Solution",
1686
+ "__typename": "vendors"
1687
+ },
1688
+ "shippingMethod": null,
1689
+ "company": "",
1690
+ "billTo": null,
1691
+ "shipTo": null,
1692
+ "type": null,
1693
+ "taxes": null,
1694
+ "totalShippingCharges": null,
1695
+ "totalInvoiceItems": 2,
1696
+ "grandTotal": 110000,
1697
+ "is_deleted": false,
1698
+ "subTotal": 110000,
1699
+ "invoice_image_name": "1009202414585900077.pdf",
1700
+ "detail": {
1701
+ "columns": [
1702
+ {
1703
+ "_id": "68ca9b04c2ce7f1261635d4c",
1704
+ "header": "Unit Price",
1705
+ "field": "price",
1706
+ "is_amount": true,
1707
+ "__typename": "listingColumnsType"
1708
+ },
1709
+ {
1710
+ "_id": "68ca9b04c2ce7f1261635d48",
1711
+ "header": "Product",
1712
+ "field": "product",
1713
+ "is_amount": false,
1714
+ "__typename": "listingColumnsType"
1715
+ },
1716
+ {
1717
+ "_id": "68ca9b04c2ce7f1261635d4b",
1718
+ "header": "Quantity",
1719
+ "field": "quantity",
1720
+ "is_amount": false,
1721
+ "__typename": "listingColumnsType"
1722
+ },
1723
+ {
1724
+ "_id": "68ca9b04c2ce7f1261635d49",
1725
+ "header": "Serial Number",
1726
+ "field": "serial_number",
1727
+ "is_amount": false,
1728
+ "__typename": "listingColumnsType"
1729
+ },
1730
+ {
1731
+ "_id": "68ca9b04c2ce7f1261635d4a",
1732
+ "header": "SKU",
1733
+ "field": "sku",
1734
+ "is_amount": false,
1735
+ "__typename": "listingColumnsType"
1736
+ },
1737
+ {
1738
+ "_id": "68ca9b04c2ce7f1261635d4e",
1739
+ "header": "Total",
1740
+ "field": "total",
1741
+ "is_amount": true,
1742
+ "__typename": "listingColumnsType"
1743
+ },
1744
+ {
1745
+ "_id": "68ca9b04c2ce7f1261635d4d",
1746
+ "header": "Type",
1747
+ "field": "type",
1748
+ "is_amount": false,
1749
+ "__typename": "listingColumnsType"
1750
+ }
1751
+ ],
1752
+ "result": [
1753
+ {
1754
+ "product": "Dell 7390",
1755
+ "serial_number": null,
1756
+ "sku": "",
1757
+ "quantity": "2",
1758
+ "price": "55000",
1759
+ "type": "",
1760
+ "total": 110000,
1761
+ "__typename": "invoiceItemsType"
1762
+ }
1763
+ ],
1764
+ "__typename": "invoiceDetail"
1765
+ },
1766
+ "__typename": "InvoiceData"
1767
+ },
1768
+ {
1769
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729852863506_.pdf",
1770
+ "invoiceId": "INV-575183",
1771
+ "name": "Lcd Screen",
1772
+ "orderDate": "2023-09-16T10:48:32.586Z",
1773
+ "orderNumber": "551881",
1774
+ "id": "670660874f0df6afaee155e1",
1775
+ "vendor": {
1776
+ "id": "670528fd4f0df6afaecb2a8d",
1777
+ "name": "Choudhry Computers",
1778
+ "__typename": "vendors"
1779
+ },
1780
+ "shippingMethod": null,
1781
+ "company": "",
1782
+ "billTo": null,
1783
+ "shipTo": null,
1784
+ "type": null,
1785
+ "taxes": null,
1786
+ "totalShippingCharges": null,
1787
+ "totalInvoiceItems": 151515,
1788
+ "grandTotal": 205500,
1789
+ "is_deleted": false,
1790
+ "subTotal": 205500,
1791
+ "invoice_image_name": "1009202414581500076.pdf",
1792
+ "detail": {
1793
+ "columns": [
1794
+ {
1795
+ "_id": "68ca9b04c2ce7f1261635d4c",
1796
+ "header": "Unit Price",
1797
+ "field": "price",
1798
+ "is_amount": true,
1799
+ "__typename": "listingColumnsType"
1800
+ },
1801
+ {
1802
+ "_id": "68ca9b04c2ce7f1261635d48",
1803
+ "header": "Product",
1804
+ "field": "product",
1805
+ "is_amount": false,
1806
+ "__typename": "listingColumnsType"
1807
+ },
1808
+ {
1809
+ "_id": "68ca9b04c2ce7f1261635d4b",
1810
+ "header": "Quantity",
1811
+ "field": "quantity",
1812
+ "is_amount": false,
1813
+ "__typename": "listingColumnsType"
1814
+ },
1815
+ {
1816
+ "_id": "68ca9b04c2ce7f1261635d49",
1817
+ "header": "Serial Number",
1818
+ "field": "serial_number",
1819
+ "is_amount": false,
1820
+ "__typename": "listingColumnsType"
1821
+ },
1822
+ {
1823
+ "_id": "68ca9b04c2ce7f1261635d4a",
1824
+ "header": "SKU",
1825
+ "field": "sku",
1826
+ "is_amount": false,
1827
+ "__typename": "listingColumnsType"
1828
+ },
1829
+ {
1830
+ "_id": "68ca9b04c2ce7f1261635d4e",
1831
+ "header": "Total",
1832
+ "field": "total",
1833
+ "is_amount": true,
1834
+ "__typename": "listingColumnsType"
1835
+ },
1836
+ {
1837
+ "_id": "68ca9b04c2ce7f1261635d4d",
1838
+ "header": "Type",
1839
+ "field": "type",
1840
+ "is_amount": false,
1841
+ "__typename": "listingColumnsType"
1842
+ }
1843
+ ],
1844
+ "result": [
1845
+ {
1846
+ "product": "View Sonic",
1847
+ "serial_number": null,
1848
+ "sku": "",
1849
+ "quantity": "15",
1850
+ "price": "13500",
1851
+ "type": "",
1852
+ "total": 202500,
1853
+ "__typename": "invoiceItemsType"
1854
+ },
1855
+ {
1856
+ "product": "hdmi",
1857
+ "serial_number": null,
1858
+ "sku": null,
1859
+ "quantity": "15",
1860
+ "price": "100",
1861
+ "type": "",
1862
+ "total": 1500,
1863
+ "__typename": "invoiceItemsType"
1864
+ },
1865
+ {
1866
+ "product": "Power Cable",
1867
+ "serial_number": null,
1868
+ "sku": null,
1869
+ "quantity": "15",
1870
+ "price": "100",
1871
+ "type": "",
1872
+ "total": 1500,
1873
+ "__typename": "invoiceItemsType"
1874
+ }
1875
+ ],
1876
+ "__typename": "invoiceDetail"
1877
+ },
1878
+ "__typename": "InvoiceData"
1879
+ },
1880
+ {
1881
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729852810220_.pdf",
1882
+ "invoiceId": "INV-401638",
1883
+ "name": "inv-2022-0103",
1884
+ "orderDate": "2024-03-08T10:44:10.425Z",
1885
+ "orderNumber": "inv-2022-0103",
1886
+ "id": "67065f3f4f0df6afaee14225",
1887
+ "vendor": {
1888
+ "id": "67065ec74f0df6afaee141a6",
1889
+ "name": "Unique GADGETS",
1890
+ "__typename": "vendors"
1891
+ },
1892
+ "shippingMethod": {
1893
+ "_id": "67065f084f0df6afaee141f9",
1894
+ "name": "personal",
1895
+ "__typename": "ShippingMethods"
1896
+ },
1897
+ "company": "",
1898
+ "billTo": {
1899
+ "location": "ideal innovative Solutions pvt",
1900
+ "id": "67065eee4f0df6afaee141d9",
1901
+ "__typename": "getShipToType"
1902
+ },
1903
+ "shipTo": {
1904
+ "location": "ideal innovative Solutions pvt",
1905
+ "id": "67065eee4f0df6afaee141d9",
1906
+ "__typename": "getShipToType"
1907
+ },
1908
+ "type": null,
1909
+ "taxes": null,
1910
+ "totalShippingCharges": null,
1911
+ "totalInvoiceItems": 1,
1912
+ "grandTotal": 50000,
1913
+ "is_deleted": false,
1914
+ "subTotal": 50000,
1915
+ "invoice_image_name": "1009202414575800075.pdf",
1916
+ "detail": {
1917
+ "columns": [
1918
+ {
1919
+ "_id": "68ca9b04c2ce7f1261635d4c",
1920
+ "header": "Unit Price",
1921
+ "field": "price",
1922
+ "is_amount": true,
1923
+ "__typename": "listingColumnsType"
1924
+ },
1925
+ {
1926
+ "_id": "68ca9b04c2ce7f1261635d48",
1927
+ "header": "Product",
1928
+ "field": "product",
1929
+ "is_amount": false,
1930
+ "__typename": "listingColumnsType"
1931
+ },
1932
+ {
1933
+ "_id": "68ca9b04c2ce7f1261635d4b",
1934
+ "header": "Quantity",
1935
+ "field": "quantity",
1936
+ "is_amount": false,
1937
+ "__typename": "listingColumnsType"
1938
+ },
1939
+ {
1940
+ "_id": "68ca9b04c2ce7f1261635d49",
1941
+ "header": "Serial Number",
1942
+ "field": "serial_number",
1943
+ "is_amount": false,
1944
+ "__typename": "listingColumnsType"
1945
+ },
1946
+ {
1947
+ "_id": "68ca9b04c2ce7f1261635d4a",
1948
+ "header": "SKU",
1949
+ "field": "sku",
1950
+ "is_amount": false,
1951
+ "__typename": "listingColumnsType"
1952
+ },
1953
+ {
1954
+ "_id": "68ca9b04c2ce7f1261635d4e",
1955
+ "header": "Total",
1956
+ "field": "total",
1957
+ "is_amount": true,
1958
+ "__typename": "listingColumnsType"
1959
+ },
1960
+ {
1961
+ "_id": "68ca9b04c2ce7f1261635d4d",
1962
+ "header": "Type",
1963
+ "field": "type",
1964
+ "is_amount": false,
1965
+ "__typename": "listingColumnsType"
1966
+ }
1967
+ ],
1968
+ "result": [
1969
+ {
1970
+ "product": "WD SEBTINEL DX4000 NAS",
1971
+ "serial_number": null,
1972
+ "sku": "",
1973
+ "quantity": "1",
1974
+ "price": "50000",
1975
+ "type": "",
1976
+ "total": 50000,
1977
+ "__typename": "invoiceItemsType"
1978
+ }
1979
+ ],
1980
+ "__typename": "invoiceDetail"
1981
+ },
1982
+ "__typename": "InvoiceData"
1983
+ },
1984
+ {
1985
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729852716660_.pdf",
1986
+ "invoiceId": "INV-812804",
1987
+ "name": "3277-8762-123-70",
1988
+ "orderDate": "2023-01-09T10:00:46.953Z",
1989
+ "orderNumber": "3277-8762-123-70",
1990
+ "id": "670656fc4f0df6afaee0e94d",
1991
+ "vendor": {
1992
+ "id": "670655774f0df6afaee0ae88",
1993
+ "name": "MR Technologies",
1994
+ "__typename": "vendors"
1995
+ },
1996
+ "shippingMethod": null,
1997
+ "company": "",
1998
+ "billTo": null,
1999
+ "shipTo": null,
2000
+ "type": null,
2001
+ "taxes": null,
2002
+ "totalShippingCharges": null,
2003
+ "totalInvoiceItems": 111121411511,
2004
+ "grandTotal": 139850,
2005
+ "is_deleted": false,
2006
+ "subTotal": 139850,
2007
+ "invoice_image_name": "1009202414573400074.pdf",
2008
+ "detail": {
2009
+ "columns": [
2010
+ {
2011
+ "_id": "68ca9b04c2ce7f1261635d4c",
2012
+ "header": "Unit Price",
2013
+ "field": "price",
2014
+ "is_amount": true,
2015
+ "__typename": "listingColumnsType"
2016
+ },
2017
+ {
2018
+ "_id": "68ca9b04c2ce7f1261635d48",
2019
+ "header": "Product",
2020
+ "field": "product",
2021
+ "is_amount": false,
2022
+ "__typename": "listingColumnsType"
2023
+ },
2024
+ {
2025
+ "_id": "68ca9b04c2ce7f1261635d4b",
2026
+ "header": "Quantity",
2027
+ "field": "quantity",
2028
+ "is_amount": false,
2029
+ "__typename": "listingColumnsType"
2030
+ },
2031
+ {
2032
+ "_id": "68ca9b04c2ce7f1261635d49",
2033
+ "header": "Serial Number",
2034
+ "field": "serial_number",
2035
+ "is_amount": false,
2036
+ "__typename": "listingColumnsType"
2037
+ },
2038
+ {
2039
+ "_id": "68ca9b04c2ce7f1261635d4a",
2040
+ "header": "SKU",
2041
+ "field": "sku",
2042
+ "is_amount": false,
2043
+ "__typename": "listingColumnsType"
2044
+ },
2045
+ {
2046
+ "_id": "68ca9b04c2ce7f1261635d4e",
2047
+ "header": "Total",
2048
+ "field": "total",
2049
+ "is_amount": true,
2050
+ "__typename": "listingColumnsType"
2051
+ },
2052
+ {
2053
+ "_id": "68ca9b04c2ce7f1261635d4d",
2054
+ "header": "Type",
2055
+ "field": "type",
2056
+ "is_amount": false,
2057
+ "__typename": "listingColumnsType"
2058
+ }
2059
+ ],
2060
+ "result": [
2061
+ {
2062
+ "product": "ZKTeco Access Control F22",
2063
+ "serial_number": null,
2064
+ "sku": "",
2065
+ "quantity": "1",
2066
+ "price": "30500",
2067
+ "type": "",
2068
+ "total": 30500,
2069
+ "__typename": "invoiceItemsType"
2070
+ },
2071
+ {
2072
+ "product": "Bio-metric",
2073
+ "serial_number": null,
2074
+ "sku": null,
2075
+ "quantity": "1",
2076
+ "price": "17300",
2077
+ "type": "",
2078
+ "total": 17300,
2079
+ "__typename": "invoiceItemsType"
2080
+ },
2081
+ {
2082
+ "product": "door lock",
2083
+ "serial_number": null,
2084
+ "sku": null,
2085
+ "quantity": "1",
2086
+ "price": "5000",
2087
+ "type": "",
2088
+ "total": 5000,
2089
+ "__typename": "invoiceItemsType"
2090
+ },
2091
+ {
2092
+ "product": "Power supply for door lock",
2093
+ "serial_number": null,
2094
+ "sku": null,
2095
+ "quantity": "1",
2096
+ "price": "1650",
2097
+ "type": "",
2098
+ "total": 1650,
2099
+ "__typename": "invoiceItemsType"
2100
+ },
2101
+ {
2102
+ "product": "2mp camera",
2103
+ "serial_number": null,
2104
+ "sku": null,
2105
+ "quantity": "2",
2106
+ "price": "4300",
2107
+ "type": "",
2108
+ "total": 8600,
2109
+ "__typename": "invoiceItemsType"
2110
+ },
2111
+ {
2112
+ "product": "cable role for camera",
2113
+ "serial_number": null,
2114
+ "sku": null,
2115
+ "quantity": "1",
2116
+ "price": "6000",
2117
+ "type": "",
2118
+ "total": 6000,
2119
+ "__typename": "invoiceItemsType"
2120
+ },
2121
+ {
2122
+ "product": "connector for camera",
2123
+ "serial_number": null,
2124
+ "sku": null,
2125
+ "quantity": "4",
2126
+ "price": "1000",
2127
+ "type": "",
2128
+ "total": 4000,
2129
+ "__typename": "invoiceItemsType"
2130
+ },
2131
+ {
2132
+ "product": "pdu for rack",
2133
+ "serial_number": null,
2134
+ "sku": null,
2135
+ "quantity": "1",
2136
+ "price": "5500",
2137
+ "type": "",
2138
+ "total": 5500,
2139
+ "__typename": "invoiceItemsType"
2140
+ },
2141
+ {
2142
+ "product": "set for reception",
2143
+ "serial_number": null,
2144
+ "sku": null,
2145
+ "quantity": "1",
2146
+ "price": "11500",
2147
+ "type": "",
2148
+ "total": 11500,
2149
+ "__typename": "invoiceItemsType"
2150
+ },
2151
+ {
2152
+ "product": "set of extentions",
2153
+ "serial_number": null,
2154
+ "sku": null,
2155
+ "quantity": "5",
2156
+ "price": "5800",
2157
+ "type": "",
2158
+ "total": 29000,
2159
+ "__typename": "invoiceItemsType"
2160
+ },
2161
+ {
2162
+ "product": "set kitchen",
2163
+ "serial_number": null,
2164
+ "sku": null,
2165
+ "quantity": "1",
2166
+ "price": "2800",
2167
+ "type": "",
2168
+ "total": 2800,
2169
+ "__typename": "invoiceItemsType"
2170
+ },
2171
+ {
2172
+ "product": "installation",
2173
+ "serial_number": null,
2174
+ "sku": null,
2175
+ "quantity": "1",
2176
+ "price": "18000",
2177
+ "type": "",
2178
+ "total": 18000,
2179
+ "__typename": "invoiceItemsType"
2180
+ }
2181
+ ],
2182
+ "__typename": "invoiceDetail"
2183
+ },
2184
+ "__typename": "InvoiceData"
2185
+ },
2186
+ {
2187
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729850541037_.pdf",
2188
+ "invoiceId": "INV-312543",
2189
+ "name": "Dell Laptop",
2190
+ "orderDate": "2024-01-06T06:35:25.867Z",
2191
+ "orderNumber": "5518810",
2192
+ "id": "6706251d4f0df6afaed9d8aa",
2193
+ "vendor": {
2194
+ "id": "670528fd4f0df6afaecb2a8d",
2195
+ "name": "Choudhry Computers",
2196
+ "__typename": "vendors"
2197
+ },
2198
+ "shippingMethod": null,
2199
+ "company": "",
2200
+ "billTo": null,
2201
+ "shipTo": null,
2202
+ "type": "Asset",
2203
+ "taxes": null,
2204
+ "totalShippingCharges": null,
2205
+ "totalInvoiceItems": 2,
2206
+ "grandTotal": 112000,
2207
+ "is_deleted": false,
2208
+ "subTotal": 112000,
2209
+ "invoice_image_name": "1008202417364400072.pdf",
2210
+ "detail": {
2211
+ "columns": [
2212
+ {
2213
+ "_id": "68ca9b04c2ce7f1261635d4c",
2214
+ "header": "Unit Price",
2215
+ "field": "price",
2216
+ "is_amount": true,
2217
+ "__typename": "listingColumnsType"
2218
+ },
2219
+ {
2220
+ "_id": "68ca9b04c2ce7f1261635d48",
2221
+ "header": "Product",
2222
+ "field": "product",
2223
+ "is_amount": false,
2224
+ "__typename": "listingColumnsType"
2225
+ },
2226
+ {
2227
+ "_id": "68ca9b04c2ce7f1261635d4b",
2228
+ "header": "Quantity",
2229
+ "field": "quantity",
2230
+ "is_amount": false,
2231
+ "__typename": "listingColumnsType"
2232
+ },
2233
+ {
2234
+ "_id": "68ca9b04c2ce7f1261635d49",
2235
+ "header": "Serial Number",
2236
+ "field": "serial_number",
2237
+ "is_amount": false,
2238
+ "__typename": "listingColumnsType"
2239
+ },
2240
+ {
2241
+ "_id": "68ca9b04c2ce7f1261635d4a",
2242
+ "header": "SKU",
2243
+ "field": "sku",
2244
+ "is_amount": false,
2245
+ "__typename": "listingColumnsType"
2246
+ },
2247
+ {
2248
+ "_id": "68ca9b04c2ce7f1261635d4e",
2249
+ "header": "Total",
2250
+ "field": "total",
2251
+ "is_amount": true,
2252
+ "__typename": "listingColumnsType"
2253
+ },
2254
+ {
2255
+ "_id": "68ca9b04c2ce7f1261635d4d",
2256
+ "header": "Type",
2257
+ "field": "type",
2258
+ "is_amount": false,
2259
+ "__typename": "listingColumnsType"
2260
+ }
2261
+ ],
2262
+ "result": [
2263
+ {
2264
+ "product": "Dell Laptop",
2265
+ "serial_number": null,
2266
+ "sku": "",
2267
+ "quantity": "2",
2268
+ "price": "56000",
2269
+ "type": "asset",
2270
+ "total": 112000,
2271
+ "__typename": "invoiceItemsType"
2272
+ }
2273
+ ],
2274
+ "__typename": "invoiceDetail"
2275
+ },
2276
+ "__typename": "InvoiceData"
2277
+ },
2278
+ {
2279
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729850355389_.pdf",
2280
+ "invoiceId": "INV-989795",
2281
+ "name": "DELL Screen",
2282
+ "orderDate": "2024-01-06T06:30:53.758Z",
2283
+ "orderNumber": "0515",
2284
+ "id": "670624124f0df6afaed9a430",
2285
+ "vendor": {
2286
+ "id": "670528fd4f0df6afaecb2a8d",
2287
+ "name": "Choudhry Computers",
2288
+ "__typename": "vendors"
2289
+ },
2290
+ "shippingMethod": null,
2291
+ "company": "",
2292
+ "billTo": null,
2293
+ "shipTo": null,
2294
+ "type": "Asset",
2295
+ "taxes": null,
2296
+ "totalShippingCharges": null,
2297
+ "totalInvoiceItems": 55,
2298
+ "grandTotal": 82500,
2299
+ "is_deleted": false,
2300
+ "subTotal": 82500,
2301
+ "invoice_image_name": "1008202417363000071.pdf",
2302
+ "detail": {
2303
+ "columns": [
2304
+ {
2305
+ "_id": "68ca9b04c2ce7f1261635d4c",
2306
+ "header": "Unit Price",
2307
+ "field": "price",
2308
+ "is_amount": true,
2309
+ "__typename": "listingColumnsType"
2310
+ },
2311
+ {
2312
+ "_id": "68ca9b04c2ce7f1261635d48",
2313
+ "header": "Product",
2314
+ "field": "product",
2315
+ "is_amount": false,
2316
+ "__typename": "listingColumnsType"
2317
+ },
2318
+ {
2319
+ "_id": "68ca9b04c2ce7f1261635d4b",
2320
+ "header": "Quantity",
2321
+ "field": "quantity",
2322
+ "is_amount": false,
2323
+ "__typename": "listingColumnsType"
2324
+ },
2325
+ {
2326
+ "_id": "68ca9b04c2ce7f1261635d49",
2327
+ "header": "Serial Number",
2328
+ "field": "serial_number",
2329
+ "is_amount": false,
2330
+ "__typename": "listingColumnsType"
2331
+ },
2332
+ {
2333
+ "_id": "68ca9b04c2ce7f1261635d4a",
2334
+ "header": "SKU",
2335
+ "field": "sku",
2336
+ "is_amount": false,
2337
+ "__typename": "listingColumnsType"
2338
+ },
2339
+ {
2340
+ "_id": "68ca9b04c2ce7f1261635d4e",
2341
+ "header": "Total",
2342
+ "field": "total",
2343
+ "is_amount": true,
2344
+ "__typename": "listingColumnsType"
2345
+ },
2346
+ {
2347
+ "_id": "68ca9b04c2ce7f1261635d4d",
2348
+ "header": "Type",
2349
+ "field": "type",
2350
+ "is_amount": false,
2351
+ "__typename": "listingColumnsType"
2352
+ }
2353
+ ],
2354
+ "result": [
2355
+ {
2356
+ "product": "DELL Screens",
2357
+ "serial_number": null,
2358
+ "sku": "",
2359
+ "quantity": "5",
2360
+ "price": "16000",
2361
+ "type": "asset",
2362
+ "total": 80000,
2363
+ "__typename": "invoiceItemsType"
2364
+ },
2365
+ {
2366
+ "product": "Hdmi Cable",
2367
+ "serial_number": null,
2368
+ "sku": null,
2369
+ "quantity": "5",
2370
+ "price": "500",
2371
+ "type": "",
2372
+ "total": 2500,
2373
+ "__typename": "invoiceItemsType"
2374
+ }
2375
+ ],
2376
+ "__typename": "invoiceDetail"
2377
+ },
2378
+ "__typename": "InvoiceData"
2379
+ },
2380
+ {
2381
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729850275171_.pdf",
2382
+ "invoiceId": "INV-298981",
2383
+ "name": "Dell Laptop",
2384
+ "orderDate": "2024-07-11T06:24:20.728Z",
2385
+ "orderNumber": "051",
2386
+ "id": "670623124f0df6afaed988f0",
2387
+ "vendor": {
2388
+ "id": "670528fd4f0df6afaecb2a8d",
2389
+ "name": "Choudhry Computers",
2390
+ "__typename": "vendors"
2391
+ },
2392
+ "shippingMethod": null,
2393
+ "company": "",
2394
+ "billTo": null,
2395
+ "shipTo": null,
2396
+ "type": "Asset",
2397
+ "taxes": null,
2398
+ "totalShippingCharges": null,
2399
+ "totalInvoiceItems": 111,
2400
+ "grandTotal": 149500,
2401
+ "is_deleted": false,
2402
+ "subTotal": 149500,
2403
+ "invoice_image_name": "1008202417361800070.pdf",
2404
+ "detail": {
2405
+ "columns": [
2406
+ {
2407
+ "_id": "68ca9b04c2ce7f1261635d4c",
2408
+ "header": "Unit Price",
2409
+ "field": "price",
2410
+ "is_amount": true,
2411
+ "__typename": "listingColumnsType"
2412
+ },
2413
+ {
2414
+ "_id": "68ca9b04c2ce7f1261635d48",
2415
+ "header": "Product",
2416
+ "field": "product",
2417
+ "is_amount": false,
2418
+ "__typename": "listingColumnsType"
2419
+ },
2420
+ {
2421
+ "_id": "68ca9b04c2ce7f1261635d4b",
2422
+ "header": "Quantity",
2423
+ "field": "quantity",
2424
+ "is_amount": false,
2425
+ "__typename": "listingColumnsType"
2426
+ },
2427
+ {
2428
+ "_id": "68ca9b04c2ce7f1261635d49",
2429
+ "header": "Serial Number",
2430
+ "field": "serial_number",
2431
+ "is_amount": false,
2432
+ "__typename": "listingColumnsType"
2433
+ },
2434
+ {
2435
+ "_id": "68ca9b04c2ce7f1261635d4a",
2436
+ "header": "SKU",
2437
+ "field": "sku",
2438
+ "is_amount": false,
2439
+ "__typename": "listingColumnsType"
2440
+ },
2441
+ {
2442
+ "_id": "68ca9b04c2ce7f1261635d4e",
2443
+ "header": "Total",
2444
+ "field": "total",
2445
+ "is_amount": true,
2446
+ "__typename": "listingColumnsType"
2447
+ },
2448
+ {
2449
+ "_id": "68ca9b04c2ce7f1261635d4d",
2450
+ "header": "Type",
2451
+ "field": "type",
2452
+ "is_amount": false,
2453
+ "__typename": "listingColumnsType"
2454
+ }
2455
+ ],
2456
+ "result": [
2457
+ {
2458
+ "product": "DELL 5420",
2459
+ "serial_number": null,
2460
+ "sku": "",
2461
+ "quantity": "1",
2462
+ "price": "89000",
2463
+ "type": "asset",
2464
+ "total": 89000,
2465
+ "__typename": "invoiceItemsType"
2466
+ },
2467
+ {
2468
+ "product": "DELL 7490",
2469
+ "serial_number": null,
2470
+ "sku": null,
2471
+ "quantity": "1",
2472
+ "price": "58000",
2473
+ "type": "asset",
2474
+ "total": 58000,
2475
+ "__typename": "invoiceItemsType"
2476
+ },
2477
+ {
2478
+ "product": "Previous",
2479
+ "serial_number": null,
2480
+ "sku": null,
2481
+ "quantity": "1",
2482
+ "price": "2500",
2483
+ "type": "",
2484
+ "total": 2500,
2485
+ "__typename": "invoiceItemsType"
2486
+ }
2487
+ ],
2488
+ "__typename": "invoiceDetail"
2489
+ },
2490
+ "__typename": "InvoiceData"
2491
+ },
2492
+ {
2493
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729850143951_.pdf",
2494
+ "invoiceId": "INV-461155",
2495
+ "name": "16Gb",
2496
+ "orderDate": "2024-02-01T06:22:53.547Z",
2497
+ "orderNumber": "2669",
2498
+ "id": "670621864f0df6afaed97703",
2499
+ "vendor": {
2500
+ "id": "670620ac4f0df6afaed960df",
2501
+ "name": "Computer Iin",
2502
+ "__typename": "vendors"
2503
+ },
2504
+ "shippingMethod": null,
2505
+ "company": "",
2506
+ "billTo": null,
2507
+ "shipTo": null,
2508
+ "type": "Accessories",
2509
+ "taxes": null,
2510
+ "totalShippingCharges": null,
2511
+ "totalInvoiceItems": 2,
2512
+ "grandTotal": 15500,
2513
+ "is_deleted": false,
2514
+ "subTotal": 15500,
2515
+ "invoice_image_name": "1008202417360400069.pdf",
2516
+ "detail": {
2517
+ "columns": [
2518
+ {
2519
+ "_id": "68ca9b04c2ce7f1261635d4c",
2520
+ "header": "Unit Price",
2521
+ "field": "price",
2522
+ "is_amount": true,
2523
+ "__typename": "listingColumnsType"
2524
+ },
2525
+ {
2526
+ "_id": "68ca9b04c2ce7f1261635d48",
2527
+ "header": "Product",
2528
+ "field": "product",
2529
+ "is_amount": false,
2530
+ "__typename": "listingColumnsType"
2531
+ },
2532
+ {
2533
+ "_id": "68ca9b04c2ce7f1261635d4b",
2534
+ "header": "Quantity",
2535
+ "field": "quantity",
2536
+ "is_amount": false,
2537
+ "__typename": "listingColumnsType"
2538
+ },
2539
+ {
2540
+ "_id": "68ca9b04c2ce7f1261635d49",
2541
+ "header": "Serial Number",
2542
+ "field": "serial_number",
2543
+ "is_amount": false,
2544
+ "__typename": "listingColumnsType"
2545
+ },
2546
+ {
2547
+ "_id": "68ca9b04c2ce7f1261635d4a",
2548
+ "header": "SKU",
2549
+ "field": "sku",
2550
+ "is_amount": false,
2551
+ "__typename": "listingColumnsType"
2552
+ },
2553
+ {
2554
+ "_id": "68ca9b04c2ce7f1261635d4e",
2555
+ "header": "Total",
2556
+ "field": "total",
2557
+ "is_amount": true,
2558
+ "__typename": "listingColumnsType"
2559
+ },
2560
+ {
2561
+ "_id": "68ca9b04c2ce7f1261635d4d",
2562
+ "header": "Type",
2563
+ "field": "type",
2564
+ "is_amount": false,
2565
+ "__typename": "listingColumnsType"
2566
+ }
2567
+ ],
2568
+ "result": [
2569
+ {
2570
+ "product": "16GB DISK",
2571
+ "serial_number": null,
2572
+ "sku": "",
2573
+ "quantity": "2",
2574
+ "price": "7750",
2575
+ "type": "accessories",
2576
+ "total": 15500,
2577
+ "__typename": "invoiceItemsType"
2578
+ }
2579
+ ],
2580
+ "__typename": "invoiceDetail"
2581
+ },
2582
+ "__typename": "InvoiceData"
2583
+ },
2584
+ {
2585
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729850006959_.pdf",
2586
+ "invoiceId": "INV-818257",
2587
+ "name": "Printer And Scanner",
2588
+ "orderDate": "2024-03-14T06:11:59.811Z",
2589
+ "orderNumber": "1429",
2590
+ "id": "67061fc74f0df6afaed94388",
2591
+ "vendor": {
2592
+ "id": "67061f194f0df6afaed93669",
2593
+ "name": "FM",
2594
+ "__typename": "vendors"
2595
+ },
2596
+ "shippingMethod": null,
2597
+ "company": "",
2598
+ "billTo": null,
2599
+ "shipTo": null,
2600
+ "type": "Asset",
2601
+ "taxes": null,
2602
+ "totalShippingCharges": null,
2603
+ "totalInvoiceItems": 11,
2604
+ "grandTotal": 52500,
2605
+ "is_deleted": false,
2606
+ "subTotal": 52500,
2607
+ "invoice_image_name": "1008202417354700068.pdf",
2608
+ "detail": {
2609
+ "columns": [
2610
+ {
2611
+ "_id": "68ca9b04c2ce7f1261635d4c",
2612
+ "header": "Unit Price",
2613
+ "field": "price",
2614
+ "is_amount": true,
2615
+ "__typename": "listingColumnsType"
2616
+ },
2617
+ {
2618
+ "_id": "68ca9b04c2ce7f1261635d48",
2619
+ "header": "Product",
2620
+ "field": "product",
2621
+ "is_amount": false,
2622
+ "__typename": "listingColumnsType"
2623
+ },
2624
+ {
2625
+ "_id": "68ca9b04c2ce7f1261635d4b",
2626
+ "header": "Quantity",
2627
+ "field": "quantity",
2628
+ "is_amount": false,
2629
+ "__typename": "listingColumnsType"
2630
+ },
2631
+ {
2632
+ "_id": "68ca9b04c2ce7f1261635d49",
2633
+ "header": "Serial Number",
2634
+ "field": "serial_number",
2635
+ "is_amount": false,
2636
+ "__typename": "listingColumnsType"
2637
+ },
2638
+ {
2639
+ "_id": "68ca9b04c2ce7f1261635d4a",
2640
+ "header": "SKU",
2641
+ "field": "sku",
2642
+ "is_amount": false,
2643
+ "__typename": "listingColumnsType"
2644
+ },
2645
+ {
2646
+ "_id": "68ca9b04c2ce7f1261635d4e",
2647
+ "header": "Total",
2648
+ "field": "total",
2649
+ "is_amount": true,
2650
+ "__typename": "listingColumnsType"
2651
+ },
2652
+ {
2653
+ "_id": "68ca9b04c2ce7f1261635d4d",
2654
+ "header": "Type",
2655
+ "field": "type",
2656
+ "is_amount": false,
2657
+ "__typename": "listingColumnsType"
2658
+ }
2659
+ ],
2660
+ "result": [
2661
+ {
2662
+ "product": "Panasonic Scanner",
2663
+ "serial_number": null,
2664
+ "sku": "",
2665
+ "quantity": "1",
2666
+ "price": "18500",
2667
+ "type": "asset",
2668
+ "total": 18500,
2669
+ "__typename": "invoiceItemsType"
2670
+ },
2671
+ {
2672
+ "product": "HP Printer",
2673
+ "serial_number": null,
2674
+ "sku": null,
2675
+ "quantity": "1",
2676
+ "price": "34000",
2677
+ "type": "asset",
2678
+ "total": 34000,
2679
+ "__typename": "invoiceItemsType"
2680
+ }
2681
+ ],
2682
+ "__typename": "invoiceDetail"
2683
+ },
2684
+ "__typename": "InvoiceData"
2685
+ },
2686
+ {
2687
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729853698752_.pdf",
2688
+ "invoiceId": "INV-405270",
2689
+ "name": "Lcd Screen",
2690
+ "orderDate": "2023-09-15T05:55:31.140Z",
2691
+ "orderNumber": "5518",
2692
+ "id": "67061e984f0df6afaed9222b",
2693
+ "vendor": {
2694
+ "id": "670528fd4f0df6afaecb2a8d",
2695
+ "name": "Choudhry Computers",
2696
+ "__typename": "vendors"
2697
+ },
2698
+ "shippingMethod": null,
2699
+ "company": "",
2700
+ "billTo": null,
2701
+ "shipTo": null,
2702
+ "type": "Asset",
2703
+ "taxes": null,
2704
+ "totalShippingCharges": null,
2705
+ "totalInvoiceItems": 8816,
2706
+ "grandTotal": 241600,
2707
+ "is_deleted": false,
2708
+ "subTotal": 241600,
2709
+ "invoice_image_name": "1008202417353700067.pdf",
2710
+ "detail": {
2711
+ "columns": [
2712
+ {
2713
+ "_id": "68ca9b04c2ce7f1261635d4c",
2714
+ "header": "Unit Price",
2715
+ "field": "price",
2716
+ "is_amount": true,
2717
+ "__typename": "listingColumnsType"
2718
+ },
2719
+ {
2720
+ "_id": "68ca9b04c2ce7f1261635d48",
2721
+ "header": "Product",
2722
+ "field": "product",
2723
+ "is_amount": false,
2724
+ "__typename": "listingColumnsType"
2725
+ },
2726
+ {
2727
+ "_id": "68ca9b04c2ce7f1261635d4b",
2728
+ "header": "Quantity",
2729
+ "field": "quantity",
2730
+ "is_amount": false,
2731
+ "__typename": "listingColumnsType"
2732
+ },
2733
+ {
2734
+ "_id": "68ca9b04c2ce7f1261635d49",
2735
+ "header": "Serial Number",
2736
+ "field": "serial_number",
2737
+ "is_amount": false,
2738
+ "__typename": "listingColumnsType"
2739
+ },
2740
+ {
2741
+ "_id": "68ca9b04c2ce7f1261635d4a",
2742
+ "header": "SKU",
2743
+ "field": "sku",
2744
+ "is_amount": false,
2745
+ "__typename": "listingColumnsType"
2746
+ },
2747
+ {
2748
+ "_id": "68ca9b04c2ce7f1261635d4e",
2749
+ "header": "Total",
2750
+ "field": "total",
2751
+ "is_amount": true,
2752
+ "__typename": "listingColumnsType"
2753
+ },
2754
+ {
2755
+ "_id": "68ca9b04c2ce7f1261635d4d",
2756
+ "header": "Type",
2757
+ "field": "type",
2758
+ "is_amount": false,
2759
+ "__typename": "listingColumnsType"
2760
+ }
2761
+ ],
2762
+ "result": [
2763
+ {
2764
+ "product": "Lcd Screens 24 inc",
2765
+ "serial_number": null,
2766
+ "sku": "",
2767
+ "quantity": "8",
2768
+ "price": "13500",
2769
+ "type": "asset",
2770
+ "total": 108000,
2771
+ "__typename": "invoiceItemsType"
2772
+ },
2773
+ {
2774
+ "product": "Lcd Screens 22 inc",
2775
+ "serial_number": null,
2776
+ "sku": null,
2777
+ "quantity": "8",
2778
+ "price": "13500",
2779
+ "type": "asset",
2780
+ "total": 108000,
2781
+ "__typename": "invoiceItemsType"
2782
+ },
2783
+ {
2784
+ "product": "hdmi cable",
2785
+ "serial_number": null,
2786
+ "sku": null,
2787
+ "quantity": "16",
2788
+ "price": "1600",
2789
+ "type": "",
2790
+ "total": 25600,
2791
+ "__typename": "invoiceItemsType"
2792
+ }
2793
+ ],
2794
+ "__typename": "invoiceDetail"
2795
+ },
2796
+ "__typename": "InvoiceData"
2797
+ },
2798
+ {
2799
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729849618974_.pdf",
2800
+ "invoiceId": "INV-342788",
2801
+ "name": "Dell Laptop",
2802
+ "orderDate": "2024-06-24T05:50:33.548Z",
2803
+ "orderNumber": "18810",
2804
+ "id": "67061aaf4f0df6afaed8bf13",
2805
+ "vendor": {
2806
+ "id": "670528fd4f0df6afaecb2a8d",
2807
+ "name": "Choudhry Computers",
2808
+ "__typename": "vendors"
2809
+ },
2810
+ "shippingMethod": null,
2811
+ "company": "",
2812
+ "billTo": null,
2813
+ "shipTo": null,
2814
+ "type": "Asset",
2815
+ "taxes": null,
2816
+ "totalShippingCharges": null,
2817
+ "totalInvoiceItems": 1,
2818
+ "grandTotal": 54000,
2819
+ "is_deleted": false,
2820
+ "subTotal": 54000,
2821
+ "invoice_image_name": "1008202417351400065.pdf",
2822
+ "detail": {
2823
+ "columns": [
2824
+ {
2825
+ "_id": "68ca9b04c2ce7f1261635d4c",
2826
+ "header": "Unit Price",
2827
+ "field": "price",
2828
+ "is_amount": true,
2829
+ "__typename": "listingColumnsType"
2830
+ },
2831
+ {
2832
+ "_id": "68ca9b04c2ce7f1261635d48",
2833
+ "header": "Product",
2834
+ "field": "product",
2835
+ "is_amount": false,
2836
+ "__typename": "listingColumnsType"
2837
+ },
2838
+ {
2839
+ "_id": "68ca9b04c2ce7f1261635d4b",
2840
+ "header": "Quantity",
2841
+ "field": "quantity",
2842
+ "is_amount": false,
2843
+ "__typename": "listingColumnsType"
2844
+ },
2845
+ {
2846
+ "_id": "68ca9b04c2ce7f1261635d49",
2847
+ "header": "Serial Number",
2848
+ "field": "serial_number",
2849
+ "is_amount": false,
2850
+ "__typename": "listingColumnsType"
2851
+ },
2852
+ {
2853
+ "_id": "68ca9b04c2ce7f1261635d4a",
2854
+ "header": "SKU",
2855
+ "field": "sku",
2856
+ "is_amount": false,
2857
+ "__typename": "listingColumnsType"
2858
+ },
2859
+ {
2860
+ "_id": "68ca9b04c2ce7f1261635d4e",
2861
+ "header": "Total",
2862
+ "field": "total",
2863
+ "is_amount": true,
2864
+ "__typename": "listingColumnsType"
2865
+ },
2866
+ {
2867
+ "_id": "68ca9b04c2ce7f1261635d4d",
2868
+ "header": "Type",
2869
+ "field": "type",
2870
+ "is_amount": false,
2871
+ "__typename": "listingColumnsType"
2872
+ }
2873
+ ],
2874
+ "result": [
2875
+ {
2876
+ "product": "DELL Lattidue",
2877
+ "serial_number": null,
2878
+ "sku": "",
2879
+ "quantity": "1",
2880
+ "price": "54000",
2881
+ "type": "asset",
2882
+ "total": 54000,
2883
+ "__typename": "invoiceItemsType"
2884
+ }
2885
+ ],
2886
+ "__typename": "invoiceDetail"
2887
+ },
2888
+ "__typename": "InvoiceData"
2889
+ },
2890
+ {
2891
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729849557125_.pdf",
2892
+ "invoiceId": "INV-950056",
2893
+ "name": "MackBook Battery",
2894
+ "orderDate": "2024-05-01T05:44:57.185Z",
2895
+ "orderNumber": "269",
2896
+ "id": "670619814f0df6afaed8b3ed",
2897
+ "vendor": {
2898
+ "id": "6706189d4f0df6afaed8a1b6",
2899
+ "name": "UK",
2900
+ "__typename": "vendors"
2901
+ },
2902
+ "shippingMethod": null,
2903
+ "company": "",
2904
+ "billTo": null,
2905
+ "shipTo": null,
2906
+ "type": "Accessories",
2907
+ "taxes": null,
2908
+ "totalShippingCharges": null,
2909
+ "totalInvoiceItems": 1,
2910
+ "grandTotal": 17000,
2911
+ "is_deleted": false,
2912
+ "subTotal": 17000,
2913
+ "invoice_image_name": "1008202417350400064.pdf",
2914
+ "detail": {
2915
+ "columns": [
2916
+ {
2917
+ "_id": "68ca9b04c2ce7f1261635d4c",
2918
+ "header": "Unit Price",
2919
+ "field": "price",
2920
+ "is_amount": true,
2921
+ "__typename": "listingColumnsType"
2922
+ },
2923
+ {
2924
+ "_id": "68ca9b04c2ce7f1261635d48",
2925
+ "header": "Product",
2926
+ "field": "product",
2927
+ "is_amount": false,
2928
+ "__typename": "listingColumnsType"
2929
+ },
2930
+ {
2931
+ "_id": "68ca9b04c2ce7f1261635d4b",
2932
+ "header": "Quantity",
2933
+ "field": "quantity",
2934
+ "is_amount": false,
2935
+ "__typename": "listingColumnsType"
2936
+ },
2937
+ {
2938
+ "_id": "68ca9b04c2ce7f1261635d49",
2939
+ "header": "Serial Number",
2940
+ "field": "serial_number",
2941
+ "is_amount": false,
2942
+ "__typename": "listingColumnsType"
2943
+ },
2944
+ {
2945
+ "_id": "68ca9b04c2ce7f1261635d4a",
2946
+ "header": "SKU",
2947
+ "field": "sku",
2948
+ "is_amount": false,
2949
+ "__typename": "listingColumnsType"
2950
+ },
2951
+ {
2952
+ "_id": "68ca9b04c2ce7f1261635d4e",
2953
+ "header": "Total",
2954
+ "field": "total",
2955
+ "is_amount": true,
2956
+ "__typename": "listingColumnsType"
2957
+ },
2958
+ {
2959
+ "_id": "68ca9b04c2ce7f1261635d4d",
2960
+ "header": "Type",
2961
+ "field": "type",
2962
+ "is_amount": false,
2963
+ "__typename": "listingColumnsType"
2964
+ }
2965
+ ],
2966
+ "result": [
2967
+ {
2968
+ "product": "MackBook Battery",
2969
+ "serial_number": null,
2970
+ "sku": "",
2971
+ "quantity": "1",
2972
+ "price": "17000",
2973
+ "type": "accessories",
2974
+ "total": 17000,
2975
+ "__typename": "invoiceItemsType"
2976
+ }
2977
+ ],
2978
+ "__typename": "invoiceDetail"
2979
+ },
2980
+ "__typename": "InvoiceData"
2981
+ },
2982
+ {
2983
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729849506027_.pdf",
2984
+ "invoiceId": "INV-175021",
2985
+ "name": "Dell Laptop",
2986
+ "orderDate": "2024-10-09T05:33:46.476Z",
2987
+ "orderNumber": "810",
2988
+ "id": "670617fd4f0df6afaed89223",
2989
+ "vendor": {
2990
+ "id": "670528fd4f0df6afaecb2a8d",
2991
+ "name": "Choudhry Computers",
2992
+ "__typename": "vendors"
2993
+ },
2994
+ "shippingMethod": null,
2995
+ "company": "",
2996
+ "billTo": null,
2997
+ "shipTo": null,
2998
+ "type": "Asset",
2999
+ "taxes": null,
3000
+ "totalShippingCharges": null,
3001
+ "totalInvoiceItems": 11112,
3002
+ "grandTotal": 284000,
3003
+ "is_deleted": false,
3004
+ "subTotal": 284000,
3005
+ "invoice_image_name": "1008202417344000062.pdf",
3006
+ "detail": {
3007
+ "columns": [
3008
+ {
3009
+ "_id": "68ca9b04c2ce7f1261635d4c",
3010
+ "header": "Unit Price",
3011
+ "field": "price",
3012
+ "is_amount": true,
3013
+ "__typename": "listingColumnsType"
3014
+ },
3015
+ {
3016
+ "_id": "68ca9b04c2ce7f1261635d48",
3017
+ "header": "Product",
3018
+ "field": "product",
3019
+ "is_amount": false,
3020
+ "__typename": "listingColumnsType"
3021
+ },
3022
+ {
3023
+ "_id": "68ca9b04c2ce7f1261635d4b",
3024
+ "header": "Quantity",
3025
+ "field": "quantity",
3026
+ "is_amount": false,
3027
+ "__typename": "listingColumnsType"
3028
+ },
3029
+ {
3030
+ "_id": "68ca9b04c2ce7f1261635d49",
3031
+ "header": "Serial Number",
3032
+ "field": "serial_number",
3033
+ "is_amount": false,
3034
+ "__typename": "listingColumnsType"
3035
+ },
3036
+ {
3037
+ "_id": "68ca9b04c2ce7f1261635d4a",
3038
+ "header": "SKU",
3039
+ "field": "sku",
3040
+ "is_amount": false,
3041
+ "__typename": "listingColumnsType"
3042
+ },
3043
+ {
3044
+ "_id": "68ca9b04c2ce7f1261635d4e",
3045
+ "header": "Total",
3046
+ "field": "total",
3047
+ "is_amount": true,
3048
+ "__typename": "listingColumnsType"
3049
+ },
3050
+ {
3051
+ "_id": "68ca9b04c2ce7f1261635d4d",
3052
+ "header": "Type",
3053
+ "field": "type",
3054
+ "is_amount": false,
3055
+ "__typename": "listingColumnsType"
3056
+ }
3057
+ ],
3058
+ "result": [
3059
+ {
3060
+ "product": "DELL 5300",
3061
+ "serial_number": null,
3062
+ "sku": "",
3063
+ "quantity": "1",
3064
+ "price": "54000",
3065
+ "type": "asset",
3066
+ "total": 54000,
3067
+ "__typename": "invoiceItemsType"
3068
+ },
3069
+ {
3070
+ "product": "DELL 3410",
3071
+ "serial_number": null,
3072
+ "sku": null,
3073
+ "quantity": "1",
3074
+ "price": "82000",
3075
+ "type": "asset",
3076
+ "total": 82000,
3077
+ "__typename": "invoiceItemsType"
3078
+ },
3079
+ {
3080
+ "product": "DELL 5400",
3081
+ "serial_number": null,
3082
+ "sku": null,
3083
+ "quantity": "1",
3084
+ "price": "59000",
3085
+ "type": "asset",
3086
+ "total": 59000,
3087
+ "__typename": "invoiceItemsType"
3088
+ },
3089
+ {
3090
+ "product": "DELL 7400",
3091
+ "serial_number": null,
3092
+ "sku": null,
3093
+ "quantity": "1",
3094
+ "price": "74000",
3095
+ "type": "asset",
3096
+ "total": 74000,
3097
+ "__typename": "invoiceItemsType"
3098
+ },
3099
+ {
3100
+ "product": "Battery",
3101
+ "serial_number": null,
3102
+ "sku": null,
3103
+ "quantity": "2",
3104
+ "price": "7500",
3105
+ "type": "",
3106
+ "total": 15000,
3107
+ "__typename": "invoiceItemsType"
3108
+ }
3109
+ ],
3110
+ "__typename": "invoiceDetail"
3111
+ },
3112
+ "__typename": "InvoiceData"
3113
+ },
3114
+ {
3115
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729849417749_.pdf",
3116
+ "invoiceId": "INV-104201",
3117
+ "name": "Dell Laptop",
3118
+ "orderDate": "2024-01-06T05:21:04.017Z",
3119
+ "orderNumber": "223",
3120
+ "id": "6706136e4f0df6afaed83a71",
3121
+ "vendor": {
3122
+ "id": "670613074f0df6afaed83701",
3123
+ "name": "Click Solution",
3124
+ "__typename": "vendors"
3125
+ },
3126
+ "shippingMethod": null,
3127
+ "company": "",
3128
+ "billTo": null,
3129
+ "shipTo": null,
3130
+ "type": "Asset",
3131
+ "taxes": null,
3132
+ "totalShippingCharges": null,
3133
+ "totalInvoiceItems": 5,
3134
+ "grandTotal": 275000,
3135
+ "is_deleted": false,
3136
+ "subTotal": 275000,
3137
+ "invoice_image_name": "1008202417343000061.pdf",
3138
+ "detail": {
3139
+ "columns": [
3140
+ {
3141
+ "_id": "68ca9b04c2ce7f1261635d4c",
3142
+ "header": "Unit Price",
3143
+ "field": "price",
3144
+ "is_amount": true,
3145
+ "__typename": "listingColumnsType"
3146
+ },
3147
+ {
3148
+ "_id": "68ca9b04c2ce7f1261635d48",
3149
+ "header": "Product",
3150
+ "field": "product",
3151
+ "is_amount": false,
3152
+ "__typename": "listingColumnsType"
3153
+ },
3154
+ {
3155
+ "_id": "68ca9b04c2ce7f1261635d4b",
3156
+ "header": "Quantity",
3157
+ "field": "quantity",
3158
+ "is_amount": false,
3159
+ "__typename": "listingColumnsType"
3160
+ },
3161
+ {
3162
+ "_id": "68ca9b04c2ce7f1261635d49",
3163
+ "header": "Serial Number",
3164
+ "field": "serial_number",
3165
+ "is_amount": false,
3166
+ "__typename": "listingColumnsType"
3167
+ },
3168
+ {
3169
+ "_id": "68ca9b04c2ce7f1261635d4a",
3170
+ "header": "SKU",
3171
+ "field": "sku",
3172
+ "is_amount": false,
3173
+ "__typename": "listingColumnsType"
3174
+ },
3175
+ {
3176
+ "_id": "68ca9b04c2ce7f1261635d4e",
3177
+ "header": "Total",
3178
+ "field": "total",
3179
+ "is_amount": true,
3180
+ "__typename": "listingColumnsType"
3181
+ },
3182
+ {
3183
+ "_id": "68ca9b04c2ce7f1261635d4d",
3184
+ "header": "Type",
3185
+ "field": "type",
3186
+ "is_amount": false,
3187
+ "__typename": "listingColumnsType"
3188
+ }
3189
+ ],
3190
+ "result": [
3191
+ {
3192
+ "product": "DELL",
3193
+ "serial_number": null,
3194
+ "sku": "",
3195
+ "quantity": "5",
3196
+ "price": "55000",
3197
+ "type": "asset",
3198
+ "total": 275000,
3199
+ "__typename": "invoiceItemsType"
3200
+ }
3201
+ ],
3202
+ "__typename": "invoiceDetail"
3203
+ },
3204
+ "__typename": "InvoiceData"
3205
+ },
3206
+ {
3207
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729849349084_.pdf",
3208
+ "invoiceId": "INV-613586",
3209
+ "name": "Extention Bord",
3210
+ "orderDate": "2024-08-15T05:18:10.748Z",
3211
+ "orderNumber": "Extention Bord",
3212
+ "id": "670612b04f0df6afaed83303",
3213
+ "vendor": {
3214
+ "id": "6706126e4f0df6afaed8321e",
3215
+ "name": "Paintex",
3216
+ "__typename": "vendors"
3217
+ },
3218
+ "shippingMethod": null,
3219
+ "company": "",
3220
+ "billTo": null,
3221
+ "shipTo": null,
3222
+ "type": "Accessories",
3223
+ "taxes": null,
3224
+ "totalShippingCharges": null,
3225
+ "totalInvoiceItems": 52,
3226
+ "grandTotal": 1750,
3227
+ "is_deleted": false,
3228
+ "subTotal": 1750,
3229
+ "invoice_image_name": "1008202417341600060.pdf",
3230
+ "detail": {
3231
+ "columns": [
3232
+ {
3233
+ "_id": "68ca9b04c2ce7f1261635d4c",
3234
+ "header": "Unit Price",
3235
+ "field": "price",
3236
+ "is_amount": true,
3237
+ "__typename": "listingColumnsType"
3238
+ },
3239
+ {
3240
+ "_id": "68ca9b04c2ce7f1261635d48",
3241
+ "header": "Product",
3242
+ "field": "product",
3243
+ "is_amount": false,
3244
+ "__typename": "listingColumnsType"
3245
+ },
3246
+ {
3247
+ "_id": "68ca9b04c2ce7f1261635d4b",
3248
+ "header": "Quantity",
3249
+ "field": "quantity",
3250
+ "is_amount": false,
3251
+ "__typename": "listingColumnsType"
3252
+ },
3253
+ {
3254
+ "_id": "68ca9b04c2ce7f1261635d49",
3255
+ "header": "Serial Number",
3256
+ "field": "serial_number",
3257
+ "is_amount": false,
3258
+ "__typename": "listingColumnsType"
3259
+ },
3260
+ {
3261
+ "_id": "68ca9b04c2ce7f1261635d4a",
3262
+ "header": "SKU",
3263
+ "field": "sku",
3264
+ "is_amount": false,
3265
+ "__typename": "listingColumnsType"
3266
+ },
3267
+ {
3268
+ "_id": "68ca9b04c2ce7f1261635d4e",
3269
+ "header": "Total",
3270
+ "field": "total",
3271
+ "is_amount": true,
3272
+ "__typename": "listingColumnsType"
3273
+ },
3274
+ {
3275
+ "_id": "68ca9b04c2ce7f1261635d4d",
3276
+ "header": "Type",
3277
+ "field": "type",
3278
+ "is_amount": false,
3279
+ "__typename": "listingColumnsType"
3280
+ }
3281
+ ],
3282
+ "result": [
3283
+ {
3284
+ "product": "Extention Bord",
3285
+ "serial_number": null,
3286
+ "sku": "",
3287
+ "quantity": "5",
3288
+ "price": "250",
3289
+ "type": "accessories",
3290
+ "total": 1250,
3291
+ "__typename": "invoiceItemsType"
3292
+ },
3293
+ {
3294
+ "product": "Extention Bord",
3295
+ "serial_number": null,
3296
+ "sku": "",
3297
+ "quantity": "2",
3298
+ "price": "250",
3299
+ "type": "accessories",
3300
+ "total": 500,
3301
+ "__typename": "invoiceItemsType"
3302
+ }
3303
+ ],
3304
+ "__typename": "invoiceDetail"
3305
+ },
3306
+ "__typename": "InvoiceData"
3307
+ },
3308
+ {
3309
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729848765938_.pdf",
3310
+ "invoiceId": "INV-948357",
3311
+ "name": "San Disk",
3312
+ "orderDate": "2024-08-07T05:13:35.534Z",
3313
+ "orderNumber": "393",
3314
+ "id": "6706120d4f0df6afaed82e20",
3315
+ "vendor": {
3316
+ "id": "670611374f0df6afaed81f2f",
3317
+ "name": "IP",
3318
+ "__typename": "vendors"
3319
+ },
3320
+ "shippingMethod": null,
3321
+ "company": "",
3322
+ "billTo": null,
3323
+ "shipTo": null,
3324
+ "type": "Accessories",
3325
+ "taxes": null,
3326
+ "totalShippingCharges": null,
3327
+ "totalInvoiceItems": 1,
3328
+ "grandTotal": 2200,
3329
+ "is_deleted": false,
3330
+ "subTotal": 2200,
3331
+ "invoice_image_name": "1008202417334200057.pdf",
3332
+ "detail": {
3333
+ "columns": [
3334
+ {
3335
+ "_id": "68ca9b04c2ce7f1261635d4c",
3336
+ "header": "Unit Price",
3337
+ "field": "price",
3338
+ "is_amount": true,
3339
+ "__typename": "listingColumnsType"
3340
+ },
3341
+ {
3342
+ "_id": "68ca9b04c2ce7f1261635d48",
3343
+ "header": "Product",
3344
+ "field": "product",
3345
+ "is_amount": false,
3346
+ "__typename": "listingColumnsType"
3347
+ },
3348
+ {
3349
+ "_id": "68ca9b04c2ce7f1261635d4b",
3350
+ "header": "Quantity",
3351
+ "field": "quantity",
3352
+ "is_amount": false,
3353
+ "__typename": "listingColumnsType"
3354
+ },
3355
+ {
3356
+ "_id": "68ca9b04c2ce7f1261635d49",
3357
+ "header": "Serial Number",
3358
+ "field": "serial_number",
3359
+ "is_amount": false,
3360
+ "__typename": "listingColumnsType"
3361
+ },
3362
+ {
3363
+ "_id": "68ca9b04c2ce7f1261635d4a",
3364
+ "header": "SKU",
3365
+ "field": "sku",
3366
+ "is_amount": false,
3367
+ "__typename": "listingColumnsType"
3368
+ },
3369
+ {
3370
+ "_id": "68ca9b04c2ce7f1261635d4e",
3371
+ "header": "Total",
3372
+ "field": "total",
3373
+ "is_amount": true,
3374
+ "__typename": "listingColumnsType"
3375
+ },
3376
+ {
3377
+ "_id": "68ca9b04c2ce7f1261635d4d",
3378
+ "header": "Type",
3379
+ "field": "type",
3380
+ "is_amount": false,
3381
+ "__typename": "listingColumnsType"
3382
+ }
3383
+ ],
3384
+ "result": [
3385
+ {
3386
+ "product": "San Disk 64 GB",
3387
+ "serial_number": null,
3388
+ "sku": "",
3389
+ "quantity": "1",
3390
+ "price": "2200",
3391
+ "type": "accessories",
3392
+ "total": 2200,
3393
+ "__typename": "invoiceItemsType"
3394
+ }
3395
+ ],
3396
+ "__typename": "invoiceDetail"
3397
+ },
3398
+ "__typename": "InvoiceData"
3399
+ },
3400
+ {
3401
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729848943447_.pdf",
3402
+ "invoiceId": "INV-677598",
3403
+ "name": "Chairs",
3404
+ "orderDate": "2024-10-08T13:02:04.018Z",
3405
+ "orderNumber": "076",
3406
+ "id": "67052e3c4f0df6afaecbf22d",
3407
+ "vendor": {
3408
+ "id": "67052d8a4f0df6afaecbbbfb",
3409
+ "name": "Sakhawat Shah",
3410
+ "__typename": "vendors"
3411
+ },
3412
+ "shippingMethod": null,
3413
+ "company": "",
3414
+ "billTo": null,
3415
+ "shipTo": null,
3416
+ "type": "Asset",
3417
+ "taxes": null,
3418
+ "totalShippingCharges": 2500,
3419
+ "totalInvoiceItems": 7,
3420
+ "grandTotal": 137502,
3421
+ "is_deleted": false,
3422
+ "subTotal": 135002,
3423
+ "invoice_image_name": "1008202417340300059.pdf",
3424
+ "detail": {
3425
+ "columns": [
3426
+ {
3427
+ "_id": "68ca9b04c2ce7f1261635d4c",
3428
+ "header": "Unit Price",
3429
+ "field": "price",
3430
+ "is_amount": true,
3431
+ "__typename": "listingColumnsType"
3432
+ },
3433
+ {
3434
+ "_id": "68ca9b04c2ce7f1261635d48",
3435
+ "header": "Product",
3436
+ "field": "product",
3437
+ "is_amount": false,
3438
+ "__typename": "listingColumnsType"
3439
+ },
3440
+ {
3441
+ "_id": "68ca9b04c2ce7f1261635d4b",
3442
+ "header": "Quantity",
3443
+ "field": "quantity",
3444
+ "is_amount": false,
3445
+ "__typename": "listingColumnsType"
3446
+ },
3447
+ {
3448
+ "_id": "68ca9b04c2ce7f1261635d49",
3449
+ "header": "Serial Number",
3450
+ "field": "serial_number",
3451
+ "is_amount": false,
3452
+ "__typename": "listingColumnsType"
3453
+ },
3454
+ {
3455
+ "_id": "68ca9b04c2ce7f1261635d4a",
3456
+ "header": "SKU",
3457
+ "field": "sku",
3458
+ "is_amount": false,
3459
+ "__typename": "listingColumnsType"
3460
+ },
3461
+ {
3462
+ "_id": "68ca9b04c2ce7f1261635d4e",
3463
+ "header": "Total",
3464
+ "field": "total",
3465
+ "is_amount": true,
3466
+ "__typename": "listingColumnsType"
3467
+ },
3468
+ {
3469
+ "_id": "68ca9b04c2ce7f1261635d4d",
3470
+ "header": "Type",
3471
+ "field": "type",
3472
+ "is_amount": false,
3473
+ "__typename": "listingColumnsType"
3474
+ }
3475
+ ],
3476
+ "result": [
3477
+ {
3478
+ "product": "Chair",
3479
+ "serial_number": null,
3480
+ "sku": "",
3481
+ "quantity": "7",
3482
+ "price": "19286",
3483
+ "type": "asset",
3484
+ "total": 135002,
3485
+ "__typename": "invoiceItemsType"
3486
+ }
3487
+ ],
3488
+ "__typename": "invoiceDetail"
3489
+ },
3490
+ "__typename": "InvoiceData"
3491
+ },
3492
+ {
3493
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729848866107_.pdf",
3494
+ "invoiceId": "INV-421808",
3495
+ "name": "Office Table",
3496
+ "orderDate": "2024-07-23T12:55:15.143Z",
3497
+ "orderNumber": "1833",
3498
+ "id": "67052ccc4f0df6afaecb76bd",
3499
+ "vendor": {
3500
+ "id": "67052c334f0df6afaecb63d1",
3501
+ "name": "Muhammad Gulzar",
3502
+ "__typename": "vendors"
3503
+ },
3504
+ "shippingMethod": null,
3505
+ "company": "",
3506
+ "billTo": null,
3507
+ "shipTo": null,
3508
+ "type": "Asset",
3509
+ "taxes": null,
3510
+ "totalShippingCharges": null,
3511
+ "totalInvoiceItems": 8,
3512
+ "grandTotal": 148000,
3513
+ "is_deleted": false,
3514
+ "subTotal": 148000,
3515
+ "invoice_image_name": "1008202417335100058.pdf",
3516
+ "detail": {
3517
+ "columns": [
3518
+ {
3519
+ "_id": "68ca9b04c2ce7f1261635d4c",
3520
+ "header": "Unit Price",
3521
+ "field": "price",
3522
+ "is_amount": true,
3523
+ "__typename": "listingColumnsType"
3524
+ },
3525
+ {
3526
+ "_id": "68ca9b04c2ce7f1261635d48",
3527
+ "header": "Product",
3528
+ "field": "product",
3529
+ "is_amount": false,
3530
+ "__typename": "listingColumnsType"
3531
+ },
3532
+ {
3533
+ "_id": "68ca9b04c2ce7f1261635d4b",
3534
+ "header": "Quantity",
3535
+ "field": "quantity",
3536
+ "is_amount": false,
3537
+ "__typename": "listingColumnsType"
3538
+ },
3539
+ {
3540
+ "_id": "68ca9b04c2ce7f1261635d49",
3541
+ "header": "Serial Number",
3542
+ "field": "serial_number",
3543
+ "is_amount": false,
3544
+ "__typename": "listingColumnsType"
3545
+ },
3546
+ {
3547
+ "_id": "68ca9b04c2ce7f1261635d4a",
3548
+ "header": "SKU",
3549
+ "field": "sku",
3550
+ "is_amount": false,
3551
+ "__typename": "listingColumnsType"
3552
+ },
3553
+ {
3554
+ "_id": "68ca9b04c2ce7f1261635d4e",
3555
+ "header": "Total",
3556
+ "field": "total",
3557
+ "is_amount": true,
3558
+ "__typename": "listingColumnsType"
3559
+ },
3560
+ {
3561
+ "_id": "68ca9b04c2ce7f1261635d4d",
3562
+ "header": "Type",
3563
+ "field": "type",
3564
+ "is_amount": false,
3565
+ "__typename": "listingColumnsType"
3566
+ }
3567
+ ],
3568
+ "result": [
3569
+ {
3570
+ "product": "Table",
3571
+ "serial_number": null,
3572
+ "sku": "",
3573
+ "quantity": "8",
3574
+ "price": "18500",
3575
+ "type": "asset",
3576
+ "total": 148000,
3577
+ "__typename": "invoiceItemsType"
3578
+ }
3579
+ ],
3580
+ "__typename": "invoiceDetail"
3581
+ },
3582
+ "__typename": "InvoiceData"
3583
+ },
3584
+ {
3585
+ "invoice_image": "https://techbar.s3.amazonaws.com/public/66d02032e240a11b39d119b4/66d057e048e8588e75e4b7dd/invoiceImage/1729848688013_.pdf",
3586
+ "invoiceId": "INV-458306",
3587
+ "name": "Computer Lcds",
3588
+ "orderDate": "2024-06-05T12:52:58.585Z",
3589
+ "orderNumber": "8810",
3590
+ "id": "67052ba94f0df6afaecb5f69",
3591
+ "vendor": {
3592
+ "id": "670528fd4f0df6afaecb2a8d",
3593
+ "name": "Choudhry Computers",
3594
+ "__typename": "vendors"
3595
+ },
3596
+ "shippingMethod": null,
3597
+ "company": "",
3598
+ "billTo": null,
3599
+ "shipTo": null,
3600
+ "type": "Asset/Accessories",
3601
+ "taxes": null,
3602
+ "totalShippingCharges": null,
3603
+ "totalInvoiceItems": 555,
3604
+ "grandTotal": 79000,
3605
+ "is_deleted": false,
3606
+ "subTotal": 79000,
3607
+ "invoice_image_name": "1008202417352400066.pdf",
3608
+ "detail": {
3609
+ "columns": [
3610
+ {
3611
+ "_id": "68ca9b04c2ce7f1261635d4c",
3612
+ "header": "Unit Price",
3613
+ "field": "price",
3614
+ "is_amount": true,
3615
+ "__typename": "listingColumnsType"
3616
+ },
3617
+ {
3618
+ "_id": "68ca9b04c2ce7f1261635d48",
3619
+ "header": "Product",
3620
+ "field": "product",
3621
+ "is_amount": false,
3622
+ "__typename": "listingColumnsType"
3623
+ },
3624
+ {
3625
+ "_id": "68ca9b04c2ce7f1261635d4b",
3626
+ "header": "Quantity",
3627
+ "field": "quantity",
3628
+ "is_amount": false,
3629
+ "__typename": "listingColumnsType"
3630
+ },
3631
+ {
3632
+ "_id": "68ca9b04c2ce7f1261635d49",
3633
+ "header": "Serial Number",
3634
+ "field": "serial_number",
3635
+ "is_amount": false,
3636
+ "__typename": "listingColumnsType"
3637
+ },
3638
+ {
3639
+ "_id": "68ca9b04c2ce7f1261635d4a",
3640
+ "header": "SKU",
3641
+ "field": "sku",
3642
+ "is_amount": false,
3643
+ "__typename": "listingColumnsType"
3644
+ },
3645
+ {
3646
+ "_id": "68ca9b04c2ce7f1261635d4e",
3647
+ "header": "Total",
3648
+ "field": "total",
3649
+ "is_amount": true,
3650
+ "__typename": "listingColumnsType"
3651
+ },
3652
+ {
3653
+ "_id": "68ca9b04c2ce7f1261635d4d",
3654
+ "header": "Type",
3655
+ "field": "type",
3656
+ "is_amount": false,
3657
+ "__typename": "listingColumnsType"
3658
+ }
3659
+ ],
3660
+ "result": [
3661
+ {
3662
+ "product": "Dell Screens",
3663
+ "serial_number": null,
3664
+ "sku": "",
3665
+ "quantity": "5",
3666
+ "price": "15000",
3667
+ "type": "asset",
3668
+ "total": 75000,
3669
+ "__typename": "invoiceItemsType"
3670
+ },
3671
+ {
3672
+ "product": "HDMI",
3673
+ "serial_number": null,
3674
+ "sku": null,
3675
+ "quantity": "5",
3676
+ "price": "500",
3677
+ "type": "accessories",
3678
+ "total": 2500,
3679
+ "__typename": "invoiceItemsType"
3680
+ },
3681
+ {
3682
+ "product": "Power Cable",
3683
+ "serial_number": null,
3684
+ "sku": null,
3685
+ "quantity": "5",
3686
+ "price": "300",
3687
+ "type": "accessories",
3688
+ "total": 1500,
3689
+ "__typename": "invoiceItemsType"
3690
+ }
3691
+ ],
3692
+ "__typename": "invoiceDetail"
3693
+ },
3694
+ "__typename": "InvoiceData"
3695
+ }
3696
+ ],
3697
+ "__typename": "getInvoiceList"
3698
+ }