|
@@ -22,12 +22,12 @@
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
class="fr"
|
|
|
- v-if="status === '2' && powers.some((item) => item == '049')"
|
|
|
+ v-if="status === '2' && powers.some((item) => item == '088')"
|
|
|
type="primary"
|
|
|
plain
|
|
|
:size="'mini'"
|
|
|
style="margin: 0 0 0 10px"
|
|
|
- @click="wellReturnCode"
|
|
|
+ @click="wentReceive"
|
|
|
>确认收货
|
|
|
</el-button>
|
|
|
</div>
|
|
@@ -484,6 +484,33 @@ export default {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
},
|
|
|
+ async wentReceive() {
|
|
|
+ await this.$confirm("确定要确认收货?", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(async () => {
|
|
|
+ const model = {
|
|
|
+ returnCode: this.sitem.outCode,
|
|
|
+ };
|
|
|
+ const res = await asyncRequest.saleoutreceipt(model);
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ this.$notify.success({
|
|
|
+ title: "确认收货",
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ await this.initData();
|
|
|
+ } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(res.message);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ console.log("取消");
|
|
|
+ });
|
|
|
+ },
|
|
|
async initData(e) {
|
|
|
this.returnCode = "";
|
|
|
this.returnCode_type = "";
|