Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1.  
  2. inputText= ""
  3. iDisplayStart= 0
  4. iDisplayLength= 25
  5. iSearchValue= null
  6. icolumnToSort="processState"
  7. isortDirection= "asc"
  8. iAllVisibleColumns= ["processState",
  9. "instanceId",
  10. "systemNumber",
  11. "grossAmount",
  12. "account",
  13. "step",
  14. "taskStatus",
  15. "assignedUser",
  16. "assignedGroup",
  17. "assignedMail",
  18. "assignedDate"]
  19.  
  20. filterObject: {
  21. userLogin: {
  22. name: "",
  23. value: ""
  24. },
  25. userAppPermission:[]
  26. ,
  27. costCategory: [{
  28. name: "DELEGACJE - Zagraniczna",
  29. value: "DZ/"
  30. }]
  31. ,
  32. id: null,
  33. processState: "",
  34. instanceId: "",
  35. systemNumber: "",
  36. grossAmount: "",
  37. account: "",
  38. step: "",
  39. assignedUser: "",
  40. assignedGroup: "",
  41. assignedMail: "",
  42. assignedDate: null,
  43. groupPermission: "",
  44. userPermission: "",
  45. grossAmountMin: null,
  46. grossAmountMax: null,
  47. assignedDateFrom: null,
  48. assignedDateTo: null,
  49. invoiceId: "",
  50. taskName: "",
  51. findRealtedDocuments: false,
  52. taskStatus: "",
  53. showFinishedSteps: false
  54. }
  55.  
  56. //date dopasuj do tych co są w filtrze
  57. tw.local.filterObject.dateFrom= new Date()
  58. tw.local.filterObject.dateFrom.setDate(1)
  59. tw.local.filterObject.dateFrom.setMonth(0)
  60. tw.local.filterObject.dateFrom.setFullYear(2019)
  61.  
  62. tw.local.filterObject.dateTo= new Date()
  63. tw.local.filterObject.dateTo.setDate(31)
  64. tw.local.filterObject.dateTo.setMonth(11)
  65. tw.local.filterObject.dateTo.setFullYear(2019)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement