index.js 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. const _Http = getApp().globalData.http,
  2. file = require("../../../../utils/FormatTheAttachment");
  3. Component({
  4. properties: {
  5. disabled: {
  6. type: Boolean
  7. }
  8. },
  9. data: {
  10. sa_invoiceapplyid: 0,
  11. "content": {
  12. nocache: true,
  13. "pageNumber": 1,
  14. pageTotal: 1,
  15. total: null
  16. }
  17. },
  18. lifetimes: {
  19. attached: function () {
  20. getApp().globalData.Language.getLanguagePackage(this)
  21. }
  22. },
  23. methods: {
  24. /* 获取产品列表 */
  25. getList(id, init) {
  26. let content = this.data.content;
  27. content.sa_invoiceapplyid = id;
  28. if (init) content.pageNumber = 1;
  29. _Http.basic({
  30. "id": "20221217091303",
  31. "version": 1,
  32. content
  33. }).then(res => {
  34. console.log("订单行列表", res)
  35. if (res.code != '1') return wx.showToast({
  36. title: res.msg,
  37. icon: "none"
  38. })
  39. res.data = res.data.map(value => {
  40. if (value.attinfos.length != 0) {
  41. value.attinfos = file.fileList(value.attinfos)
  42. let image = value.attinfos.find(v => v.fileType == "image");
  43. value.cover = image ? image.cover : "";
  44. }
  45. return value;
  46. })
  47. this.setData({
  48. list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
  49. "content.pageNumber": res.pageNumber + 1,
  50. "content.pageSize": res.pageSize,
  51. "content.pageTotal": res.pageTotal,
  52. "content.total": res.total,
  53. sa_invoiceapplyid: id
  54. })
  55. })
  56. },
  57. /* 去添加订单行 */
  58. addProduct() {
  59. let detail = getCurrentPages().find(v => v.__route__ == 'packageA/invoice/detail').data.detail;
  60. wx.navigateTo({
  61. url: `/select/orderFormLine/index?params=${JSON.stringify({
  62. "id": "20221217085103",
  63. "version":1,
  64. "content": {
  65. nocache:true,
  66. "sys_enterpriseid":detail.sys_enterpriseid,
  67. "sa_invoiceapplyid":detail.sa_invoiceapplyid,
  68. "where":{
  69. "condition":"",
  70. "sonum":"",
  71. "begindate":"",
  72. "enddate":""
  73. }
  74. }
  75. })}`
  76. });
  77. getApp().globalData.handleSelect = this.handleSelect.bind(this);
  78. },
  79. /* 处理新增订单行 */
  80. handleSelect(detail) {
  81. let that = this;
  82. wx.showModal({
  83. cancelText: getApp().globalData.Language.getMapText('取消'),
  84. confirmText: getApp().globalData.Language.getMapText('确定'),
  85. title: getApp().globalData.Language.getMapText('提示'),
  86. content: getApp().globalData.Language.joint([{
  87. v: '是否确认添加',
  88. t: 1
  89. }, {
  90. v: detail.result.length,
  91. t: 1,
  92. r: ' ',
  93. f: " "
  94. }, {
  95. v: '条订单行',
  96. t: 1,
  97. r: '?',
  98. }]),
  99. complete: (res) => {
  100. if (res.confirm) _Http.basic({
  101. "id": "20221217091203",
  102. "version": 1,
  103. "content": {
  104. "sa_invoiceapplyid": that.data.sa_invoiceapplyid,
  105. "iteminfos": detail.list.map(v => {
  106. return {
  107. "sa_invoiceapply_orderid": 0,
  108. "saorderid": v.sa_orderid,
  109. "sa_orderitemsid": v.sa_orderitemsid,
  110. "price": v.price
  111. }
  112. })
  113. }
  114. }).then(s => {
  115. console.log('新增订单行', s)
  116. wx.showToast({
  117. title: s.code == '1' ? getApp().globalData.Language.getMapText('添加成功') : s.msg,
  118. icon: "none"
  119. });
  120. if (s.code == '1') setTimeout(() => {
  121. that.getList(that.data.sa_invoiceapplyid, true);
  122. wx.navigateBack();
  123. // that.updateThePrice();
  124. }, 300)
  125. })
  126. }
  127. });
  128. },
  129. /* 修改开票金额数量 */
  130. changeProduct({
  131. detail
  132. }) {
  133. let invoiceaqty = detail.invoiceaqty;
  134. detail.invoiceaqty = 0;
  135. _Http.basic({
  136. "id": "20221217091203",
  137. "version": 1,
  138. "content": {
  139. "sa_invoiceapplyid": this.data.sa_invoiceapplyid,
  140. "iteminfos": [detail]
  141. }
  142. }).then(res => {
  143. console.log("修改订单行", res)
  144. let i = this.data.list.findIndex(v => v.sa_orderitemsid == detail.sa_orderitemsid)
  145. if (res.code != '1') {
  146. wx.showToast({
  147. title: res.msg,
  148. icon: "none"
  149. });
  150. if (i != -1) this.setData({
  151. [`list[${i}].invoiceamount`]: this.data.list[i].invoiceamount,
  152. [`list[${i}].invoiceaqty`]: this.data.list[i].invoiceaqty
  153. })
  154. } else {
  155. if (i != -1) this.setData({
  156. [`list[${i}].invoiceamount`]: detail.invoiceamount,
  157. [`list[${i}].invoiceaqty`]: invoiceaqty
  158. })
  159. }
  160. })
  161. },
  162. /* 删除订单行 */
  163. deleteItem({
  164. detail
  165. }) {
  166. console.log(detail)
  167. let that = this;
  168. wx.showModal({
  169. cancelText: getApp().globalData.Language.getMapText('取消'),
  170. confirmText: getApp().globalData.Language.getMapText('确定'),
  171. title: getApp().globalData.Language.getMapText('提示'),
  172. content: getApp().globalData.Language.getMapText('是否确认删除') + `“${detail.itemname}”`,
  173. complete: ({
  174. confirm
  175. }) => {
  176. if (confirm) _Http.basic({
  177. "id": "20221217091403",
  178. "version": 1,
  179. "content": {
  180. "sa_invoiceapply_orderids": [detail.sa_invoiceapply_orderid]
  181. }
  182. }).then(res => {
  183. console.log('删除订单行', res)
  184. wx.showToast({
  185. title: res.code == '1' ? getApp().globalData.Language.getMapText('删除成功') : res.msg,
  186. icon: "none"
  187. });
  188. if (res.code == '1') that.setData({
  189. list: that.data.list.filter(v => v.sa_orderitemsid != detail.sa_orderitemsid)
  190. })
  191. })
  192. }
  193. })
  194. },
  195. }
  196. })