snow 7 months ago
parent
commit
e4b7c78ff0

BIN
dist-zip/build.zip


+ 5 - 1
src/views/purchase/ticketReturnRelive/config/content.config.ts

@@ -34,12 +34,16 @@ const columns = [
     prop: "orderCode",
     width: 150
   },
-
   {
     label: "对账编码",
     prop: "payNo",
     width: 150
   },
+  {
+    label: '发票号码',
+    prop: 'inv_number',
+    width: 150
+  },
   {
     label: "供应商端",
     prop: "has_account",

+ 5 - 0
src/views/purchase/ticketReturnRelive/config/search.config.ts

@@ -30,6 +30,11 @@ const searchFormConfig: FormConfig = {
       type: "input",
       placeholder: "回票解除编码"
     },
+    {
+      field: 'hpNo',
+      placeholder: '对账回票编码',
+      type: 'input'
+    },
     {
       field: "is_comon",
       type: "select",

+ 5 - 0
src/views/supply/ticketReturnRelive/config/content.config.ts

@@ -30,6 +30,11 @@ const columns = [
     prop: "payNo",
     width: 150
   },
+  {
+    label: '发票号码',
+    prop: 'inv_number',
+    width: 150
+  },
   {
     label: "卖方公司名称",
     prop: "supplierName",

+ 5 - 0
src/views/supply/ticketReturnRelive/config/search.config.ts

@@ -25,6 +25,11 @@ const searchFormConfig: FormConfig = {
       placeholder: "审核状态",
       options: ticketReturnReliveStatusOptions
     },
+    {
+      field: 'hpNo',
+      placeholder: '对账回票编码',
+      type: 'input'
+    },
     {
       field: "returnCode",
       type: "input",

+ 6 - 6
vite.config.ts

@@ -65,12 +65,12 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
           : null
     },
     plugins: [
-      ...getPluginsList(command, VITE_LEGACY)
-      // zipPack({
-      //   inDir:'dist',
-      //   outFileName:'build.zip',
-      //   pathPrefix:''
-      // })
+      ...getPluginsList(command, VITE_LEGACY),
+      zipPack({
+        inDir:'dist',
+        outFileName:'build.zip',
+        pathPrefix:''
+      })
   ],
     optimizeDeps: {
       include: ["pinia", "lodash-es", "@vueuse/core"],