From 76b797028fb7a68754d0d4f3074fa8df47cc5b93 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期四, 22 一月 2026 15:28:58 +0800
Subject: [PATCH] 仓储物流-入库管理列表;仓储物流-库存管理-列表、新增、领用;

---
 /dev/null                                                  |  302 -----------
 src/views/inventoryManagement/stockManagement/New.vue      |  163 ++++++
 src/views/inventoryManagement/receiptManagement/index.vue  |  498 +++---------------
 src/api/inventoryManagement/stockInRecord.js               |   27 +
 src/views/inventoryManagement/stockManagement/index.vue    |  342 +-----------
 src/views/inventoryManagement/stockManagement/Subtract.vue |  180 ++++++
 src/api/inventoryManagement/stockInventory.js              |   27 +
 7 files changed, 527 insertions(+), 1,012 deletions(-)

diff --git a/src/api/inventoryManagement/stockInRecord.js b/src/api/inventoryManagement/stockInRecord.js
new file mode 100644
index 0000000..1746bfe
--- /dev/null
+++ b/src/api/inventoryManagement/stockInRecord.js
@@ -0,0 +1,27 @@
+import request from "@/utils/request";
+
+// 鏌ヨ鍏ュ簱淇℃伅鍒楄〃
+export const getStockInRecordListPage = (params) => {
+    return request({
+        url: "/stockInRecord/listPage",
+        method: "get",
+        params,
+    });
+};
+
+
+export const updateStockInRecord = (id, data) => {
+    return request({
+        url: "/stockInRecord/" + id,
+        method: "put",
+        data: data,
+    });
+};
+
+export const batchDeleteStockInRecords = (ids) => {
+    return request({
+        url: "/stockInRecord",
+        method: "delete",
+        data: ids,
+    });
+};
\ No newline at end of file
diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
new file mode 100644
index 0000000..c677ebf
--- /dev/null
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -0,0 +1,27 @@
+import request from "@/utils/request.js";
+// 鍒嗛〉鏌ヨ搴撳瓨璁板綍鍒楄〃
+export const getStockInventoryListPage = (params) => {
+    return request({
+        url: "/stockInventory/pagestockInventory",
+        method: "get",
+        params,
+    });
+};
+
+// 鍒涘缓搴撳瓨璁板綍
+export const createStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/addstockInventory",
+        method: "post",
+        params,
+    });
+};
+
+// 鍑忓皯搴撳瓨璁板綍
+export const subtractStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/subtractStockInventory",
+        method: "post",
+        params,
+    });
+};
diff --git a/src/views/inventoryManagement/receiptManagement/components/formDia.vue b/src/views/inventoryManagement/receiptManagement/components/formDia.vue
deleted file mode 100644
index 5ea86b2..0000000
--- a/src/views/inventoryManagement/receiptManagement/components/formDia.vue
+++ /dev/null
@@ -1,400 +0,0 @@
-<template>
-  <el-dialog v-model="dialogFormVisible" :title="getDialogTitle()" width="70%"
-    @close="closeDia">
-    <el-form :model="form" label-width="140px" label-position="top" :rules="rules" ref="formRef">
-      <el-form-item label="閲囪喘璁㈠崟鍙�" prop="purchaseContractNumber">
-        <el-select
-          v-model="form.purchaseContractNumber"
-          placeholder="璇烽�夋嫨閲囪喘璁㈠崟鍙�"
-          clearable
-          filterable
-          :loading="loadingPurchaseOptions"
-          @change="handlePurchaseChange"
-          :disabled="operationType === 'edit'"
-          style="width: 100%"
-        >
-          <el-option
-            v-for="item in purchaseOptions"
-            :key="item.purchaseContractNumber"
-            :label="formatPurchaseOption(item)"
-            :value="item.purchaseContractNumber"
-          />
-        </el-select>
-      </el-form-item>
-      <el-table
-        :data="productList"
-        border
-        v-loading="loadingProducts"
-        @selection-change="handleSelectionChange"
-      >
-        <el-table-column align="center" type="selection" width="55" />
-        <el-table-column
-          align="center"
-          label="搴忓彿"
-          type="index"
-          width="60"
-        />
-        <el-table-column label="浜у搧澶х被" prop="productCategory" />
-        <el-table-column label="瑙勬牸鍨嬪彿" prop="specificationModel" />
-        <el-table-column label="鍗曚綅" prop="unit" width="70" />
-        <!-- <el-table-column label="渚涘簲鍟�" prop="supplierName" width="100" /> -->
-        <el-table-column label="閲囪喘鏁伴噺" prop="quantity" width="100" />
-        <el-table-column label="寰呭叆搴撴暟閲�" prop="quantity0" width="100" />
-        <el-table-column label="鏈鍏ュ簱鏁伴噺" prop="quantityStock" width="150">
-          <template #default="scope">
-            <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.quantityStock" @change="() => calculateTotalPrice(scope.row)" />
-          </template>
-        </el-table-column>
-        <el-table-column label="绋庣巼(%)" prop="taxRate" width="120" />
-        <el-table-column label="鍗曚环(鍏�)" prop="taxInclusiveUnitPrice" width="150">
-					<template #default="scope">
-						<el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.taxInclusiveUnitPrice" @change="() => calculateTotalPrice(scope.row)" :disabled="operationType === 'edit'"/>
-					</template>
-				</el-table-column>
-        <el-table-column
-          label="鎬讳环(鍏�)"
-					:formatter="formattedNumber"
-          prop="taxInclusiveTotalPrice"
-          width="150"
-        >
-        </el-table-column>
-      </el-table>
-    </el-form>
-    <template #footer>
-      <div class="dialog-footer">
-        <el-button type="primary" @click="submitForm">纭</el-button>
-        <el-button @click="closeDia">鍙栨秷</el-button>
-      </div>
-    </template>
-  </el-dialog>
-</template>
-
-<script setup>
-import { ref, reactive, toRefs, getCurrentInstance } from 'vue'
-import useUserStore from '@/store/modules/user'
-import {
-  updateStockIn,
-  addSutockIn,
-  selectProductRecordListByPuechaserId
-} from "@/api/inventoryManagement/stockIn.js";
-import { purchaseListPage } from "@/api/procurementManagement/procurementLedger.js";
-
-const userStore = useUserStore()
-const { proxy } = getCurrentInstance()
-const emit = defineEmits(['close', 'success'])
-
-const operationType = ref('')// 鎿嶄綔绫诲瀷: 'add' 鎴� 'edit'
-const dialogFormVisible = ref(false)// 寮规鏄剧ず鐘舵��
-const productList = ref([]);// 浜у搧鍒楄〃鏁版嵁
-const loadingProducts = ref(false);// 浜у搧鍔犺浇鐘舵��
-const selectedRows = ref([]) // 浜у搧琛ㄦ牸閫変腑琛�
-const purchaseOptions = ref([])
-const loadingPurchaseOptions = ref(false)
-const loading = ref(false);
-
-const data = reactive({
-  form: {
-    id: null,
-    purchaseContractNumber: '', // 閲囪喘璁㈠崟鍙�
-    supplierId: null,       // 渚涘簲鍟咺D
-    supplierName: '',       // 渚涘簲鍟嗗悕绉�
-    inboundTime: '',        // 鍏ュ簱鏃堕棿
-    inboundBatch: '',       // 鍏ュ簱鎵规
-    recorderId: userStore.userId, // 褰曞叆浜篒D
-    recorderName: userStore.name, // 褰曞叆浜哄鍚�
-    entryDate: getCurrentDate(),  // 褰曞叆鏃ユ湡
-    remark: '',             // 澶囨敞
-  },
-  rules: {
-    purchaseContractNumber: [{ required: true, message: "璇疯緭鍏ラ噰璐悎鍚屽彿", trigger: "blur" }],
-    supplierId: [{ required: true, message: "璇烽�夋嫨渚涘簲鍟�", trigger: "change" }],
-    inboundTime: [{ required: true, message: "璇烽�夋嫨鍏ュ簱鏃堕棿", trigger: "change" }],
-    inboundBatch: [{ required: true, message: "璇疯緭鍏ュ叆搴撴壒娆�", trigger: "blur" }]
-  }
-})
-const { form, rules } = toRefs(data)
-
-// 鍔ㄦ�佽绠楀璇濇鏍囬
-const getDialogTitle = () => {
-  return operationType.value === 'add' ? '鏂板鍏ュ簱' : '缂栬緫鍏ュ簱'
-}
-
-const formatPurchaseOption = (item = {}) => {
-  const contract = item.purchaseContractNumber || '--';
-  const supplier = item.supplierName ? ` 路 ${item.supplierName}` : '';
-  return `${contract}${supplier}`;
-};
-
-const loadPurchaseOptions = async (keyword = '') => {
-  try {
-    loadingPurchaseOptions.value = true;
-    const res = await purchaseListPage({
-      current: -1,
-      size: -1,
-      purchaseContractNumber: keyword,
-    });
-    const records = res.data?.records || [];
-    purchaseOptions.value = records;
-    if (
-      form.value.purchaseContractNumber &&
-      !purchaseOptions.value.find(
-        (item) => item.purchaseContractNumber === form.value.purchaseContractNumber
-      )
-    ) {
-      purchaseOptions.value.push({
-        purchaseContractNumber: form.value.purchaseContractNumber,
-        supplierName: form.value.supplierName,
-        supplierId: form.value.supplierId,
-      });
-    }
-  } finally {
-    loadingPurchaseOptions.value = false;
-  }
-};
-
-const handlePurchaseChange = (value) => {
-  form.value.purchaseContractNumber = value || '';
-  const matched = purchaseOptions.value.find(
-    (item) => item.purchaseContractNumber === value
-  );
-  if (matched) {
-    form.value.supplierName = matched.supplierName || form.value.supplierName;
-    form.value.supplierId = matched.supplierId || form.value.supplierId;
-  }
-  if (!value) {
-    productList.value = [];
-    return;
-  }
-  fetchProductsByContract();
-};
-
-const exceedsAddLimit = (product) => {
-  const stock = Number(product?.quantityStock ?? 0);
-  const waiting = Number(product?.quantity0 ?? 0);
-  if (!Number.isFinite(stock) || !Number.isFinite(waiting)) {
-    return false;
-  }
-  return stock > waiting;
-};
-
-const exceedsEditLimit = (product) => {
-  const stock = Number(product?.quantityStock ?? 0);
-  const waiting = Number(product?.quantity0 ?? 0);
-  const original = Number(product?.originalQuantityStock ?? 0);
-  if (!Number.isFinite(stock) || !Number.isFinite(waiting) || !Number.isFinite(original)) {
-    return false;
-  }
-  return stock > waiting + original;
-};
-
-const formattedNumber = (row, column, cellValue) => {
-  return parseFloat(cellValue).toFixed(2);
-};
-
-// 璁$畻鎬讳环
-const calculateTotalPrice = (row) => {
-  const quantityStock = Number(row?.quantityStock ?? 0);
-  const taxInclusiveUnitPrice = Number(row?.taxInclusiveUnitPrice ?? 0);
-  
-  if (Number.isFinite(quantityStock) && Number.isFinite(taxInclusiveUnitPrice)) {
-    row.taxInclusiveTotalPrice = quantityStock * taxInclusiveUnitPrice;
-  } else {
-    row.taxInclusiveTotalPrice = 0;
-  }
-};
-
-const fetchProductsByContract = async () => {
-  if (!form.value.purchaseContractNumber) {
-    proxy.$modal.msgWarning('璇烽�夋嫨鍚堝悓鍙�')
-    return
-  }
-  try {
-    loadingProducts.value = true
-    const productRes = await selectProductRecordListByPuechaserId({
-      purchaseContractNumber: form.value.purchaseContractNumber
-    });
-    if (!productRes.data || productRes.data.length === 0) {
-      proxy.$modal.msgWarning('璇ュ悎鍚屼笅娌℃湁浜у搧璁板綍')
-      productList.value = [];
-      return
-    }
-    productList.value = productRes.data.map(item => ({
-      ...item,
-      quantityStock: 0,
-      taxInclusiveUnitPrice: Number(item?.taxInclusiveUnitPrice ?? 0),
-      taxInclusiveTotalPrice: 0,
-      originalQuantityStock: Number(item.quantityStock ?? item.inboundQuantity ?? 0),
-    }))
-  } catch (error) {
-    console.error('鏌ヨ浜у搧璁板綍澶辫触:', error)
-    proxy.$modal.msgError('鏌ヨ浜у搧璁板綍澶辫触')
-    productList.value = [];
-  } finally {
-    loadingProducts.value = false
-  }
-}
-
-const updatePro = async () => {
-  if (selectedRows.value.length === 0) {
-    proxy.$modal.msgWarning('璇峰厛閫夋嫨浜у搧');
-    return;
-  }
-  const target = selectedRows.value[0];
-  const stock = Number(target?.quantityStock ?? 0);
-  if (!Number.isFinite(stock) || stock <= 0) {
-    proxy.$modal.msgWarning('璇峰~鍐欐湁鏁堢殑鍏ュ簱鏁伴噺');
-    return;
-  }
-  if (exceedsEditLimit(target)) {
-    proxy.$modal.msgError('鏈鍏ュ簱鏁伴噺涓嶈兘瓒呰繃鍘熷叆搴撴暟閲忎笌寰呭叆搴撴暟閲忎箣鍜�');
-    return;
-  }
-  const stockInData = {
-    id: selectedRows.value[0].recordId,
-    quantityStock: Number(selectedRows.value[0].quantityStock),
-  };
-  await updateStockIn(stockInData)
-  proxy.$modal.msgSuccess('淇敼鍏ュ簱鎴愬姛')
-  closeDia()
-  emit('success')
-}
-
-const submitForm = async () => {
-  if (selectedRows.value.length === 0) {
-    proxy.$modal.msgWarning('璇峰厛閫夋嫨閲囪喘鍚堝悓骞堕�夋嫨浜у搧')
-    return
-  }
-  if(operationType.value !== 'add'){
-    await updatePro()
-    return
-  }
-  try {
-    await proxy.$refs.formRef.validate()
-    const invalidProducts = selectedRows.value.filter((product) => {
-        const stock = Number(product?.quantityStock ?? 0);
-        if (!Number.isFinite(stock) || stock <= 0) {
-          return true;
-        }
-        return exceedsAddLimit(product);
-    })
-
-    if (invalidProducts.length > 0) {
-      proxy.$modal.msgError('鏈鍏ュ簱鏁伴噺闇�澶т簬0锛屼笖涓嶈兘瓒呰繃寰呭叆搴撴暟閲�')
-      return
-    }
-
-    const stockInData = {
-      ...form.value,
-      inboundTime: formatDateTime(form.value.inboundTime),
-      nickName: userStore.nickName,
-      details: selectedRows.value.map(product => ({
-        id: product.id,
-        inboundQuantity: Number(product.quantityStock),
-				unitPrice: Number(product.taxInclusiveUnitPrice),
-        taxRate: Number(product.taxRate),
-				taxInclusiveTotalPrice: Number(product.taxInclusiveTotalPrice)
-      })),
-    };
-    loading.value = true
-    await addSutockIn(stockInData)
-
-    proxy.$modal.msgSuccess('鏂板鍏ュ簱鎴愬姛')
-    closeDia()
-    emit('success')
-
-  } catch (error) {
-    console.error('鎻愪氦澶辫触:', error)
-    if (!error.errors) {
-      proxy.$modal.msgError('鎿嶄綔澶辫触锛岃閲嶈瘯')
-    }
-  } finally {
-    loading.value = false
-  }
-}
-
-const closeDia = () => {
-  proxy.$refs.formRef.resetFields()
-  dialogFormVisible.value = false
-  emit('close')
-}
-
-const handleSelectionChange = (selection) => {
-  selectedRows.value = selection.filter(item => item.id);
-}
-
-function formatDateTime(date = new Date(), includeTime = true) {
-  const d = new Date(date);
-  const year = d.getFullYear();
-  const month = String(d.getMonth() + 1).padStart(2, '0');
-  const day = String(d.getDate()).padStart(2, '0');
-
-  if (!includeTime) {
-    return `${year}-${month}-${day}`;
-  }
-
-  const hours = String(d.getHours()).padStart(2, '0');
-  const minutes = String(d.getMinutes()).padStart(2, '0');
-  const seconds = String(d.getSeconds()).padStart(2, '0');
-
-  return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
-}
-
-function getCurrentDate() {
-  return formatDateTime(new Date(), false);
-}
-
-const openDialog = async (type, row) => {
-  operationType.value = type
-  dialogFormVisible.value = true
-  selectedRows.value = []
-  await loadPurchaseOptions();
-
-  if (type === 'add') {
-    form.value = {
-      id: null,
-      purchaseContractNumber: '',
-      supplierId: null,
-      supplierName: '',
-      inboundTime: '',
-      inboundBatch: '',
-      recorderId: userStore.userId,
-      recorderName: userStore.name,
-      entryDate: getCurrentDate(),
-      remark: ''
-    }
-    productList.value = []
-  } else {
-    form.value = JSON.parse(JSON.stringify(row))
-    try {
-      loadingProducts.value = true
-      const res = await selectProductRecordListByPuechaserId({
-        purchaseContractNumber: form.value.purchaseContractNumber,
-        id: row.id
-      });
-      productList.value = res.data.map(item => ({
-        ...item,
-        quantityStock: Number(item.quantityStock ?? item.inboundQuantity ?? row.inboundNum ?? 0),
-        taxInclusiveUnitPrice: Number(item?.taxInclusiveUnitPrice ?? 0),
-        taxInclusiveTotalPrice: Number(item?.quantityStock ?? 0) * Number(item?.taxInclusiveUnitPrice ?? 0),
-        originalQuantityStock: Number(item.quantityStock ?? item.inboundQuantity ?? row.inboundNum ?? 0),
-      }))
-      selectedRows.value = productList.value
-    } catch (error) {
-      console.error('鍔犺浇浜у搧澶辫触:', error)
-      proxy.$modal.msgError('鍔犺浇浜у搧澶辫触')
-      productList.value = []
-    } finally {
-      loadingProducts.value = false
-    }
-  }
-}
-
-defineExpose({
-  openDialog,
-})
-</script>
-
-<style scoped lang="scss"></style>
-
-
-
diff --git a/src/views/inventoryManagement/receiptManagement/components/formDiaProduct.vue b/src/views/inventoryManagement/receiptManagement/components/formDiaProduct.vue
deleted file mode 100644
index 6048e18..0000000
--- a/src/views/inventoryManagement/receiptManagement/components/formDiaProduct.vue
+++ /dev/null
@@ -1,302 +0,0 @@
-<template>
-  <el-dialog v-model="dialogFormVisible" :title="operationType === 'add' ? '鏂板鑷畾涔夊叆搴�' : '缂栬緫鑷畾涔夊叆搴�'" width="70%"
-    @close="closeDia">
-    <el-form :model="form" label-width="140px" label-position="top" :rules="rules" ref="formRef">
-      <div style="margin-bottom: 10px;" v-if="operationType === 'add'">
-        <el-button type="primary" @click="addProductRow">鏂板</el-button>
-      </div>
-      <el-table
-        :data="productList"
-        border
-        v-loading="loadingProducts"
-      >
-        <el-table-column
-          align="center"
-          label="搴忓彿"
-          type="index"
-          width="60"
-        />
-        <el-table-column label="浜у搧澶х被" prop="productCategory" width="200">
-          <template #default="scope">
-            <el-input v-model="scope.row.productCategory" placeholder="璇疯緭鍏ヤ骇鍝佸ぇ绫�" />
-          </template>
-        </el-table-column>
-        <el-table-column label="瑙勬牸鍨嬪彿" prop="specificationModel" width="200">
-          <template #default="scope">
-            <el-input v-model="scope.row.specificationModel" placeholder="璇疯緭鍏ヨ鏍煎瀷鍙�" />
-          </template>
-        </el-table-column>
-        <el-table-column label="鍗曚綅" prop="unit" width="100">
-          <template #default="scope">
-            <el-input v-model="scope.row.unit" placeholder="璇疯緭鍏ュ崟浣�" />
-          </template>
-        </el-table-column>
-        <el-table-column label="鍏ュ簱鏁伴噺" prop="inboundNum" width="150">
-          <template #default="scope">
-            <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.inboundNum" @change="() => calculateTotalPrice(scope.row)" />
-          </template>
-        </el-table-column>
-        <el-table-column label="鍏ュ簱鏃ユ湡" prop="inboundDate" width="180">
-          <template #default="scope">
-            <el-date-picker
-              v-model="scope.row.inboundDate"
-              type="date"
-              placeholder="璇烽�夋嫨鍏ュ簱鏃ユ湡"
-              value-format="YYYY-MM-DD"
-              format="YYYY-MM-DD"
-              style="width: 100%"
-            />
-          </template>
-        </el-table-column>
-        <el-table-column label="鍗曚环(鍏�)" prop="unitPrice" width="150">
-          <template #default="scope">
-            <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.unitPrice" @change="() => calculateTotalPrice(scope.row)" />
-          </template>
-        </el-table-column>
-        <el-table-column 
-           label="鎬讳环(鍏�)" 
-           prop="totalPrice" 
-           width="150" 
-         >
-        </el-table-column>
-        <el-table-column label="鎿嶄綔" width="80" v-if="operationType === 'add'">
-          <template #default="scope">
-            <el-button type="danger" size="small" @click="removeProductRow(scope.$index)">鍒犻櫎</el-button>
-          </template>
-        </el-table-column>
-      </el-table>
-    </el-form>
-    <template #footer>
-      <div class="dialog-footer">
-        <el-button type="primary" @click="submitForm">纭</el-button>
-        <el-button @click="closeDia">鍙栨秷</el-button>
-      </div>
-    </template>
-  </el-dialog>
-</template>
-
-<script setup>
-import { ref, reactive, toRefs, getCurrentInstance } from 'vue'
-import useUserStore from '@/store/modules/user'
-import {
-	addStockInCustom, updateProduct
-} from "@/api/inventoryManagement/stockIn.js";
-
-const userStore = useUserStore()
-const { proxy } = getCurrentInstance()
-const emit = defineEmits(['close', 'success'])
-
-const operationType = ref('')// 鎿嶄綔绫诲瀷: 'add' 鎴� 'edit'
-const dialogFormVisible = ref(false)// 寮规鏄剧ず鐘舵��
-const productList = ref([]);// 浜у搧鍒楄〃鏁版嵁
-const loadingProducts = ref(false);// 浜у搧鍔犺浇鐘舵��
-const loading = ref(false);
-
-function formatDateTime(date = new Date(), includeTime = true) {
-  const d = new Date(date);
-  const year = d.getFullYear();
-  const month = String(d.getMonth() + 1).padStart(2, '0');
-  const day = String(d.getDate()).padStart(2, '0');
-
-  if (!includeTime) {
-    return `${year}-${month}-${day}`;
-  }
-
-  const hours = String(d.getHours()).padStart(2, '0');
-  const minutes = String(d.getMinutes()).padStart(2, '0');
-  const seconds = String(d.getSeconds()).padStart(2, '0');
-
-  return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
-}
-
-function getCurrentDate() {
-  return formatDateTime(new Date(), false);
-}
-
-const itemTypeOptions = [
-  { label: '鐗╂枡', value: '鐗╂枡' },
-  { label: '鍘熸枡', value: '鍘熸枡' },
-  { label: '鎴愬搧', value: '鎴愬搧' },
-  { label: '鍏朵粬', value: '鍏朵粬' },
-]
-
-const taxRateOptions = [
-  { label: '1', value: 1 },
-  { label: '6', value: 6 },
-  { label: '13', value: 13 },
-]
-
-const data = reactive({
-  form: {
-    id: null,
-    supplierId: null,       // 渚涘簲鍟咺D
-    supplierName: '',       // 渚涘簲鍟嗗悕绉�
-    recorderId: userStore.userId, // 褰曞叆浜篒D
-    recorderName: userStore.name, // 褰曞叆浜哄鍚�
-    entryDate: getCurrentDate(),  // 褰曞叆鏃ユ湡
-    remark: '',             // 澶囨敞
-  },
-  rules: {
-    supplierName: [{ required: true, message: "璇疯緭鍏ヤ緵搴斿晢鍚嶇О", trigger: "blur" }]
-  }
-})
-const { form, rules } = toRefs(data)
-
-// 鏂板浜у搧琛�
-const addProductRow = () => {
-  productList.value.push({
-    id: null,
-    productCategory: '',
-    specificationModel: '',
-    unit: '',
-    supplierName: form.value.supplierName || '',
-    itemType: '',
-    inboundNum: 0,
-    inboundDate: '',
-    quantityStock: 0,
-    unitPrice: 0,
-    totalPrice: 0,
-    taxRate: null,
-    taxExclusiveTotalPrice: 0,
-  });
-};
-
-// 鍒犻櫎浜у搧琛�
-const removeProductRow = (index) => {
-  productList.value.splice(index, 1);
-};
-
-// 璁$畻鎬讳环锛堟牴鎹暟閲忋�佸崟浠峰拰鍚◣鍗曚环锛�
-const calculateTotalPrice = (row) => {
-  // 璁$畻鏅�氭�讳环锛歩nboundNum * unitPrice
-  const quantity = Number(row.inboundNum || 0);
-  const unitPrice = Number(row.unitPrice || 0);
-  row.totalPrice = quantity * unitPrice;
-  calculateExclusivePrice(row);
-};
-
-// 璁$畻涓嶅惈绋庢�讳环锛堟牴鎹惈绋庢�讳环鍜岀◣鐜囷級
-const calculateExclusivePrice = (row) => {
-  const totalPrice = Number(row.totalPrice || 0);
-  const taxRate = Number(row.taxRate || 0);
-  row.taxExclusiveTotalPrice = totalPrice / (1 + taxRate / 100);
-};
-
-const submitForm = async () => {
-  try {
-    await proxy.$refs.formRef.validate()
-    
-    if (!productList.value.length) {
-      proxy.$modal.msgError('璇疯嚦灏戞坊鍔犱竴鏉′骇鍝佹暟鎹�')
-      return
-    }
-
-    // 楠岃瘉鑷畾涔夋坊鍔犵殑鏁版嵁蹇呭~瀛楁
-    for (let i = 0; i < productList.value.length; i++) {
-      const product = productList.value[i];
-      if (!product.productCategory || !product.specificationModel || !product.unit) {
-        proxy.$modal.msgError(`绗�${i + 1}琛屼骇鍝佹暟鎹湭濉啓瀹屾暣锛堜骇鍝佸ぇ绫汇�佽鏍煎瀷鍙枫�佸崟浣嶄负蹇呭~锛塦)
-        return
-      }
-      if (!product.inboundDate) {
-        proxy.$modal.msgError(`绗�${i + 1}琛岃閫夋嫨鍏ュ簱鏃ユ湡`)
-        return
-      }
-      const stock = Number(product?.inboundNum ?? 0);
-      if (!Number.isFinite(stock) || stock <= 0) {
-        proxy.$modal.msgError(`绗�${i + 1}琛屾湰娆″叆搴撴暟閲忛渶澶т簬0`)
-        return
-      }
-    }
-
-    const payloadList = productList.value.map(product => ({
-      id: product.id ?? null,
-			inboundNum: Number(product.inboundNum),
-      productCategory: product.productCategory,
-      specificationModel: product.specificationModel,
-      unit: product.unit,
-      supplierName: product.supplierName || form.value.supplierName,
-      itemType: product.itemType,
-      inboundDate: formatDateTime(product.inboundDate, false),
-      taxRate: Number(product.taxRate || 0),
-      taxExclusiveTotalPrice: Number(product.taxExclusiveTotalPrice || 0),
-			unitPrice: Number(product.unitPrice || 0),
-    }));
-    loading.value = true
-    if (operationType.value === 'edit') {
-      const editPayload = payloadList[0]
-      await updateProduct(editPayload)
-    } else {
-      await addStockInCustom(payloadList)
-    }
-
-    proxy.$modal.msgSuccess(operationType.value === 'edit' ? '缂栬緫鑷畾涔夊叆搴撴垚鍔�' : '鏂板鑷畾涔夊叆搴撴垚鍔�')
-    closeDia()
-    emit('success')
-
-  } catch (error) {
-    console.error('鎻愪氦澶辫触:', error)
-    if (!error.errors) {
-      proxy.$modal.msgError('鎿嶄綔澶辫触锛岃閲嶈瘯')
-    }
-  } finally {
-    loading.value = false
-  }
-}
-
-const closeDia = () => {
-  proxy.$refs.formRef.resetFields()
-  dialogFormVisible.value = false
-  productList.value = []
-  emit('close')
-}
-
-const openDialog = async (type, row) => {
-  operationType.value = type
-  dialogFormVisible.value = true
-
-  if (type === 'add') {
-    form.value = {
-      id: null,
-      supplierId: null,
-      supplierName: '',
-      recorderId: userStore.userId,
-      recorderName: userStore.name,
-      entryDate: getCurrentDate(),
-      remark: ''
-    }
-    productList.value = []
-  } else {
-    // 缂栬緫妯″紡锛氬皢琛屾暟鎹~鍏呭埌琛ㄦ牸涓互鏀寔淇敼
-    form.value = {
-      id: row?.id ?? null,
-      supplierId: row?.supplierId ?? null,
-      supplierName: row?.supplierName ?? '',
-      recorderId: userStore.userId,
-      recorderName: userStore.name,
-      entryDate: getCurrentDate(),
-      remark: row?.remark ?? ''
-    }
-    productList.value = [{
-      id: row?.id ?? null,
-      productCategory: row?.productCategory ?? '',
-      specificationModel: row?.specificationModel ?? '',
-      unit: row?.unit ?? '',
-      supplierName: row?.supplierName ?? '',
-      itemType: row?.itemType ?? '',
-      inboundNum: Number(row?.inboundNum ?? row?.inboundQuantity ?? 0),
-      inboundDate: row?.inboundDate ?? row?.createTime ?? '',
-      taxRate: Number(row?.taxRate ?? 0),
-      unitPrice: Number(row?.unitPrice ?? 0),
-      taxExclusiveTotalPrice: Number(row?.taxExclusiveTotalPrice ?? 0),
-    }]
-  }
-}
-
-defineExpose({
-  openDialog,
-})
-</script>
-
-<style scoped lang="scss"></style>
-
diff --git a/src/views/inventoryManagement/receiptManagement/index.vue b/src/views/inventoryManagement/receiptManagement/index.vue
index 9aebae4..6dff880 100644
--- a/src/views/inventoryManagement/receiptManagement/index.vue
+++ b/src/views/inventoryManagement/receiptManagement/index.vue
@@ -1,300 +1,81 @@
 <template>
   <div class="app-container">
-    <el-tabs v-model="activeTab"
-             @tab-change="handleTabChange">
-      <el-tab-pane label="鎴愬搧鍏ュ簱"
-                   name="production">
-        <div class="search_form">
-          <div>
-            <span class="search_title ml10">鍏ュ簱鏃ユ湡锛�</span>
-            <el-date-picker v-model="searchForm.timeStr"
-                            type="date"
-                            placeholder="璇烽�夋嫨鏃ユ湡"
-                            value-format="YYYY-MM-DD"
-                            format="YYYY-MM-DD"
-                            clearable
-                            @change="handleQuery"/>
-            <span class="search_title ml10">浜у搧澶х被锛�</span>
-            <el-input v-model="searchForm.productCategory"
-                      style="width: 240px"
-                      placeholder="璇疯緭鍏�"
-                      clearable/>
-            <el-button type="primary"
-                       @click="handleQuery"
-                       style="margin-left: 10px">鎼滅储
-            </el-button>
-          </div>
-          <div>
-            <el-button @click="handleOut">瀵煎嚭</el-button>
-            <el-button type="danger"
-                       plain
-                       @click="handleDelete">鍒犻櫎
-            </el-button>
-          </div>
-        </div>
-        <div class="table_list">
-          <el-table :data="tableData"
-                    border
-                    v-loading="tableLoading"
-                    @selection-change="handleSelectionChange"
-                    :expand-row-keys="expandedRowKeys"
-                    :row-key="row => row.id"
-                    show-summary
-                    style="width: 100%"
-                    :summary-method="summarizeMainTable"
-                    height="calc(100vh - 18.5em)">
-            <el-table-column align="center"
-                             type="selection"
-                             width="55"/>
-            <el-table-column align="center"
-                             label="搴忓彿"
-                             type="index"
-                             width="60"/>
-            <el-table-column label="鍏ュ簱鏃堕棿"
-                             prop="createTime"
-                             show-overflow-tooltip/>
-            <el-table-column label="閿�鍞悎鍚屽彿"
-                             prop="salesContractNo"
-                             width="180"
-                             show-overflow-tooltip/>
-            <el-table-column label="浜у搧澶х被"
-                             prop="productCategory"
-                             show-overflow-tooltip/>
-            <el-table-column label="瑙勬牸鍨嬪彿"
-                             prop="specificationModel"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍗曚綅"
-                             prop="unit"
-                             width="70"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍏ュ簱鏁伴噺"
-                             prop="inboundNum"
-                             width="100"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍗曚环(鍏�)"
-                             prop="unitPrice"
-                             width="150"></el-table-column>
-            <el-table-column label="鎬讳环(鍏�)"
-                             prop="totalPrice"
-                             width="150"></el-table-column>
-            <!-- <el-table-column fixed="right"
-                             label="鎿嶄綔"
-                             min-width="60"
-                             align="center">
-              <template #default="scope">
-                <el-button link
-                           type="primary"
-                           size="small"
-                           @click="openForm('edit', scope.row, 'production');">缂栬緫</el-button>
-              </template>
-            </el-table-column> -->
-          </el-table>
-          <pagination v-show="total > 0"
-                      :total="total"
-                      layout="total, sizes, prev, pager, next, jumper"
-                      :page="page.current"
-                      :limit="page.size"
-                      @pagination="paginationChange"/>
-        </div>
-      </el-tab-pane>
-      <el-tab-pane label="鍘熸枡鍏ュ簱"
-                   name="purchase">
-        <div class="search_form">
-          <div>
-            <span class="search_title ml10">鍏ュ簱鏃ユ湡锛�</span>
-            <el-date-picker v-model="searchForm.timeStr"
-                            type="date"
-                            placeholder="璇烽�夋嫨鏃ユ湡"
-                            value-format="YYYY-MM-DD"
-                            format="YYYY-MM-DD"
-                            clearable
-                            @change="handleQuery"/>
-            <span class="search_title ml10">浜у搧澶х被锛�</span>
-            <el-input v-model="searchForm.productCategory"
-                      style="width: 240px"
-                      placeholder="璇疯緭鍏�"
-                      clearable/>
-            <el-button type="primary"
-                       @click="handleQuery"
-                       style="margin-left: 10px">鎼滅储
-            </el-button>
-          </div>
-          <div>
-            <el-button type="primary"
-                       @click="openForm('add', 'purchase')">鏂板鍏ュ簱
-            </el-button>
-            <el-button @click="handleOut">瀵煎嚭</el-button>
-            <el-button type="danger"
-                       plain
-                       @click="handleDelete">鍒犻櫎
-            </el-button>
-          </div>
-        </div>
-        <div class="table_list">
-          <el-table :data="tableData"
-                    border
-                    v-loading="tableLoading"
-                    @selection-change="handleSelectionChange"
-                    :expand-row-keys="expandedRowKeys"
-                    :row-key="row => row.id"
-                    show-summary
-                    style="width: 100%"
-                    :summary-method="summarizeMainTable"
-                    height="calc(100vh - 18.5em)">
-            <el-table-column align="center"
-                             type="selection"
-                             width="55"/>
-            <el-table-column align="center"
-                             label="搴忓彿"
-                             type="index"
-                             width="60"/>
-            <el-table-column label="鍏ュ簱鏃堕棿"
-                             prop="createTime"
-                             width="100"
-                             show-overflow-tooltip/>
-            <el-table-column label="閲囪喘鍚堝悓鍙�"
-                             prop="purchaseContractNumber"
-                             width="180"
-                             show-overflow-tooltip/>
-            <el-table-column label="渚涘簲鍟嗗悕绉�"
-                             prop="supplierName"
-                             width="240"
-                             show-overflow-tooltip/>
-            <el-table-column label="浜у搧澶х被"
-                             prop="productCategory"
-                             show-overflow-tooltip/>
-            <el-table-column label="瑙勬牸鍨嬪彿"
-                             prop="specificationModel"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍗曚綅"
-                             prop="unit"
-                             width="70"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍏ュ簱鏁伴噺"
-                             prop="inboundNum"
-                             width="100"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍚◣鍗曚环(鍏�)"
-                             prop="taxInclusiveUnitPrice"
-                             width="150"></el-table-column>
-            <el-table-column label="鍚◣鎬讳环(鍏�)"
-                             prop="taxInclusiveTotalPrice"
-                             width="150"></el-table-column>
-            <el-table-column label="鍏ュ簱浜�"
-                             prop="createBy"
-                             width="80"
-                             show-overflow-tooltip/>
-            <el-table-column fixed="right"
-                             label="鎿嶄綔"
-                             min-width="60"
-                             align="center">
-              <template #default="scope">
-                <el-button link
-                           :disabled="scope.row.type == 1"
-                           type="primary"
-                           size="small"
-                           @click="openForm('edit', scope.row, 'purchase');">缂栬緫
-                </el-button>
-              </template>
-            </el-table-column>
-          </el-table>
-          <pagination v-show="total > 0"
-                      :total="total"
-                      layout="total, sizes, prev, pager, next, jumper"
-                      :page="page.current"
-                      :limit="page.size"
-                      @pagination="paginationChange"/>
-        </div>
-      </el-tab-pane>
-      <el-tab-pane label="鐢熶骇鍏ュ簱"
-                   name="product">
-        <div class="search_form">
-          <div>
-            <span class="search_title ml10">鍏ュ簱鏃ユ湡锛�</span>
-            <el-date-picker v-model="searchForm.timeStr"
-                            type="date"
-                            placeholder="璇烽�夋嫨鏃ユ湡"
-                            value-format="YYYY-MM-DD"
-                            format="YYYY-MM-DD"
-                            clearable
-                            @change="handleQuery"/>
-            <span class="search_title ml10">浜у搧澶х被锛�</span>
-            <el-input v-model="searchForm.productCategory"
-                      style="width: 240px"
-                      placeholder="璇疯緭鍏�"
-                      clearable/>
-            <el-button type="primary"
-                       @click="handleQuery"
-                       style="margin-left: 10px">鎼滅储
-            </el-button>
-          </div>
-          <div>
-            <el-button type="primary"
-                       @click="openForm('add', 'purchase')">鏂板鍏ュ簱
-            </el-button>
-            <el-button @click="handleOut">瀵煎嚭</el-button>
-            <el-button type="danger"
-                       plain
-                       @click="handleDelete">鍒犻櫎
-            </el-button>
-          </div>
-        </div>
-        <div class="table_list">
-          <el-table :data="tableData"
-                    border
-                    v-loading="tableLoading"
-                    @selection-change="handleSelectionChange"
-                    :expand-row-keys="expandedRowKeys"
-                    :row-key="row => row.id"
-                    show-summary
-                    style="width: 100%"
-                    :summary-method="summarizeMainTable"
-                    height="calc(100vh - 18.5em)">
-            <el-table-column align="center"
-                             type="selection"
-                             width="55"/>
-            <el-table-column align="center"
-                             label="搴忓彿"
-                             type="index"
-                             width="60"/>
-            <el-table-column label="鍏ュ簱鏃堕棿"
-                             prop="createTime"
-                             width="100"
-                             show-overflow-tooltip/>
-            <el-table-column label="浜у搧澶х被"
-                             prop="productCategory"
-                             show-overflow-tooltip/>
-            <el-table-column label="瑙勬牸鍨嬪彿"
-                             prop="specificationModel"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍗曚綅"
-                             prop="unit"
-                             width="220"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍏ュ簱鏁伴噺"
-                             prop="inboundNum"
-                             width="220"
-                             show-overflow-tooltip/>
-            <el-table-column label="鍏ュ簱浜�"
-                             prop="createBy"
-                             width="220"
-                             show-overflow-tooltip/>
-          </el-table>
-          <pagination v-show="total > 0"
-                      :total="total"
-                      layout="total, sizes, prev, pager, next, jumper"
-                      :page="page.current"
-                      :limit="page.size"
-                      @pagination="pageProductChange"/>
-        </div>
-      </el-tab-pane>
-    </el-tabs>
-    <form-dia ref="formDia"
-              @close="handleQuery"
-              @success="handleQuery"></form-dia>
-    <form-dia-product ref="formDiaProduct"
-                      @close="handleQuery"
-                      @success="handleQuery"></form-dia-product>
+    <div class="search_form">
+      <div>
+        <span class="search_title ml10">鍏ュ簱鏃ユ湡锛�</span>
+        <el-date-picker v-model="searchForm.timeStr"
+                        type="date"
+                        placeholder="璇烽�夋嫨鏃ユ湡"
+                        value-format="YYYY-MM-DD"
+                        format="YYYY-MM-DD"
+                        clearable
+                        @change="handleQuery"/>
+        <span class="search_title ml10">浜у搧澶х被锛�</span>
+        <el-input v-model="searchForm.productName"
+                  style="width: 240px"
+                  placeholder="璇疯緭鍏�"
+                  clearable/>
+        <el-button type="primary"
+                   @click="handleQuery"
+                   style="margin-left: 10px">鎼滅储
+        </el-button>
+      </div>
+      <div>
+        <el-button @click="handleOut">瀵煎嚭</el-button>
+        <el-button type="danger"
+                   plain
+                   @click="handleDelete">鍒犻櫎
+        </el-button>
+      </div>
+    </div>
+    <div class="table_list">
+      <el-table :data="tableData"
+                border
+                v-loading="tableLoading"
+                @selection-change="handleSelectionChange"
+                :expand-row-keys="expandedRowKeys"
+                :row-key="row => row.id"
+                show-summary
+                style="width: 100%"
+                :summary-method="summarizeMainTable"
+                height="calc(100vh - 18.5em)">
+        <el-table-column align="center"
+                         type="selection"
+                         width="55"/>
+        <el-table-column align="center"
+                         label="搴忓彿"
+                         type="index"
+                         width="60"/>
+        <el-table-column label="鍏ュ簱鎵规"
+                         prop="inboundBatches"
+                         width="280"
+                         show-overflow-tooltip/>
+        <el-table-column label="鍏ュ簱鏃堕棿"
+                         prop="createTime"
+                         show-overflow-tooltip/>
+        <el-table-column label="浜у搧澶х被"
+                         prop="productName"
+                         show-overflow-tooltip/>
+        <el-table-column label="瑙勬牸鍨嬪彿"
+                         prop="model"
+                         show-overflow-tooltip/>
+        <el-table-column label="鍗曚綅"
+                         prop="unit"
+                         show-overflow-tooltip/>
+        <el-table-column label="鍏ュ簱鏁伴噺"
+                         prop="stockInNum"
+                         show-overflow-tooltip/>
+        <el-table-column label="鍏ュ簱浜�"
+                         prop="createBy"
+                         show-overflow-tooltip/>
+      </el-table>
+      <pagination v-show="total > 0"
+                  :total="total"
+                  layout="total, sizes, prev, pager, next, jumper"
+                  :page="page.current"
+                  :limit="page.size"
+                  @pagination="pageProductChange"/>
+    </div>
   </div>
 </template>
 
@@ -309,29 +90,16 @@
   nextTick,
 } from "vue";
 import {ElMessageBox} from "element-plus";
-import useUserStore from "@/store/modules/user";
-import dayjs from "dayjs";
 import {
-  getStockInPage,
-  getStockInPageByProduction,
-  getStockInPageByProductProduction,
-  delStockIn,
-} from "@/api/inventoryManagement/stockIn.js";
-import FormDia from "./components/formDia.vue";
-import FormDiaProduct from "./components/formDiaProduct.vue";
-
-// 鑾峰彇褰撳墠鏃ユ湡
-function getCurrentDate() {
-  return dayjs().format("YYYY-MM-DD");
-}
+  getStockInRecordListPage,
+  batchDeleteStockInRecords,
+} from "@/api/inventoryManagement/stockInRecord.js";
 
 const {proxy} = getCurrentInstance();
 
 const tableData = ref([]);
 const selectedRows = ref([]);
 const tableLoading = ref(false);
-const formDia = ref();
-const formDiaProduct = ref();
 const activeTab = ref("production"); // 褰撳墠婵�娲荤殑 tab
 
 const page = reactive({
@@ -342,9 +110,7 @@
 
 const data = reactive({
   searchForm: {
-    supplierName: "",
-    customerName: "",
-    productCategory: "",
+    productName: "",
     timeStr: "",
   },
 });
@@ -365,89 +131,18 @@
   page.size = obj.limit;
   getList();
 };
+
 const getList = () => {
   tableLoading.value = true;
   const params = {...page};
-
-  // 鏍规嵁涓嶅悓鐨� tab 绫诲瀷浼犻�掍笉鍚岀殑鏌ヨ鍙傛暟
-  if (activeTab.value === "production") {
-    params.customerName = searchForm.value.customerName;
-    params.timeStr = searchForm.value.timeStr;
-  } else {
-    params.supplierName = searchForm.value.supplierName;
-    params.timeStr = searchForm.value.timeStr;
-  }
-  params.productCategory = searchForm.value.productCategory;
-  if (activeTab.value === "product") {
-    getStockInPageByProductProduction(params)
-        .then(res => {
-          tableLoading.value = false;
-          tableData.value = res.data.records;
-        });
-
-  }else {
-    // 鏍规嵁涓嶅悓鐨� tab 绫诲瀷璋冪敤涓嶅悓鐨勬帴鍙�
-    const apiCall =
-        activeTab.value === "production"
-            ? getStockInPageByProduction(params)
-            : getStockInPage(params);
-
-    apiCall
-        .then(res => {
-          tableLoading.value = false;
-          tableData.value = res.data.records;
-
-          // 鍓嶇璁$畻鎬讳环锛氭�讳环 = unitPrice * inboundNum
-          tableData.value = tableData.value.map(item => {
-            // 浣跨敤鍏ュ簱鏁伴噺璁$畻鎬讳环
-            const inboundNum = Number(item.inboundNum) || 0;
-            const unitPrice = Number(item.unitPrice) || 0;
-            const taxInclusiveUnitPrice = Number(item.taxInclusiveUnitPrice) || 0;
-
-            // 鏍规嵁鏍囩椤电被鍨嬭绠椾笉鍚岀殑鎬讳环
-            if (activeTab.value === "production") {
-              // 鎴愬搧搴撳瓨锛氭�讳环 = unitPrice * 鍏ュ簱鏁伴噺
-              item.totalPrice = (unitPrice * inboundNum).toFixed(2);
-            } else {
-              // 鍘熸枡鍜屾潗鏂欏簱瀛橈細鍚◣鎬讳环 = taxInclusiveUnitPrice * 鍏ュ簱鏁伴噺
-              item.taxInclusiveTotalPrice = (
-                  taxInclusiveUnitPrice * inboundNum
-              ).toFixed(2);
-            }
-
-            return item;
-          });
-
-          total.value = res.data.total;
-        })
-        .catch(() => {
-          tableLoading.value = false;
-        });
-  }
-
-};
-
-// 鍒囨崲 tab
-const handleTabChange = tabName => {
-  page.current = 1;
-  // 鍒囨崲 tab 鏃舵竻绌烘悳绱㈡潯浠�
-  searchForm.value.supplierName = "";
-  searchForm.value.customerName = "";
-  searchForm.value.timeStr = "";
-  searchForm.value.productCategory = "";
-  getList();
-};
-
-// 鎵撳紑寮规
-const openForm = async (type, row, tabType) => {
-  const currentTab = tabType || activeTab.value;
-  await nextTick(() => {
-    if (currentTab === "production") {
-      formDiaProduct.value?.openDialog(type, row);
-    } else {
-      formDia.value?.openDialog(type, row);
-    }
-  });
+  params.timeStr = searchForm.value.timeStr;
+  params.productName = searchForm.value.productName;
+  getStockInRecordListPage(params)
+      .then(res => {
+        tableData.value = res.data.records;
+      }).finally(() => {
+        tableLoading.value = false;
+  })
 };
 
 // 琛ㄦ牸閫夋嫨鏁版嵁
@@ -500,20 +195,7 @@
     type: "warning",
   })
       .then(() => {
-        // 鏍规嵁褰撳墠 tab 绫诲瀷閫夋嫨涓嶅悓鐨勫垹闄ゆ帴鍙e拰type鍙傛暟
-        let deleteApi, deleteParams;
-
-        if (activeTab.value === "production") {
-          // 鎴愬搧鍒犻櫎锛宼ype浼�2
-          deleteApi = delStockIn;
-          deleteParams = {ids, type: 2};
-        } else {
-          // 鍘熸枡鍒犻櫎锛宼ype浼�1
-          deleteApi = delStockIn;
-          deleteParams = {ids, type: 1};
-        }
-
-        deleteApi(deleteParams)
+        batchDeleteStockInRecords(ids)
             .then(() => {
               proxy.$modal.msgSuccess("鍒犻櫎鎴愬姛");
               getList();
diff --git a/src/views/inventoryManagement/stockManagement/New.vue b/src/views/inventoryManagement/stockManagement/New.vue
new file mode 100644
index 0000000..8243748
--- /dev/null
+++ b/src/views/inventoryManagement/stockManagement/New.vue
@@ -0,0 +1,163 @@
+<template>
+  <div>
+    <el-dialog
+        v-model="isShow"
+        title="鏂板搴撳瓨"
+        width="800"
+        @close="closeModal"
+    >
+      <el-form label-width="140px" :model="formState" label-position="top" ref="formRef">
+        <el-form-item
+            label="浜у搧鍚嶇О"
+            prop="productModelId"
+            :rules="[
+                {
+                required: true,
+                message: '璇烽�夋嫨浜у搧',
+                trigger: 'change',
+              }
+            ]"
+        >
+          <el-button type="primary" @click="showProductSelectDialog = true">
+            {{ formState.productName ? formState.productName : '閫夋嫨浜у搧' }}
+          </el-button>
+        </el-form-item>
+
+        <el-form-item
+            label="瑙勬牸"
+            prop="productModelName"
+        >
+          <el-input v-model="formState.productModelName"  disabled />
+        </el-form-item>
+
+        <el-form-item
+            label="鍗曚綅"
+            prop="unit"
+        >
+          <el-input v-model="formState.unit"  disabled />
+        </el-form-item>
+
+        <el-form-item
+            label="鏁伴噺"
+            prop="qualitity"
+        >
+          <el-input-number v-model="formState.qualitity" :step="1" :min="0" style="width: 100%" />
+        </el-form-item>
+
+        <el-form-item label="澶囨敞" prop="remark">
+          <el-input v-model="formState.remark" type="textarea" />
+        </el-form-item>
+      </el-form>
+
+      <!-- 浜у搧閫夋嫨寮圭獥 -->
+      <ProductSelectDialog
+          v-model="showProductSelectDialog"
+          @confirm="handleProductSelect"
+          single
+      />
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button type="primary" @click="handleSubmit">纭</el-button>
+          <el-button @click="closeModal">鍙栨秷</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup>
+import {ref, computed, getCurrentInstance} from "vue";
+import ProductSelectDialog from "@/views/basicData/product/ProductSelectDialog.vue";
+import {createStockInventory} from "@/api/inventoryManagement/stockInventory.js";
+
+const props = defineProps({
+  visible: {
+    type: Boolean,
+    required: true,
+  },
+});
+
+const emit = defineEmits(['update:visible', 'completed']);
+
+// 鍝嶅簲寮忔暟鎹紙鏇夸唬閫夐」寮忕殑 data锛�
+const formState = ref({
+  productId: undefined,
+  productModelId: undefined,
+  productName: "",
+  productModelName: "",
+  unit: "",
+  qualitity: 0,
+  remark: '',
+});
+
+const isShow = computed({
+  get() {
+    return props.visible;
+  },
+  set(val) {
+    emit('update:visible', val);
+  },
+});
+
+const showProductSelectDialog = ref(false);
+
+let { proxy } = getCurrentInstance()
+
+const closeModal = () => {
+  // 閲嶇疆琛ㄥ崟鏁版嵁
+  formState.value = {
+    productId: undefined,
+    productModelId: undefined,
+    productName: "",
+    productModelName: "",
+    description: '',
+  };
+  isShow.value = false;
+};
+
+// 浜у搧閫夋嫨澶勭悊
+const handleProductSelect = async (products) => {
+  if (products && products.length > 0) {
+    const product = products[0];
+    console.log(product)
+    formState.value.productId = product.productId;
+    formState.value.productName = product.productName;
+    formState.value.productModelName = product.model;
+    formState.value.productModelId = product.id;
+    formState.value.unit = product.unit;
+    showProductSelectDialog.value = false;
+    // 瑙﹀彂琛ㄥ崟楠岃瘉鏇存柊
+    proxy.$refs["formRef"]?.validateField('productModelId');
+  }
+};
+
+const handleSubmit = () => {
+  proxy.$refs["formRef"].validate(valid => {
+    if (valid) {
+      // 楠岃瘉鏄惁閫夋嫨浜嗕骇鍝佸拰瑙勬牸
+      if (!formState.value.productModelId) {
+        proxy.$modal.msgError("璇烽�夋嫨浜у搧");
+        return;
+      }
+      if (!formState.value.productModelId) {
+        proxy.$modal.msgError("璇烽�夋嫨瑙勬牸");
+        return;
+      }
+      createStockInventory(formState.value).then(res => {
+        // 鍏抽棴妯℃�佹
+        isShow.value = false;
+        // 鍛婄煡鐖剁粍浠跺凡瀹屾垚
+        emit('completed');
+        proxy.$modal.msgSuccess("鎻愪氦鎴愬姛");
+      })
+    }
+  })
+};
+
+
+defineExpose({
+  closeModal,
+  handleSubmit,
+  isShow,
+});
+</script>
diff --git a/src/views/inventoryManagement/stockManagement/Subtract.vue b/src/views/inventoryManagement/stockManagement/Subtract.vue
new file mode 100644
index 0000000..bc6c516
--- /dev/null
+++ b/src/views/inventoryManagement/stockManagement/Subtract.vue
@@ -0,0 +1,180 @@
+<template>
+  <div>
+    <el-dialog
+        v-model="isShow"
+        title="棰嗙敤"
+        width="800"
+        @close="closeModal"
+    >
+      <el-form label-width="140px" :model="formState" label-position="top" ref="formRef">
+        <el-form-item
+            label="浜у搧鍚嶇О"
+            prop="productModelId"
+            :rules="[
+                {
+                required: true,
+                message: '璇烽�夋嫨浜у搧',
+                trigger: 'change',
+              }
+            ]"
+        >
+          <el-button type="primary" @click="showProductSelectDialog = true" disabled>
+            {{ formState.productName ? formState.productName : '閫夋嫨浜у搧' }}
+          </el-button>
+        </el-form-item>
+
+        <el-form-item
+            label="瑙勬牸"
+            prop="productModelName"
+        >
+          <el-input v-model="formState.model"  disabled />
+        </el-form-item>
+
+        <el-form-item
+            label="鍗曚綅"
+            prop="unit"
+        >
+          <el-input v-model="formState.unit"  disabled />
+        </el-form-item>
+
+        <el-form-item
+            label="鏁伴噺"
+            prop="qualitity"
+        >
+          <el-input-number v-model="formState.qualitity" :step="1" :min="0" style="width: 100%" />
+        </el-form-item>
+
+        <el-form-item label="澶囨敞" prop="remark">
+          <el-input v-model="formState.remark" type="textarea" />
+        </el-form-item>
+      </el-form>
+
+      <!-- 浜у搧閫夋嫨寮圭獥 -->
+      <ProductSelectDialog
+          v-model="showProductSelectDialog"
+          @confirm="handleProductSelect"
+          single
+      />
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button type="primary" @click="handleSubmit">纭</el-button>
+          <el-button @click="closeModal">鍙栨秷</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup>
+import {ref, computed, getCurrentInstance} from "vue";
+import ProductSelectDialog from "@/views/basicData/product/ProductSelectDialog.vue";
+import {subtractStockInventory} from "@/api/inventoryManagement/stockInventory.js";
+
+const props = defineProps({
+  visible: {
+    type: Boolean,
+    required: true,
+  },
+  record: {
+    type: Object,
+    default: () => {},
+  }
+});
+
+const emit = defineEmits(['update:visible', 'completed']);
+
+onMounted(() => {
+  initFormData()
+})
+
+const initFormData = () => {
+  if (props.record) {
+    formState.value = {
+      ...formState.value,
+      ...props.record,
+    }
+  }
+}
+
+// 鍝嶅簲寮忔暟鎹紙鏇夸唬閫夐」寮忕殑 data锛�
+const formState = ref({
+  productId: undefined,
+  productModelId: undefined,
+  productName: "",
+  model: "",
+  unit: "",
+  qualitity: 0,
+  remark: '',
+});
+
+const isShow = computed({
+  get() {
+    return props.visible;
+  },
+  set(val) {
+    emit('update:visible', val);
+  },
+});
+
+const showProductSelectDialog = ref(false);
+
+let { proxy } = getCurrentInstance()
+
+const closeModal = () => {
+  // 閲嶇疆琛ㄥ崟鏁版嵁
+  formState.value = {
+    productId: undefined,
+    productModelId: undefined,
+    productName: "",
+    productModelName: "",
+    description: '',
+  };
+  isShow.value = false;
+};
+
+// 浜у搧閫夋嫨澶勭悊
+const handleProductSelect = async (products) => {
+  if (products && products.length > 0) {
+    const product = products[0];
+    console.log(product)
+    formState.value.productId = product.productId;
+    formState.value.productName = product.productName;
+    formState.value.productModelName = product.model;
+    formState.value.productModelId = product.id;
+    formState.value.unit = product.unit;
+    showProductSelectDialog.value = false;
+    // 瑙﹀彂琛ㄥ崟楠岃瘉鏇存柊
+    proxy.$refs["formRef"]?.validateField('productModelId');
+  }
+};
+
+const handleSubmit = () => {
+  proxy.$refs["formRef"].validate(valid => {
+    if (valid) {
+      // 楠岃瘉鏄惁閫夋嫨浜嗕骇鍝佸拰瑙勬牸
+      if (!formState.value.productModelId) {
+        proxy.$modal.msgError("璇烽�夋嫨浜у搧");
+        return;
+      }
+      if (!formState.value.productModelId) {
+        proxy.$modal.msgError("璇烽�夋嫨瑙勬牸");
+        return;
+      }
+      subtractStockInventory(formState.value).then(res => {
+        // 鍏抽棴妯℃�佹
+        isShow.value = false;
+        // 鍛婄煡鐖剁粍浠跺凡瀹屾垚
+        emit('completed');
+        proxy.$modal.msgSuccess("鎻愪氦鎴愬姛");
+      })
+    }
+  })
+};
+
+
+defineExpose({
+  closeModal,
+  handleSubmit,
+  isShow,
+});
+</script>
diff --git a/src/views/inventoryManagement/stockManagement/index.vue b/src/views/inventoryManagement/stockManagement/index.vue
index 52b0184..0248301 100644
--- a/src/views/inventoryManagement/stockManagement/index.vue
+++ b/src/views/inventoryManagement/stockManagement/index.vue
@@ -2,150 +2,48 @@
   <div class="app-container">
     <div class="search_form">
       <div>
-        <span class="search_title">渚涘簲鍟嗗悕绉帮細</span>
-        <el-input v-model="searchForm.supplierName" style="width: 240px" placeholder="璇疯緭鍏�" @change="handleQuery"
-          clearable prefix-icon="Search" />
-				<span class="search_title ml10">鍏ュ簱鏃ユ湡锛�</span>
-				<el-date-picker
-					v-model="searchForm.timeStr"
-					type="date"
-					placeholder="璇烽�夋嫨鏃ユ湡"
-					value-format="YYYY-MM-DD"
-					format="YYYY-MM-DD"
-					clearable
-					@change="handleQuery"
-				/>
+        <span class="search_title ml10">浜у搧澶х被锛�</span>
+        <el-input v-model="searchForm.productName"
+                  style="width: 240px"
+                  placeholder="璇疯緭鍏�"
+                  clearable/>
         <el-button type="primary" @click="handleQuery" style="margin-left: 10px">鎼滅储</el-button>
       </div>
       <div>
-        <!-- <el-button type="primary" @click="openForm('add')">鏂板</el-button> -->
+         <el-button type="primary" @click="isShowNewModal = true">鏂板搴撳瓨</el-button>
         <el-button @click="handleOut">瀵煎嚭</el-button>
-        <el-button type="danger" plain @click="handleDelete">鍒犻櫎</el-button>
       </div>
     </div>
     <div class="table_list">
       <el-table :data="tableData" border v-loading="tableLoading" @selection-change="handleSelectionChange"
-        :expand-row-keys="expandedRowKeys" :row-key="row => row.id" show-summary style="width: 100%"
-        :row-class-name="tableRowClassName"
-        :summary-method="summarizeMainTable" height="calc(100vh - 18.5em)">
+        :expand-row-keys="expandedRowKeys" :row-key="row => row.id" style="width: 100%"
+        :row-class-name="tableRowClassName" height="calc(100vh - 18.5em)">
         <el-table-column align="center" type="selection" width="55" />
         <el-table-column align="center" label="搴忓彿" type="index" width="60" />
-        <el-table-column label="鍏ュ簱鏃ユ湡" prop="createTime" width="100" show-overflow-tooltip />
-        <el-table-column label="渚涘簲鍟嗗悕绉�" prop="supplierName" width="240" show-overflow-tooltip />
-        <el-table-column label="浜у搧澶х被" prop="productCategory" width="100" show-overflow-tooltip />
-        <el-table-column label="瑙勬牸鍨嬪彿" prop="specificationModel" width="200" show-overflow-tooltip />
-        <el-table-column label="鍗曚綅" prop="unit" width="80" show-overflow-tooltip />
-        <el-table-column label="搴撳瓨鏁伴噺" prop="inboundNum0" width="100" show-overflow-tooltip />
-        <el-table-column label="搴撳瓨棰勮鏁伴噺" prop="warnNum" width="130" show-overflow-tooltip />
-        <el-table-column label="鍚◣鍗曚环" prop="taxInclusiveUnitPrice" width="100" show-overflow-tooltip />
-        <el-table-column label="鍚◣鎬讳环" prop="taxInclusiveTotalPrice" width="100" show-overflow-tooltip />
-        <el-table-column label="绋庣巼(%)" prop="taxRate" width="100" show-overflow-tooltip />
-        <el-table-column label="涓嶅惈绋庢�讳环" prop="taxExclusiveTotalPrice" width="100" show-overflow-tooltip />
-        <el-table-column label="鍏ュ簱浜�" prop="createBy" width="80" show-overflow-tooltip />
+        <el-table-column label="鍏ュ簱鏃ユ湡" prop="createTime" show-overflow-tooltip />
+        <el-table-column label="浜у搧澶х被" prop="productName" show-overflow-tooltip />
+        <el-table-column label="瑙勬牸鍨嬪彿" prop="model" show-overflow-tooltip />
+        <el-table-column label="鍗曚綅" prop="unit" show-overflow-tooltip />
+        <el-table-column label="搴撳瓨鏁伴噺" prop="qualitity" show-overflow-tooltip />
+        <el-table-column label="搴撳瓨棰勮鏁伴噺" prop="warnNum"  show-overflow-tooltip />
+        <el-table-column label="鏈�杩戞洿鏂版椂闂�" prop="updateTime" show-overflow-tooltip />
         <el-table-column fixed="right" label="鎿嶄綔" min-width="60" align="center">
           <template #default="scope">
-            <el-button link type="primary" size="small" @click="openForm('edit', scope.row);">缂栬緫</el-button>
+            <el-button link type="primary" size="small" @click="showSubtractModal(scope.row)" :disabled="scope.row.qualitity > 0">棰嗙敤</el-button>
           </template>
         </el-table-column>
       </el-table>
       <pagination v-show="total > 0" :total="total" layout="total, sizes, prev, pager, next, jumper"
         :page="page.current" :limit="page.size" @pagination="paginationChange" />
     </div>
-    <el-dialog v-model="dialogFormVisible" :title="operationType === 'add' ? '鏂板搴撳瓨' : '缂栬緫搴撳瓨'" width="70%"
-      @close="closeDia">
-      <el-form :model="form" label-width="140px" label-position="top" :rules="rules" ref="formRef">
-        <el-row :gutter="30">
-          <el-col :span="12">
-            <el-form-item label="渚涘簲鍟嗗悕绉帮細" prop="supplierName">
-              <el-input disabled v-model="form.supplierName" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-          <el-col :span="12">
-            <el-form-item label="浜у搧澶х被锛�" prop="productId">
-              <el-select disabled v-model="form.productCategory" placeholder="璇烽�夋嫨" clearable filterable>
-                <el-option v-for="item in productList" :key="item.id" :label="item.productName"
-                           :value="item.productName" />
-              </el-select>
-            </el-form-item>
-          </el-col>
-        </el-row>
-        <el-row :gutter="30">
-          <el-col :span="12">
-            <el-form-item label="瑙勬牸鍨嬪彿锛�" prop="productManageId">
-              <el-select disabled v-model="form.specificationModel" placeholder="璇峰厛閫夋嫨浜у搧澶х被" clearable filterable :disabled="!form.productCategory">
-                <el-option v-for="item in productModelList" :key="item.id" :label="item.model"
-                           :value="item.id" />
-              </el-select>
-            </el-form-item>
-          </el-col>
-          <el-col :span="12">
-            <el-form-item  label="鍗曚綅锛�" prop="customerId">
-              <el-input disabled v-model="form.unit" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-        </el-row>
-        <el-row :gutter="30">
-          <el-col :span="12">
-            <el-form-item label="搴撳瓨鏃堕棿锛�" prop="projectName">
-              <el-date-picker style="width: 100%" v-model="form.updateTime" value-format="YYYY-MM-DD" format="YYYY-MM-DD"
-                type="date" placeholder="璇烽�夋嫨" clearable />
-            </el-form-item>
-          </el-col>
-          <el-col :span="12">
-            <el-form-item label="鍏ュ簱鏃堕棿锛�" prop="projectName">
-              <el-date-picker style="width: 100%" v-model="form.createTime" value-format="YYYY-MM-DD" format="YYYY-MM-DD"
-                type="date" placeholder="璇烽�夋嫨" clearable />
-            </el-form-item>
-          </el-col>
-        </el-row>
-        <el-row :gutter="30">
+    <new-stock-inventory v-if="isShowNewModal"
+                 v-model:visible="isShowNewModal"
+                 @completed="handleQuery" />
 
-          <el-col :span="12">
-            <el-form-item  label="鍚◣鍗曚环锛�" prop="customerId">
-              <el-input disabled v-model="form.taxInclusiveUnitPrice" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-          <el-col :span="12">
-            <el-form-item  label="鍚◣鎬讳环锛�" prop="customerContractNo">
-              <el-input disabled v-model="form.taxInclusiveTotalPrice" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-        </el-row>
-        <el-row :gutter="30">
-
-          <el-col :span="12">
-            <el-form-item  label="绋庣巼锛�" prop="customerId">
-              <el-input disabled v-model="form.taxRate" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-          <el-col :span="12">
-            <el-form-item label="涓嶅惈绋庢�讳环锛�" prop="entryDate">
-              <el-input disabled v-model="form.taxExclusiveTotalPrice" placeholder="璇疯緭鍏�" clearable />
-            </el-form-item>
-          </el-col>
-        </el-row>
-        <el-row :gutter="30">
-          <el-col :span="12">
-            <el-form-item label="鍑哄簱浜猴細" prop="entryPerson">
-              <el-select v-model="form.createUser" placeholder="璇烽�夋嫨" clearable>
-                <el-option v-for="item in userList" :key="item.userId" :label="item.nickName" :value="item.userId" />
-              </el-select>
-            </el-form-item>
-          </el-col>
-<!--          <el-col :span="12">-->
-<!--          <el-form-item label="搴撳瓨棰勮鏁伴噺锛�" prop="warnNum">-->
-<!--            <el-input v-model="form.warnNum" placeholder="璇疯緭鍏ユ渶浣庡簱瀛�" clearable />-->
-<!--          </el-form-item>-->
-<!--        </el-col>-->
-        </el-row>
-      </el-form>
-      <template #footer>
-        <div class="dialog-footer">
-          <el-button type="primary" @click="submitForm">纭</el-button>
-          <el-button @click="closeDia">鍙栨秷</el-button>
-        </div>
-      </template>
-    </el-dialog>
+    <subtract-stock-inventory v-if="isShowSubtractModal"
+                 v-model:visible="isShowSubtractModal"
+                 :record="record"
+                 @completed="handleQuery" />
   </div>
 </template>
 
@@ -153,84 +51,30 @@
 import pagination from '@/components/PIMTable/Pagination.vue'
 import { ref, reactive, toRefs, onMounted, getCurrentInstance } from 'vue'
 import { ElMessageBox } from "element-plus";
-import useUserStore from '@/store/modules/user'
-import { userListNoPageByTenantId } from "@/api/system/user.js";
-import { productTreeList,modelList } from "@/api/basicData/product.js"
-import { getCurrentDate } from "@/utils/index.js";
-import {
-  getStockManagePage,
-  delStockManage,
-} from "@/api/inventoryManagement/stockManage.js";
-import {
-  updateManagement,updateStockIn
-} from "@/api/inventoryManagement/stockIn.js";
+import { getStockInventoryListPage } from "@/api/inventoryManagement/stockInventory.js";
+const NewStockInventory = defineAsyncComponent(() => import("@/views/inventoryManagement/stockManagement/New.vue"));
+const SubtractStockInventory = defineAsyncComponent(() => import("@/views/inventoryManagement/stockManagement/Subtract.vue"));
 
-
-
-const userStore = useUserStore()
 const { proxy } = getCurrentInstance()
 const tableData = ref([])
-const productData = ref([])
 const selectedRows = ref([])
-const userList = ref([])
-const productList = ref([])
-const productModelList = ref([])
-// const customerOption = ref([])
+const record = ref({})
 const tableLoading = ref(false)
 const page = reactive({
   current: 1,
   size: 100,
 })
 const total = ref(0)
-const fileList = ref([])
-const loading = ref(false);
-// 鐢ㄦ埛淇℃伅琛ㄥ崟寮规鏁版嵁
-const operationType = ref('')
-const dialogFormVisible = ref(false)
+// 鏄惁鏄剧ず鏂板寮规
+const isShowNewModal = ref(false)
+// 鏄惁鏄剧ず棰嗙敤寮规
+const isShowSubtractModal = ref(false)
 const data = reactive({
   searchForm: {
-    supplierName: '',
-		timeStr: '',
-  },
-  form: {
-    supplierId: null,
-    supplierName: '',
-    productId: null,
     productName: '',
-    userId: userStore.userId,
-    nickName: '',
-    productModelId: null,
-    model: '',
-    unit: '',
-    productrecordId: null,
-    taxInclusiveUnitPrice: '',
-    taxInclusiveTotalPrice: '',
-    taxRate: '',
-    taxExclusiveTotalPrice: '',
-    inboundTime: '',
-    inboundBatch: '',
-    stockQuantity: '',
-    boundTime: '',
-		warnNum: '', // 鏂板鏈�浣庡簱瀛樺瓧娈�
-    salesLedgerProductId: null,
-  },
-  rules: {
-    supplierName: [{ required: true, message: '璇疯緭鍏ヤ緵搴斿晢鍚嶇О', trigger: 'blur' }],
-    productCategory: [{ required: true, message: '璇烽�夋嫨浜у搧澶х被', trigger: 'change' }],
-    specificationModel: [{ required: true, message: '璇疯緭鍏ヨ鏍煎瀷鍙�', trigger: 'blur' }],
-    unit: [{ required: true, message: '璇疯緭鍏ュ崟浣�', trigger: 'blur' }],
-    stockQuantity: [{ required: true, message: '璇疯緭鍏ュ嚭搴撴暟閲�', trigger: 'blur' }],
-    taxInclusiveUnitPrice: [{ required: true, message: '璇疯緭鍏ュ惈绋庡崟浠�', trigger: 'blur' }],
-    taxInclusiveTotalPrice: [{ required: true, message: '璇疯緭鍏ュ惈绋庢�讳环', trigger: 'blur' }],
-    taxRate: [{ required: true, message: '璇疯緭鍏ョ◣鐜�', trigger: 'blur' }],
-    taxExclusiveTotalPrice: [{ required: true, message: '璇疯緭鍏ヤ笉鍚◣鎬讳环', trigger: 'blur' }],
-    boundTime: [{ required: true, message: '璇烽�夋嫨搴撳瓨鏃堕棿', trigger: 'change' }],
-    inboundTime: [{ required: true, message: '璇烽�夋嫨鍏ュ簱鏃堕棿', trigger: 'change' }],
-    inboundPerson: [{ required: true, message: '璇烽�夋嫨鍑哄簱浜�', trigger: 'change' }],
-		warnNum: [{ required: true, message: '璇疯緭鍏ユ渶浣庡簱瀛�', trigger: 'blur' }], 
   }
 })
-const { searchForm, form, rules } = toRefs(data)
+const { searchForm } = toRefs(data)
 
 // 鏌ヨ鍒楄〃
 /** 鎼滅储鎸夐挳鎿嶄綔 */
@@ -245,7 +89,7 @@
 }
 const getList = () => {
   tableLoading.value = true
-  getStockManagePage({ ...searchForm.value, ...page }).then(res => {
+  getStockInventoryListPage({ ...searchForm.value, ...page }).then(res => {
     tableLoading.value = false
     tableData.value = res.data.records
     total.value = res.data.total
@@ -256,19 +100,19 @@
   })
 }
 
+// 鐐瑰嚮棰嗙敤
+const showSubtractModal = (row) => {
+  record.value = row
+  isShowSubtractModal.value = true
+}
+
 // 琛ㄦ牸閫夋嫨鏁版嵁
 const handleSelectionChange = (selection) => {
-
   // 杩囨护鎺夊瓙鏁版嵁
   selectedRows.value = selection.filter(item => item.id);
   console.log('selection', selectedRows.value)
 }
 const expandedRowKeys = ref([])
-
-// 涓昏〃鍚堣鏂规硶
-const summarizeMainTable = (param) => {
-  return proxy.summarizeTable(param, ['contractAmount', 'taxInclusiveTotalPrice', 'taxExclusiveTotalPrice']);
-};
 
 // 琛ㄦ牸琛岀被鍚�
 const tableRowClassName = ({ row }) => {
@@ -279,74 +123,6 @@
   }
   return stock < warn ? 'row-low-stock' : '';
 };
-
-// 鎵撳紑寮规
-const openForm = async (type, row) => {
-  operationType.value = type
-  form.value = {}
-  productData.value = []
-  let userLists = await userListNoPageByTenantId()
-  userList.value = userLists.data
-  if (type === 'edit') {
-    form.value = { ...row }
-    productTreeList().then(res =>{
-      productList.value = res
-      productList.value.forEach(i =>{
-        if (i.label === row.productCategory) {
-          modelList({ id: i.id }).then((res) => {
-            productModelList.value = res;
-          });
-        }
-      })
-    })
-  }
-  form.value.entryDate = getCurrentDate() // 璁剧疆榛樿褰曞叆鏃ユ湡涓哄綋鍓嶆棩鏈�
-  dialogFormVisible.value = true
-}
-
-// 鎻愪氦琛ㄥ崟
-const submitForm = () => {
-  console.log(form.value)
-  proxy.$refs["formRef"].validate(valid => {
-    if (valid) {
-
-      updateManagement(form.value).then(res => {
-        proxy.$modal.msgSuccess("鎻愪氦鎴愬姛")
-        closeDia()
-        getList()
-        // 鎻愪氦鍚庢鏌ュ簱瀛樺苟灏濊瘯鍒涘缓璇疯喘鍗�
-        // checkStockAndCreatePurchase();
-      })
-    }
-  })
-}
-// 妫�鏌ュ簱瀛樺苟鍒涘缓璇疯喘鍗�
-// const checkStockAndCreatePurchase = async () => {
-//   const stockList = tableData.value;
-//   // handList()
-//   for (const item of stockList) {
-//     if (item.inboundNum0 < item.warnNum) {
-//       try {
-// 				const stockInData = {
-// 					id: item.id,
-// 					quantityStock: item.warnNum + item.totalInboundNum,// 浣跨敤鏂版牸寮忓寲鍑芥暟
-// 				};
-// 				loading.value = true
-// 				await updateStockIn(stockInData)
-// 				proxy.$modal.msgSuccess(`浜у搧 ${item.productCategory} 淇敼鍏ュ簱鎴愬姛`)
-// 				loading.value = false
-//       } catch (error) {
-//         proxy.$modal.msgError(`浜у搧 ${item.productCategory} 鐢熸垚璇疯喘鍗曞け璐ワ紝璇锋墜鍔ㄥ鐞哷);
-//
-//       }
-//     }
-//   }
-// };
-// 鍏抽棴寮规
-const closeDia = () => {
-  proxy.resetForm("formRef")
-  dialogFormVisible.value = false
-}
 
 // 瀵煎嚭
 const handleOut = () => {
@@ -363,47 +139,9 @@
     proxy.$modal.msg("宸插彇娑�")
   })
 }
-// 鍒犻櫎
-const handleDelete = () => {
-  let ids = []
-  if (selectedRows.value.length > 0) {
-		// 妫�鏌ユ槸鍚︽湁浠栦汉缁存姢鐨勬暟鎹�
-		const unauthorizedData = selectedRows.value.filter(item => item.createUser !== userStore.id);
-		if (unauthorizedData.length > 0) {
-			proxy.$modal.msgWarning("涓嶅彲鍒犻櫎浠栦汉缁存姢鐨勬暟鎹�");
-			return;
-		}
-    ids = selectedRows.value.map(item => item.id);
-  } else {
-    proxy.$modal.msgWarning('璇烽�夋嫨鏁版嵁')
-    return
-  }
-  ElMessageBox.confirm(
-    '閫変腑鐨勫唴瀹瑰皢琚垹闄わ紝鏄惁纭鍒犻櫎锛�',
-    '瀵煎嚭', {
-    confirmButtonText: '纭',
-    cancelButtonText: '鍙栨秷',
-    type: 'warning',
-  }
-  ).then(() => {
-    delStockManage({ids:ids}).then(res => {
-      proxy.$modal.msgSuccess("鍒犻櫎鎴愬姛")
-      getList()
-    })
-  }).catch(() => {
-    proxy.$modal.msg("宸插彇娑�")
-  })
-}
+
 onMounted(() => {
   getList()
-  // checkStockAndCreatePurchase();
-    // 姣忓皬鏃舵鏌ヤ竴娆″簱瀛�
-    // const intervalId = setInterval(checkStockAndCreatePurchase, 60 * 60 * 1000);
-
-// onUnmounted(() => {
-//   // 缁勪欢鍗歌浇鏃舵竻闄ゅ畾鏃跺櫒
-//   clearInterval(intervalId);
-// });
 })
 </script>
 

--
Gitblit v1.9.3