Compare commits

...

8 Commits

Author SHA1 Message Date
Jruome 1c0376f60c 管理端 批量更改发货状态进行二次确认提示 2023-06-27 14:03:19 +08:00
Jruome f7da38634b Merge remote-tracking branch 'origin/test' 2023-06-27 14:02:43 +08:00
Jruome 8a93752fbc 管理端 退款提示语修改 2023-06-21 17:36:10 +08:00
tangqian caaed12df4 Merge branch 'feature/mall_product'
# Conflicts:
#	yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/task/ReplenishmentTask.java
2023-06-21 17:03:18 +08:00
Jruome 2ac2faf592 Merge remote-tracking branch 'origin/master' 2023-06-21 10:28:01 +08:00
tangqian 82d5f5408e Merge branch 'feature/mall_product'
# Conflicts:
#	yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/task/ReplenishmentTask.java
2023-06-20 17:57:42 +08:00
tangqian 7e49674bd4 fix: 定时任务补单 2023-06-20 10:01:56 +08:00
tangqian 022b9d2c8f Merge branch 'feature/mall_product' 2023-06-19 18:07:20 +08:00
4 changed files with 12 additions and 8 deletions

View File

@ -101,10 +101,6 @@ public class ReplenishmentTask {
rechargeOrderMapper.updateById(orderDO);
// 写入 充值档位记录表
storeOrderService.addPhone(orderDO, outTradeNo);
} else {
orderDO.setIsReplenishment(1);
orderDO.setReplenishmentName(map.toString());
rechargeOrderMapper.updateById(orderDO);
}
}

View File

@ -160,6 +160,7 @@ import {DICT_TYPE, getDictDatas} from "@/utils/dict";
import ElementForm from "@/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue";
import Treeselect from "@riophae/vue-treeselect";
import '@riophae/vue-treeselect/dist/vue-treeselect.css';
import {deletePhoneRecord} from "@/api/shop/phoneRecord";
export default {
name: "RechargeOrder",
computed: {
@ -283,10 +284,14 @@ export default {
return false; //
}
},
async handleGoods(){
handleGoods(){
if(this.multipleSelection.length){
await updateByIds({ids:this.multipleSelection,status:true})
this.getList();
this.$modal.confirm('是否更改勾选订单发货状态?').then(()=> {
return updateByIds({ids:this.multipleSelection,status:true})
}).then(() => {
this.getList();
this.$modal.msgSuccess("修改成功");
}).catch(() => {});
}else {
this.$modal.msgWarning("请勾选需要更改发货状态的订单")
}

View File

@ -322,7 +322,7 @@ export default {
});
}).then(() => {
this.getList();
this.$modal.msgSuccess("发起退款成功");
this.$modal.msgSuccess("操作成功");
}).catch(() => {});
},
/** 提交按钮 */

View File

@ -198,6 +198,9 @@
</script>
<style lang="scss" scoped>
::v-deep .u-textarea__count{
bottom: -26rpx;
}
.box {
margin-top: 10%;
padding: 20% 40rpx;