From 7db419acdd2c02950b67c081dd2d7f61fdb2cb89 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期一, 30 三月 2026 16:09:07 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/RuiShiGe/LingPaoCheShenKu

---
 项目代码/WMS/WMSClient/src/views/widesea_wms/stock/Dt_StockQuantityChangeRecord.vue |   99 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/widesea_wms/stock/Dt_StockQuantityChangeRecord.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/widesea_wms/stock/Dt_StockQuantityChangeRecord.vue"
new file mode 100644
index 0000000..b43ff1b
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/widesea_wms/stock/Dt_StockQuantityChangeRecord.vue"
@@ -0,0 +1,99 @@
+<!--
+*Author锛歫xx
+ *Contact锛�283591387@qq.com
+ *浠g爜鐢辨鏋剁敓鎴�,浠讳綍鏇存敼閮藉彲鑳藉鑷磋浠g爜鐢熸垚鍣ㄨ鐩�
+ *涓氬姟璇峰湪@/extension/widesea_wms/invoices/Dt_InboundOrder.js姝ゅ缂栧啓
+ -->
+<template>
+    <view-grid ref="grid" :columns="columns" :detail="detail" :editFormFields="editFormFields"
+        :editFormOptions="editFormOptions" :searchFormFields="searchFormFields" :searchFormOptions="searchFormOptions"
+        :table="table" :extend="extend">
+    </view-grid>
+</template>
+<script>
+import extend from "@/extension/widesea_wms/stock/Dt_StockQuantityChangeRecord.js";
+import { ref, defineComponent } from "vue";
+export default defineComponent({
+    setup() {
+        const table = ref({
+            key: 'id',
+            footer: "Foots",
+            cnName: '搴撳瓨鍙樺姩璁板綍',
+            name: 'StockQuantityChangeRecord',
+            url: "/StockQuantityChangeRecord/",
+            sortName: "id"
+        });
+        const editFormFields = ref({
+        });
+        const editFormOptions = ref([
+        ]);
+        const searchFormFields = ref({
+
+        });
+        const searchFormOptions = ref([
+            [
+                { "title": "婊戞﹪鍙�", "field": "palletCode", type: "text" },
+                { "title": "搴撲綅鍙�", "field": "locationCode", type: "text" },
+                { "title": "鍙樺姩绫诲瀷", "field": "changeType", type: "select", dataKey: "ChangeType", data: [] },
+                { "title": "浠诲姟鍙�", "field": "taskNum", type: "text" },
+            ],
+            [
+                { "title": "PVI", "field": "pvi", type: "string" },
+                { "title": "杞﹁韩ID", "field": "carBodyID", type: "int" },
+                { "title": "宸烽亾鍙�", "field": "roadwayNo", type: "int" },
+                { "title": "搴撳瓨ID", "field": "stockId", type: "int" },
+            ],
+            [
+                { "title": "鐧借溅韬墿鏂欏彿", "field": "biwMaterialCode", type: "int" },
+                { "title": "杞﹁韩绫诲瀷", "field": "carType", type: "select", dataKey: "BodyType", data: [] },
+                { "title": "宸ュ崟绫诲瀷", "field": "workOrderType", type: "select", dataKey: "OrderType", data: [] },
+                { "title": "杞﹀瀷", "field": "vehicleCharacteristic", type: "string" },
+            ],
+            [
+
+                { "title": "褰╄溅韬墿鏂欏彿", "field": "pbMaterial", type: "string" },
+                { "title": "杞﹁韩棰滆壊", "field": "carBodyCharacteristic", type: "string" },
+                { "title": "澶╃獥鐗瑰緛", "field": "skylightCharacteristic", type: "string" },
+            ]
+        ]);
+        const columns = ref([
+            { field: 'id', title: '涓婚敭ID', type: 'int', width: 110, readonly: true, hidden: true, require: true, align: 'left' },
+            { field: 'stockId', title: '搴撳瓨ID', type: 'string', width: 90, align: 'left' },
+            { field: 'taskNum', title: '浠诲姟鍙�', type: 'string', width: 60, align: 'left' },
+            { field: 'changeType', title: '鍙樺姩绫诲瀷', type: 'int', width: 90, align: 'left', bind: { key: "ChangeType", data: [] } },
+            { field: 'palletCode', title: '婊戞﹪鍙�', type: 'string', width: 75, align: 'left' },
+            { field: 'locationCode', title: '搴撲綅鍙�', type: 'int', width: 120, align: 'left' },
+            { field: 'roadwayNo', title: '宸烽亾鍙�', type: 'string', width: 60, align: 'left' },
+            { field: 'pvi', title: 'PVI鐮�', type: 'string', width: 120, align: 'left' },
+            { field: 'carBodyID', title: '杞﹁韩ID', type: 'int', width: 90, align: 'left' },
+            { field: 'vehicleCharacteristic', title: '杞﹀瀷', type: 'string', width: 75, align: 'left' },
+            { field: 'carType', title: '杞﹁韩绫诲瀷', type: 'int', width: 80, align: 'left', bind: { key: "BodyType", data: [] } },
+            { field: 'workOrderType', title: '宸ュ崟绫诲瀷', type: 'string', width: 100, align: 'left', bind: { key: "OrderType", data: [] } },
+            { field: 'skylightCharacteristic', title: '澶╃獥鐗瑰緛', type: 'string', width: 75, align: 'left' },
+            { field: 'carBodyCharacteristic', title: '杞﹁韩棰滆壊', type: 'string', width: 75, align: 'left' },
+            { field: 'biwMaterialCode', title: '鐧借溅韬墿鏂欏彿', type: 'string', width: 120, align: 'left' },
+            { field: 'pbMaterial', title: '褰╄溅韬墿鏂欏彿', type: 'string', width: 120, align: 'left' },
+            { field: 'biwInPassTime', title: '鐒婅涓婄嚎鏃堕棿', type: 'datetime', width: 130, align: 'left' },
+            { field: 'createDate', title: '鍒涘缓鏃堕棿', type: 'datetime', sort: true, width: 100, align: 'left' },
+        ]);
+
+        const detail = ref({
+            cnName: "#detailCnName",
+            table: "#detailTable",
+            columns: [],
+            sortName: "",
+            key: ""
+        });
+        return {
+            table,
+            extend,
+            editFormFields,
+            editFormOptions,
+            searchFormFields,
+            searchFormOptions,
+            columns,
+            detail,
+        };
+    },
+});
+</script>

--
Gitblit v1.9.3