|
@@ -3,8 +3,8 @@
|
|
|
:title="'新建退货单'"
|
|
|
:center="true"
|
|
|
align="left"
|
|
|
- top="12vh"
|
|
|
- width="700px"
|
|
|
+ top="8vh"
|
|
|
+ width="950px"
|
|
|
@close="showModelThis = false"
|
|
|
:close-on-click-modal="false"
|
|
|
:visible.sync="showModelThis"
|
|
@@ -59,14 +59,105 @@
|
|
|
<el-input
|
|
|
:disabled="isDetail"
|
|
|
type="textarea"
|
|
|
- :rows="3"
|
|
|
+ :rows="2"
|
|
|
maxlength="250"
|
|
|
show-word-limit
|
|
|
placeholder="请填写备注"
|
|
|
v-model="ruleForm.remark"
|
|
|
/> </el-form-item
|
|
|
></el-col>
|
|
|
+ <el-col :span="24" v-show="ruleForm.return_type === '2'">
|
|
|
+ <el-form-item label="收货信息" :size="'mini'" required>
|
|
|
+ <el-table
|
|
|
+ :data="get_product_go"
|
|
|
+ border
|
|
|
+ :size="'mini'"
|
|
|
+ row-key="key"
|
|
|
+ max-height="300px"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ label="收货人-联系电话-地址"
|
|
|
+ min-width="300"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.contactor }}-{{ scope.row.mobile }}-{{
|
|
|
+ scope.row.addr_info
|
|
|
+ }}{{ scope.row.addr }}
|
|
|
+ </template></el-table-column
|
|
|
+ >
|
|
|
+ <!-- <el-table-column label="发货状态" prop="status" width="100px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag
|
|
|
+ :size="'mini'"
|
|
|
+ :type="scope.row.status == '0' ? 'warning' : ''"
|
|
|
+ v-text="
|
|
|
+ (statusOptions.find((item) => item.id == scope.row.status) || {})
|
|
|
+ .label || '--'
|
|
|
+ "
|
|
|
+ ></el-tag> </template
|
|
|
+ ></el-table-column> -->
|
|
|
|
|
|
+ <el-table-column label="收货总数量" prop="send_num" width="110" />
|
|
|
+
|
|
|
+ <el-table-column label="退货数量" width="150">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <digital-input
|
|
|
+ v-show="scope.row.edit"
|
|
|
+ :values="scope.row.return_num"
|
|
|
+ :placeholder="'退货数量'"
|
|
|
+ :min="1"
|
|
|
+ :disabled="false"
|
|
|
+ :max="scope.row.send_num"
|
|
|
+ :position="'right'"
|
|
|
+ :precision="0"
|
|
|
+ :newTime="scope.row.newTime"
|
|
|
+ :size="'mini'"
|
|
|
+ :controls="false"
|
|
|
+ :append="''"
|
|
|
+ @reschange="number_change($event, 'return_num', scope.$index)"
|
|
|
+ />
|
|
|
+ <span v-show="!scope.row.edit">
|
|
|
+ {{ scope.row.return_num }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column fixed="right" label="操作" width="50">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tooltip
|
|
|
+ effect="dark"
|
|
|
+ content="编辑"
|
|
|
+ v-if="
|
|
|
+ !scope.row.edit &&
|
|
|
+ (scope.row.status === '0' || scope.row.status === '1')
|
|
|
+ "
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <i
|
|
|
+ class="el-icon-edit tb-icon"
|
|
|
+ @click="editRow(scope.$index, 1)"
|
|
|
+ ></i>
|
|
|
+ </el-tooltip>
|
|
|
+
|
|
|
+ <el-tooltip
|
|
|
+ effect="dark"
|
|
|
+ content="保存"
|
|
|
+ v-if="
|
|
|
+ scope.row.edit &&
|
|
|
+ (scope.row.status === '0' || scope.row.status === '1')
|
|
|
+ "
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <i
|
|
|
+ class="el-icon-circle-check tb-icon"
|
|
|
+ @click="checkRow(scope.$index, 1)"
|
|
|
+ ></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24">
|
|
|
<el-row>
|
|
|
<el-col :span="8">
|
|
@@ -86,7 +177,7 @@
|
|
|
:values="ruleForm.thnum"
|
|
|
:placeholder="'退货数量'"
|
|
|
:min="0"
|
|
|
- :disabled="false"
|
|
|
+ :disabled="ruleForm.return_type === '2'"
|
|
|
:max="ruleForm.returnT"
|
|
|
:position="'right'"
|
|
|
:precision="0"
|
|
@@ -219,9 +310,20 @@ export default {
|
|
|
await this.resetForm();
|
|
|
this.loading = false;
|
|
|
},
|
|
|
- async number_change(e, key) {
|
|
|
- this.ruleForm[key] = e + "" || "0";
|
|
|
- this.$refs.ruleForm.validateField(key);
|
|
|
+ async number_change(e, key, index) {
|
|
|
+ if (index === undefined) {
|
|
|
+ this.ruleForm[key] = e + "" || "0";
|
|
|
+ this.$refs.ruleForm.validateField(key);
|
|
|
+ } else {
|
|
|
+ this.get_product_go[index][key] = e + "" || "0";
|
|
|
+ // this.get_product_go[index].newTime = new Date().valueOf() + "";
|
|
|
+
|
|
|
+ this.$set(this.get_product_go, index, this.get_product_go[index]);
|
|
|
+ this.ruleForm.thnum = 0;
|
|
|
+ this.get_product_go.forEach((s) => {
|
|
|
+ this.ruleForm.thnum += parseInt(s.return_num + "");
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
return_type_change() {
|
|
|
const { return_type } = this.ruleForm;
|
|
@@ -251,8 +353,16 @@ export default {
|
|
|
remark, //退货备注
|
|
|
errorCode, //退货原因
|
|
|
returnT,
|
|
|
- returnAddr,
|
|
|
+ returnAddr: [],
|
|
|
};
|
|
|
+ returnAddr.map((s) => {
|
|
|
+ s.return_num = s.send_num;
|
|
|
+ s.edit = false;
|
|
|
+ s.newTime = new Date().valueOf() + "";
|
|
|
+ return s;
|
|
|
+ });
|
|
|
+
|
|
|
+ this.get_product_go = returnAddr;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -261,6 +371,11 @@ export default {
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
if (this.loading) return;
|
|
|
+ const index = this.get_product_go.findIndex((v) => v.edit === true);
|
|
|
+ if (index !== -1) {
|
|
|
+ this.$message.warning("请保存完当前行!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
const { good_num, thnum, return_type } = model;
|
|
@@ -275,7 +390,15 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
if (return_type + "" === "2") {
|
|
|
- model.returnAddr[0].return_num = thnum;
|
|
|
+ // model.returnAddr[0].return_num = thnum;
|
|
|
+ this.get_product_go.forEach((s) => {
|
|
|
+ const { addrid, return_num } = s;
|
|
|
+ const item = {
|
|
|
+ id: addrid,
|
|
|
+ return_num,
|
|
|
+ };
|
|
|
+ model.returnAddr.push(item);
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
const { code, data, message } = await asyncRequest.add(model);
|
|
@@ -310,6 +433,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.get_product_go[rowIndex].edit = false;
|
|
|
+ this.get_product_go[rowIndex].newTime = new Date().valueOf() + "";
|
|
|
this.$set(this.get_product_go, rowIndex, this.get_product_go[rowIndex]);
|
|
|
},
|
|
|
//编辑某一行
|
|
@@ -322,6 +446,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.get_product_go[rowIndex].edit = true;
|
|
|
+ this.get_product_go[rowIndex].newTime = new Date().valueOf() + "";
|
|
|
this.$set(this.get_product_go, rowIndex, this.get_product_go[rowIndex]);
|
|
|
},
|
|
|
},
|
|
@@ -329,4 +454,3 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped></style>
|
|
|
-/
|