index.js 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. const api = require("../../api/api");
  2. import Dialog from 'tdesign-miniprogram/dialog/index';
  3. // pages/workOrderDetail/index.js
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. workLeaderDialog: false,
  10. showTeams: false,
  11. teams: []
  12. },
  13. toServiceBillDetail() {
  14. console.log("查看来源申请单", this.data.billData)
  15. wx.navigateTo({
  16. url: '/Eservice/saler/serviceBillDetail/index?id=' + this.data.billData.sa_serviceorderid,
  17. })
  18. },
  19. async mainData() {
  20. const res = await api._post({
  21. "id": "20230208140103",
  22. "content": {
  23. nocache: true,
  24. "sa_workorderid": this.data.id
  25. }
  26. })
  27. console.log("详情", res)
  28. if (this.data.billData) {
  29. let userid = wx.getStorageSync('userMsg').userid;
  30. let item = this.data.billData;
  31. if (!item.team.some(v => v.userid == userid) && res.data.team.some(v => v.userid == userid)) wx.redirectTo({
  32. url: '/Eservice/workOrderDetail/index' + '?id=' + item.sa_workorderid,
  33. })
  34. }
  35. this.setData({
  36. billData: res.data
  37. })
  38. this.workerData()
  39. },
  40. changeBillStatus(e) {
  41. const {
  42. id,
  43. name
  44. } = e.target.dataset;
  45. if (!name) return;
  46. const dialogConfig = {
  47. context: this,
  48. title: getApp().globalData.Language.getMapText('提示'),
  49. content: getApp().globalData.Language.joint([{
  50. t: 1,
  51. v: '是否确定',
  52. }, {
  53. t: 1,
  54. v: name,
  55. f: "“",
  56. r: "”"
  57. }, {
  58. t: 1,
  59. v: '当前工单',
  60. r: "?"
  61. }]),
  62. confirmBtn: getApp().globalData.Language.getMapText(name),
  63. cancelBtn: getApp().globalData.Language.getMapText('取消'),
  64. }
  65. Dialog.confirm(dialogConfig)
  66. .then(async () => {
  67. const res = await api._post({
  68. "id": id,
  69. "content": {
  70. "sa_workorderid": this.data.id
  71. }
  72. })
  73. wx.showToast({
  74. title: res.code == '1' ? getApp().globalData.Language.joint([{
  75. t: 1,
  76. v: '工单',
  77. }, {
  78. t: 1,
  79. v: name,
  80. f: "“",
  81. r: "”"
  82. }, {
  83. t: 1,
  84. v: '成功',
  85. r: "!"
  86. }]) : res.msg,
  87. icon: "none",
  88. mask: true
  89. });
  90. if (name == '作废') {
  91. setTimeout(() => {
  92. wx.navigateBack()
  93. }, 500);
  94. } else {
  95. this.mainData()
  96. }
  97. })
  98. .catch(() => console.log('点击了取消'))
  99. .finally(() => Dialog.close())
  100. },
  101. async addConfirmBill() {
  102. const res = await api._post({
  103. "id": "20230211105703",
  104. "version": 1,
  105. "content": {
  106. "sa_workorder_confirmationid": 0,
  107. "sa_workorderid": this.data.id,
  108. "attitudescore": 0,
  109. "responsescore": 0,
  110. }
  111. })
  112. if (this.data.billData.type === '安装培训') {
  113. wx.navigateTo({
  114. url: '/Eservice/trainConfirmBill/index?id=' + res.data.sa_workorder_confirmationid,
  115. })
  116. } else if (this.data.billData.type === '安装调试') {
  117. wx.navigateTo({
  118. url: '/Eservice/installConfirmBill/index?id=' + res.data.sa_workorder_confirmationid,
  119. })
  120. } else {}
  121. },
  122. toConfirmBill(data) {
  123. if (this.data.billData.type === '安装培训') {
  124. wx.navigateTo({
  125. url: '/Eservice/trainConfirmBill/index?class=stopClick&id=' + data.currentTarget.dataset.item.sa_workorder_confirmationid,
  126. })
  127. }
  128. },
  129. async confirmBillList() {
  130. const res = await api._post({
  131. "id": "20230211105903",
  132. "content": {
  133. "where": {
  134. nocahce: true,
  135. "condition": "",
  136. "sa_workorderid": this.data.id
  137. }
  138. }
  139. })
  140. this.setData({
  141. confirmBills: res.data
  142. })
  143. },
  144. toWorkConfirmInfo() {
  145. getApp().globalData.handelSelect = this
  146. wx.navigateTo({
  147. url: '/Eservice/workBillConfirmInfo/index?class=stopClick'
  148. })
  149. },
  150. async workerData() {
  151. const res = await api._post({
  152. "id": "20230213143003",
  153. "version": 1,
  154. "content": {
  155. "where": {
  156. "condition": ""
  157. }
  158. }
  159. })
  160. this.setData({
  161. workers: res.data
  162. })
  163. },
  164. /**
  165. * 开始添加成员或者取消添加
  166. */
  167. showTeamDialog() {
  168. this.setData({
  169. showTeams: !this.data.showTeams,
  170. teams: this.data.billData.team.map(v => {
  171. return v.isleader == 1 ? 0 : v.userid
  172. })
  173. })
  174. },
  175. /**
  176. * 选择添加成员
  177. */
  178. selectTeams(e) {
  179. const {
  180. userid
  181. } = e.currentTarget.dataset.item;
  182. let teams = this.data.teams;
  183. let i = teams.findIndex(v => v == userid);
  184. if (i != -1) {
  185. teams = teams.filter(v => v != userid)
  186. } else {
  187. teams.push(userid)
  188. }
  189. this.setData({
  190. teams
  191. })
  192. },
  193. addUser() {
  194. api._post({
  195. "id": 20220930103603,
  196. "content": {
  197. ownertable: 'sa_workorder',
  198. ownerid: this.data.billData.sa_workorderid,
  199. "userids": this.data.teams,
  200. "justuserids": 1
  201. }
  202. }).then(res => {
  203. console.log("添加成员", res)
  204. wx.showToast({
  205. title: res.code == '1' ? getApp().globalData.Language.getMapText('修改成功') : res.msg,
  206. icon: "none",
  207. mask: true
  208. });
  209. if (res.code == '1') {
  210. this.mainData()
  211. this.showTeamDialog()
  212. }
  213. })
  214. },
  215. showWorkerDialog() {
  216. this.setData({
  217. workLeaderDialog: !this.data.workLeaderDialog
  218. })
  219. },
  220. selectLeader(data) {
  221. this.setData({
  222. actLeader: data.currentTarget.dataset.item
  223. })
  224. },
  225. async toWorker() {
  226. if (!this.data.actLeader) {
  227. getApp().globalData.Language.showToast('未选择负责人')
  228. } else {
  229. /* this.data.billData.projectlearders = [this.data.actLeader.userid]
  230. const res = await api._post({
  231. "id": "20230208140003",
  232. "content": this.data.billData
  233. }) */
  234. let teams = this.data.billData.team;
  235. console.log(this.data.billData.team.filter(v => v.isleader != 1))
  236. console.log(this.data.actLeader)
  237. if (!teams.some(v => v.userid == this.data.actLeader.userid)) {
  238. }
  239. const res = await api._post({
  240. "id": "20220930103703",
  241. "content": {
  242. ownertable: 'sa_workorder',
  243. ownerid: this.data.billData.sa_workorderid,
  244. "userid": this.data.actLeader.userid
  245. }
  246. })
  247. await api._post({
  248. "id": 20220930103603,
  249. "content": {
  250. ownertable: 'sa_workorder',
  251. ownerid: this.data.billData.sa_workorderid,
  252. "userids": [this.data.actLeader.userid].concat(this.data.billData.team.filter(v => v.isleader != 1).map(v => v.userid)),
  253. "justuserids": 1
  254. }
  255. }).then(res => {
  256. console.log("添加成员", res)
  257. })
  258. this.setData({
  259. workLeaderDialog: false
  260. })
  261. if (res.code != '1') return wx.showToast({
  262. title: res.msg,
  263. icon: "none"
  264. });
  265. this.mainData()
  266. // this.confirmBillList()
  267. }
  268. },
  269. onLoad(options) {
  270. this.setData({
  271. id: options.id
  272. })
  273. getApp().globalData.Language.getLanguagePackage(this, 'E-订单');
  274. },
  275. onShow() {
  276. this.mainData()
  277. this.confirmBillList()
  278. },
  279. })