|
@@ -0,0 +1,189 @@
|
|
|
+const _Http = getApp().globalData.http,
|
|
|
+ file = require("../../../../utils/FormatTheAttachment");
|
|
|
+Component({
|
|
|
+ properties: {
|
|
|
+ disabled: Boolean, //禁用
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ sa_aftersalesmagid: 0,
|
|
|
+ "content": {
|
|
|
+ nocache: true,
|
|
|
+ pageNumber: 1,
|
|
|
+ pageTotal: 1,
|
|
|
+ total: null
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /* 获取产品列表 */
|
|
|
+ getList(id, init) {
|
|
|
+ let content = this.data.content;
|
|
|
+ content.sa_aftersalesmagid = id;
|
|
|
+ content.sa_orderid = getCurrentPages().find(v => v.__route__ == 'packageA/returnOne/detail').data.detail.sa_orderid;
|
|
|
+ if (init) content.pageNumber = 1;
|
|
|
+
|
|
|
+ _Http.basic({
|
|
|
+ "id": "20230105111103",
|
|
|
+ content
|
|
|
+ }).then(res => {
|
|
|
+ console.log("商品明细", res)
|
|
|
+ if (res.msg != '成功') return wx.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: "none"
|
|
|
+ })
|
|
|
+ res.data = res.data.map(value => {
|
|
|
+ if (value.attinfos.length != 0) {
|
|
|
+ value.attinfos = file.fileList(value.attinfos)
|
|
|
+ let image = value.attinfos.find(v => v.fileType == "image");
|
|
|
+ value.cover = image ? image.cover : "";
|
|
|
+ }
|
|
|
+ return value;
|
|
|
+ })
|
|
|
+ this.setData({
|
|
|
+ list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
|
|
|
+ "content.pageNumber": res.pageNumber + 1,
|
|
|
+ "content.pageSize": res.pageSize,
|
|
|
+ "content.pageTotal": res.pageTotal,
|
|
|
+ "content.total": res.total,
|
|
|
+ sa_aftersalesmagid: id,
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /* 修改 */
|
|
|
+ changeProduct({
|
|
|
+ detail
|
|
|
+ }) {
|
|
|
+ let obj = detail,
|
|
|
+ index = this.data.list.findIndex(v => v.itemid == detail.itemid),
|
|
|
+ data = this.data.list[index],
|
|
|
+ page = getCurrentPages()[getCurrentPages().length - 1]
|
|
|
+ if (data.qty == obj.qty && data.reason == obj.reason && data.price == obj.price) return;
|
|
|
+ _Http.basic({
|
|
|
+ "id": 20230105111003,
|
|
|
+ "content": {
|
|
|
+ "sa_aftersalesmagid": this.data.sa_aftersalesmagid,
|
|
|
+ "iteminfos": [detail]
|
|
|
+ }
|
|
|
+ }).then(res => {
|
|
|
+ console.log("产品修改", res)
|
|
|
+ if (res.msg != '成功') {
|
|
|
+ wx.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+ obj = data;
|
|
|
+ };
|
|
|
+ data = {
|
|
|
+ ...data,
|
|
|
+ ...obj
|
|
|
+ };
|
|
|
+ data.amount = res.data[0].amount
|
|
|
+ this.setData({
|
|
|
+ [`list[${index}]`]: data
|
|
|
+ })
|
|
|
+ this.updateThePrice();
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /* 删除 */
|
|
|
+ deleteItem({
|
|
|
+ detail
|
|
|
+ }) {
|
|
|
+ console.log(detail)
|
|
|
+ let that = this;
|
|
|
+ wx.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: `是否确认删除“${detail.itemname}”?`,
|
|
|
+ complete: (res) => {
|
|
|
+ if (res.confirm) _Http.basic({
|
|
|
+ "id": 20230105111203,
|
|
|
+ "content": {
|
|
|
+ sa_aftersalesmag_itemsids: [detail.sa_aftersalesmag_itemsid],
|
|
|
+ }
|
|
|
+ }).then(s => {
|
|
|
+ if (s.msg != '成功') return wx.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+ that.setData({
|
|
|
+ list: that.data.list.filter(v => v.sa_orderitemsid != detail.sa_orderitemsid)
|
|
|
+ });
|
|
|
+ that.updateThePrice();
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /* 去添加产品 */
|
|
|
+ addProduct() {
|
|
|
+ let detail = getCurrentPages().find(v => v.__route__ == 'packageA/returnOne/detail').data.detail;
|
|
|
+ wx.navigateTo({
|
|
|
+ url: `/packageA/toolBill/modules/selectProduct/index?params=${JSON.stringify({
|
|
|
+ "id":20230105110903,
|
|
|
+ "content": {
|
|
|
+ nocache:true,
|
|
|
+ "sa_orderid": detail.sa_orderid, //订单ID
|
|
|
+ "sa_aftersalesmagid": detail.sa_aftersalesmagid, //订单ID
|
|
|
+ "pageNumber": 1,
|
|
|
+ "pageTotal": 1,
|
|
|
+ "total": 0,
|
|
|
+ "pageSize": 20,
|
|
|
+ "where": {
|
|
|
+ "condition": ""
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })}`
|
|
|
+ });
|
|
|
+ getApp().globalData.handleSelect = this.handleSelect.bind(this);
|
|
|
+ },
|
|
|
+ /* 处理新增产品 */
|
|
|
+ handleSelect(detail) {
|
|
|
+ let that = this;
|
|
|
+ wx.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: `是否确认添加${detail.result.length}件商品?`,
|
|
|
+ complete: (res) => {
|
|
|
+ if (res.confirm) _Http.basic({
|
|
|
+ "id": 20230105111003,
|
|
|
+ "content": {
|
|
|
+ sa_aftersalesmagid: that.data.sa_aftersalesmagid,
|
|
|
+ "iteminfos": detail.list.map(v => {
|
|
|
+ return {
|
|
|
+ "sa_aftersalesmag_itemsid": 0,
|
|
|
+ "sa_orderitemsid": v.sa_orderitemsid,
|
|
|
+ "itemid": v.itemid,
|
|
|
+ "reason": '',
|
|
|
+ "qty": 1,
|
|
|
+ "price": v.price
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }).then(s => {
|
|
|
+ console.log('新增产品', s)
|
|
|
+ wx.showToast({
|
|
|
+ title: s.msg == '成功' ? '添加成功' : s.msg,
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+
|
|
|
+ if (s.msg == '成功') setTimeout(() => {
|
|
|
+ that.getList(that.data.sa_aftersalesmagid, true);
|
|
|
+ that.updateThePrice();
|
|
|
+ wx.navigateBack();
|
|
|
+ }, 300)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ updateThePrice() {
|
|
|
+ _Http.basic({
|
|
|
+ "id": 20230104160603,
|
|
|
+ "version": 1,
|
|
|
+ "content": {
|
|
|
+ sa_aftersalesmagid: this.data.sa_aftersalesmagid
|
|
|
+ }
|
|
|
+ }, false).then(res => {
|
|
|
+ let page = getCurrentPages().find(v => v.route == 'packageA/returnOne/detail');
|
|
|
+ if (page) page.setData({
|
|
|
+ "detail.returnamount": res.data.returnamount
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|