123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <template>
- <div style="width: 100%; padding: 0px 15px">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="formDom">
- <template #details>
- <div style="width: 100%">
- <el-button type="primary" @click="openProduct = true" style="margin-bottom: 10px"> 添加物品 </el-button>
- <el-table :data="formData.data.salesReturnDetailList">
- <el-table-column prop="productCode" label="货品编码" />
- <el-table-column prop="productName" label="货品名称" />
- <el-table-column prop="productSpec" label="规格" />
- <el-table-column prop="productUnit" label="单位" />
- <el-table-column prop="count" label="退货数量" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item :prop="'salesReturnDetailList.' + $index + '.count'" :rules="rules.count" :inline-message="true">
- <el-input-number onmousewheel="return false;" v-model="row.count" :precision="4" :controls="false" :min="0" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="remark" label="退货原因" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item :prop="'salesReturnDetailList.' + $index + '.remark'" :rules="rules.remark" :inline-message="true">
- <el-input v-model="row.remark" placeholder="请输入" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="zip" label="操作" width="100">
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleRemove($index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </byForm>
- <el-dialog v-model="openProduct" title="选择货品" width="70%" append-to-body>
- <SelectGoods @cancel="openProduct = false" @pushGoods="pushGoods"></SelectGoods>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byForm from "@/components/byForm/index";
- import { ElMessage, ElMessageBox } from "element-plus";
- import SelectGoods from "@/components/product/SelectGoods";
- import useUserStore from "@/store/modules/user";
- const { proxy } = getCurrentInstance();
- let formData = reactive({
- data: {
- supplyId: "",
- salesReturnDetailList: [],
- returnName: "",
- },
- });
- let rules = ref({
- supplyId: [{ required: true, message: "请选择供应商", trigger: "change" }],
- count: [{ required: true, message: "请输入退货数量", trigger: "blur" }],
- remark: [{ required: true, message: "请输入退货原因", trigger: "blur" }],
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- });
- const formConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "returnDept",
- label: "申请部门",
- itemWidth: 25,
- disabled: true,
- style: {
- "margin-right": "10px",
- },
- },
- {
- type: "input",
- prop: "returnName",
- label: "申请人",
- itemWidth: 25,
- disabled: true,
- style: {
- "margin-right": "10px",
- },
- },
- {
- type: "date",
- prop: "purchaseTime",
- label: "申请时间",
- itemWidth: 25,
- disabled: true,
- style: {
- "margin-right": "10px",
- },
- },
- {
- type: "select",
- prop: "supplyId",
- label: "供应商",
- isLoad: {
- url: "/supplierInfo/page",
- req: {
- pageNum: 1,
- pageSize: 9999,
- },
- labelKey: "name",
- labelVal: "id",
- method: "post",
- resUrl: "rows",
- },
- },
- {
- type: "slot",
- slotName: "details",
- label: "退货明细",
- },
- ];
- });
- const formDom = ref(null);
- const handleSubmit = async () => {
- const vaild = await formDom.value.handleSubmit(() => {});
- if (vaild) {
- if (formData.data.salesReturnDetailList.length > 0) {
- const list = formData.data.salesReturnDetailList;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- if (e.count == 0) {
- ElMessage({
- message: "退货数量不能为0!",
- type: "info",
- });
- return false;
- }
- }
- return true;
- }
- ElMessage({
- message: "请添加退货明细!",
- type: "info",
- });
- return false;
- }
- };
- let openProduct = ref(false);
- const handleRemove = (index) => {
- formData.data.salesReturnDetailList.splice(index, 1);
- return ElMessage({
- message: "删除成功!",
- type: "success",
- });
- };
- const pushGoods = (goods) => {
- const arr = goods.map((x) => ({
- goodType: x.goodType,
- productCode: x.code,
- productName: x.name,
- productSpec: x.spec,
- productUnit: x.unit,
- count: 0,
- bussinessId: x.id,
- remark: "",
- }));
- formData.data.salesReturnDetailList = formData.data.salesReturnDetailList.concat(arr);
- openProduct.value = false;
- return ElMessage({
- message: "添加成功!",
- type: "success",
- });
- };
- const props = defineProps({
- queryData: String,
- });
- const userInfo = useUserStore().user;
- onMounted(() => {
- formData.data.purchaseTime = proxy.parseTime(new Date());
- formData.data.returnDept = userInfo.dept.deptName;
- formData.data.returnName = userInfo.nickName;
- });
- defineExpose({
- submitData: formData.data,
- handleSubmit,
- });
- </script>
- <style lang="scss" scoped></style>
|