Browse Source

添加审核时间和出库时间

lilei 3 năm trước cách đây
mục cha
commit
4c5e53ce93

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
 {
   "message": "发现有新版本发布,确定更新系统?",
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
   "vendorJsVersion": "",
-  "version": 1653986714739
+  "version": 1653987592762
 }
 }

+ 22 - 7
src/views/reportData/bulkReturnReport/detailList.vue

@@ -13,17 +13,22 @@
         :wrapperCol="wrapperCol"
         :wrapperCol="wrapperCol"
         @keyup.enter.native="handleSearch" >
         @keyup.enter.native="handleSearch" >
         <a-row :gutter="15">
         <a-row :gutter="15">
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="审核时间" prop="time">
             <a-form-model-item label="审核时间" prop="time">
               <rangeDate ref="rangeDate" @change="dateChange" />
               <rangeDate ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
+            <a-form-item label="出库时间">
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
+            </a-form-item>
+          </a-col>
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="散件退货单号">
             <a-form-model-item label="散件退货单号">
               <a-input id="bulkInList-sparePartsReturnNo" v-model.trim="queryParam.sparePartsReturnNo" allowClear placeholder="请输入单号"/>
               <a-input id="bulkInList-sparePartsReturnNo" v-model.trim="queryParam.sparePartsReturnNo" allowClear placeholder="请输入单号"/>
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="供应商">
             <a-form-model-item label="供应商">
               <supplier
               <supplier
                 id="bulkInList-supplierSn"
                 id="bulkInList-supplierSn"
@@ -33,22 +38,22 @@
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
           <template v-if="advanced">
           <template v-if="advanced">
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品编码">
               <a-form-model-item label="产品编码">
                 <a-input id="bulkInList-code" v-model.trim="queryParam.productEntity.code" allowClear placeholder="请输入产品编码"/>
                 <a-input id="bulkInList-code" v-model.trim="queryParam.productEntity.code" allowClear placeholder="请输入产品编码"/>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品名称">
               <a-form-model-item label="产品名称">
                 <a-input id="bulkInList-name" v-model.trim="queryParam.productEntity.name" allowClear placeholder="请输入产品名称"/>
                 <a-input id="bulkInList-name" v-model.trim="queryParam.productEntity.name" allowClear placeholder="请输入产品名称"/>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-item label="产品品牌">
               <a-form-item label="产品品牌">
                 <ProductBrand id="bulkInList-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
                 <ProductBrand id="bulkInList-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
               </a-form-item>
               </a-form-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品分类">
               <a-form-model-item label="产品分类">
                 <ProductType id="bulkInList-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="queryParam.productType"></ProductType>
                 <ProductType id="bulkInList-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="queryParam.productType"></ProductType>
               </a-form-model-item>
               </a-form-model-item>
@@ -114,6 +119,7 @@ export default {
       wrapperCol: { span: 16 },
       wrapperCol: { span: 16 },
       advanced: false, // 高级搜索 展开/关闭
       advanced: false, // 高级搜索 展开/关闭
       tableHeight: 0,
       tableHeight: 0,
+      outWareTime: [],
       queryParam: { //  查询条件
       queryParam: { //  查询条件
         time: [],
         time: [],
         beginDate: '',
         beginDate: '',
@@ -192,6 +198,10 @@ export default {
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.endDate = date[1] || ''
       this.queryParam.endDate = date[1] || ''
     },
     },
+    outWareDateChange (date) {
+      this.queryParam.outWarehouseBeginDate = date[0]
+      this.queryParam.outWarehouseEndDate = date[1]
+    },
     //  查询
     //  查询
     handleSearch () {
     handleSearch () {
       this.$refs.ruleForm.validate(valid => {
       this.$refs.ruleForm.validate(valid => {
@@ -209,6 +219,11 @@ export default {
       this.queryParam.time = []
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
+      this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
+      this.queryParam.outWarehouseBeginDate = ''
+      this.queryParam.outWarehouseEndDate = ''
+
       this.queryParam.sparePartsReturnNo = ''
       this.queryParam.sparePartsReturnNo = ''
       this.queryParam.salesTargetName = ''
       this.queryParam.salesTargetName = ''
       this.queryParam.sparePartsPutTypeSn = undefined
       this.queryParam.sparePartsPutTypeSn = undefined

+ 18 - 3
src/views/reportData/bulkReturnReport/list.vue

@@ -13,17 +13,22 @@
         :wrapperCol="wrapperCol"
         :wrapperCol="wrapperCol"
         @keyup.enter.native="handleSearch" >
         @keyup.enter.native="handleSearch" >
         <a-row :gutter="15">
         <a-row :gutter="15">
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="审核时间" prop="time">
             <a-form-model-item label="审核时间" prop="time">
               <rangeDate ref="rangeDate" @change="dateChange" />
               <rangeDate ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
+            <a-form-item label="出库时间">
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
+            </a-form-item>
+          </a-col>
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="散件退货单号">
             <a-form-model-item label="散件退货单号">
               <a-input id="bulkReturn-sparePartsReturnNo" v-model.trim="queryParam.sparePartsReturnNo" allowClear placeholder="请输入单号"/>
               <a-input id="bulkReturn-sparePartsReturnNo" v-model.trim="queryParam.sparePartsReturnNo" allowClear placeholder="请输入单号"/>
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="供应商">
             <a-form-model-item label="供应商">
               <supplier
               <supplier
                 id="bulkReturn-supplierSn"
                 id="bulkReturn-supplierSn"
@@ -87,6 +92,7 @@ export default {
       wrapperCol: { span: 16 },
       wrapperCol: { span: 16 },
       advanced: false, // 高级搜索 展开/关闭
       advanced: false, // 高级搜索 展开/关闭
       tableHeight: 0,
       tableHeight: 0,
+      outWareTime: [],
       queryParam: { //  查询条件
       queryParam: { //  查询条件
         time: [],
         time: [],
         beginDate: '',
         beginDate: '',
@@ -150,6 +156,10 @@ export default {
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.endDate = date[1] || ''
       this.queryParam.endDate = date[1] || ''
     },
     },
+    outWareDateChange (date) {
+      this.queryParam.outWarehouseBeginDate = date[0]
+      this.queryParam.outWarehouseEndDate = date[1]
+    },
     //  查询
     //  查询
     handleSearch () {
     handleSearch () {
       this.$refs.ruleForm.validate(valid => {
       this.$refs.ruleForm.validate(valid => {
@@ -167,6 +177,11 @@ export default {
       this.queryParam.time = []
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
+      this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
+      this.queryParam.outWarehouseBeginDate = ''
+      this.queryParam.outWarehouseEndDate = ''
+
       this.queryParam.supplierSn = undefined
       this.queryParam.supplierSn = undefined
       this.queryParam.sparePartsReturnNo = ''
       this.queryParam.sparePartsReturnNo = ''
       this.$refs.ruleForm.resetFields()
       this.$refs.ruleForm.resetFields()

+ 25 - 11
src/views/reportData/salesDetailReport/list.vue

@@ -14,17 +14,22 @@
         :wrapperCol="wrapperCol"
         :wrapperCol="wrapperCol"
         @keyup.enter.native="handleSearch" >
         @keyup.enter.native="handleSearch" >
         <a-row :gutter="15">
         <a-row :gutter="15">
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="审核时间" prop="time">
             <a-form-model-item label="审核时间" prop="time">
               <rangeDate ref="rangeDate" @change="dateChange" />
               <rangeDate ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
+            <a-form-item label="出库时间">
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
+            </a-form-item>
+          </a-col>
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="客户名称">
             <a-form-model-item label="客户名称">
               <a-input id="salesDetailReportList-salesTargetName" v-model.trim="queryParam.salesTargetName" allowClear placeholder="请输入客户名称"/>
               <a-input id="salesDetailReportList-salesTargetName" v-model.trim="queryParam.salesTargetName" allowClear placeholder="请输入客户名称"/>
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="客户类型">
             <a-form-model-item label="客户类型">
               <a-select id="salesDetailReportList-customerType" v-model="queryParam.salesTargetType" allowClear placeholder="请选择客户类型">
               <a-select id="salesDetailReportList-customerType" v-model="queryParam.salesTargetType" allowClear placeholder="请选择客户类型">
                 <a-select-option v-for="item in custTypeList" :value="item.customerTypeSn" :key="item.customerTypeSn">{{ item.name }}</a-select-option>
                 <a-select-option v-for="item in custTypeList" :value="item.customerTypeSn" :key="item.customerTypeSn">{{ item.name }}</a-select-option>
@@ -32,7 +37,7 @@
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
           <template v-if="advanced">
           <template v-if="advanced">
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="收款方式">
               <a-form-model-item label="收款方式">
                 <v-select
                 <v-select
                   code="SETTLE_STYLE"
                   code="SETTLE_STYLE"
@@ -43,27 +48,27 @@
                 ></v-select>
                 ></v-select>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-item label="产品品牌">
               <a-form-item label="产品品牌">
                 <ProductBrand id="salesDetailReportList-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
                 <ProductBrand id="salesDetailReportList-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
               </a-form-item>
               </a-form-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品分类">
               <a-form-model-item label="产品分类">
                 <ProductType id="salesDetailReportList-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="productType"></ProductType>
                 <ProductType id="salesDetailReportList-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="productType"></ProductType>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品编码">
               <a-form-model-item label="产品编码">
                 <a-input id="salesDetailReportList-code" v-model.trim="queryParam.productEntity.code" allowClear placeholder="请输入产品编码"/>
                 <a-input id="salesDetailReportList-code" v-model.trim="queryParam.productEntity.code" allowClear placeholder="请输入产品编码"/>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品名称">
               <a-form-model-item label="产品名称">
                 <a-input id="salesDetailReportList-name" v-model.trim="queryParam.productEntity.name" allowClear placeholder="请输入产品名称"/>
                 <a-input id="salesDetailReportList-name" v-model.trim="queryParam.productEntity.name" allowClear placeholder="请输入产品名称"/>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="仓库仓位">
               <a-form-model-item label="仓库仓位">
                 <a-cascader
                 <a-cascader
                   v-model="queryParam.warehouseCascade"
                   v-model="queryParam.warehouseCascade"
@@ -77,12 +82,12 @@
                   style="width: 100%;" />
                   style="width: 100%;" />
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="单号">
               <a-form-model-item label="单号">
                 <a-input id="salesDetailReportList-salesBillNo" v-model.trim="queryParam.salesBillNo" allowClear placeholder="请输入单号"/>
                 <a-input id="salesDetailReportList-salesBillNo" v-model.trim="queryParam.salesBillNo" allowClear placeholder="请输入单号"/>
               </a-form-model-item>
               </a-form-model-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="业务员">
               <a-form-model-item label="业务员">
                 <a-input id="salesDetailReportList-salesManName" v-model.trim="queryParam.salesManName" allowClear placeholder="请输入业务员"/>
                 <a-input id="salesDetailReportList-salesManName" v-model.trim="queryParam.salesManName" allowClear placeholder="请输入业务员"/>
               </a-form-model-item>
               </a-form-model-item>
@@ -183,6 +188,7 @@ export default {
       wrapperCol: { span: 16 },
       wrapperCol: { span: 16 },
       advanced: false, // 高级搜索 展开/关闭
       advanced: false, // 高级搜索 展开/关闭
       tableHeight: 0,
       tableHeight: 0,
+      outWareTime: [],
       queryParam: { //  查询条件
       queryParam: { //  查询条件
         time: [],
         time: [],
         beginDate: '',
         beginDate: '',
@@ -286,6 +292,10 @@ export default {
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.endDate = date[1] || ''
       this.queryParam.endDate = date[1] || ''
     },
     },
+    outWareDateChange (date) {
+      this.queryParam.outWarehouseBeginDate = date[0]
+      this.queryParam.outWarehouseEndDate = date[1]
+    },
     //  查询
     //  查询
     handleSearch () {
     handleSearch () {
       this.$refs.ruleForm.validate(valid => {
       this.$refs.ruleForm.validate(valid => {
@@ -303,6 +313,10 @@ export default {
       this.queryParam.time = []
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
+      this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
+      this.queryParam.outWarehouseBeginDate = ''
+      this.queryParam.outWarehouseEndDate = ''
       this.queryParam.salesTargetName = ''
       this.queryParam.salesTargetName = ''
       this.queryParam.salesTargetType = undefined
       this.queryParam.salesTargetType = undefined
       this.queryParam.provinceSn = undefined
       this.queryParam.provinceSn = undefined

+ 2 - 1
src/views/reportData/salesReport/list.vue

@@ -21,7 +21,7 @@
           </a-col>
           </a-col>
           <a-col :md="4" :sm="24">
           <a-col :md="4" :sm="24">
             <a-form-item label="出库时间">
             <a-form-item label="出库时间">
-              <rangeDate ref="outWareRangeDate" :value="outWarehouseTime" @change="outWareDateChange" />
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
             </a-form-item>
             </a-form-item>
           </a-col>
           </a-col>
           <a-col :md="4" :sm="24">
           <a-col :md="4" :sm="24">
@@ -265,6 +265,7 @@ export default {
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
       this.$refs.outWareRangeDate.resetDate('')
       this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
       this.queryParam.outWarehouseBeginDate = ''
       this.queryParam.outWarehouseBeginDate = ''
       this.queryParam.outWarehouseEndDate = ''
       this.queryParam.outWarehouseEndDate = ''
 
 

+ 17 - 2
src/views/reportData/storeTransferOutReport/detailList.vue

@@ -13,11 +13,16 @@
         :wrapperCol="wrapperCol"
         :wrapperCol="wrapperCol"
         @keyup.enter.native="handleSearch" >
         @keyup.enter.native="handleSearch" >
         <a-row :gutter="15">
         <a-row :gutter="15">
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="审核时间" prop="time">
             <a-form-model-item label="审核时间" prop="time">
               <rangeDate ref="rangeDate" @change="dateChange" />
               <rangeDate ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
+          <a-col :md="4" :sm="24">
+            <a-form-item label="出库时间">
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
+            </a-form-item>
+          </a-col>
           <a-col :md="4" :sm="24">
           <a-col :md="4" :sm="24">
             <a-form-model-item label="店内调出单号">
             <a-form-model-item label="店内调出单号">
               <a-input id="storeTransOutReport-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
               <a-input id="storeTransOutReport-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
@@ -51,7 +56,7 @@
                 <ProductBrand id="storeTransOutDetailReport-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
                 <ProductBrand id="storeTransOutDetailReport-productBrandSn" placeholder="请选择产品品牌" v-model="queryParam.productEntity.productBrandSn"></ProductBrand>
               </a-form-item>
               </a-form-item>
             </a-col>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-model-item label="产品分类">
               <a-form-model-item label="产品分类">
                 <ProductType id="storeTransOutDetailReport-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="queryParam.productType"></ProductType>
                 <ProductType id="storeTransOutDetailReport-productType" placeholder="请选择产品分类" :isDealer="true" @change="changeProductType" v-model="queryParam.productType"></ProductType>
               </a-form-model-item>
               </a-form-model-item>
@@ -118,6 +123,7 @@ export default {
       wrapperCol: { span: 16 },
       wrapperCol: { span: 16 },
       advanced: false, // 高级搜索 展开/关闭
       advanced: false, // 高级搜索 展开/关闭
       tableHeight: 0,
       tableHeight: 0,
+      outWareTime: [],
       queryParam: { //  查询条件
       queryParam: { //  查询条件
         time: [],
         time: [],
         beginDate: '',
         beginDate: '',
@@ -195,6 +201,10 @@ export default {
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.endDate = date[1] || ''
       this.queryParam.endDate = date[1] || ''
     },
     },
+    outWareDateChange (date) {
+      this.queryParam.outWarehouseBeginDate = date[0]
+      this.queryParam.outWarehouseEndDate = date[1]
+    },
     //  查询
     //  查询
     handleSearch () {
     handleSearch () {
       this.$refs.ruleForm.validate(valid => {
       this.$refs.ruleForm.validate(valid => {
@@ -212,6 +222,11 @@ export default {
       this.queryParam.time = []
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
+      this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
+      this.queryParam.outWarehouseBeginDate = ''
+      this.queryParam.outWarehouseEndDate = ''
+
       this.queryParam.storeCallOutNo = ''
       this.queryParam.storeCallOutNo = ''
       this.queryParam.callOutType = undefined
       this.queryParam.callOutType = undefined
       this.queryParam.putPersonName = ''
       this.queryParam.putPersonName = ''

+ 16 - 1
src/views/reportData/storeTransferOutReport/list.vue

@@ -13,11 +13,16 @@
         :wrapperCol="wrapperCol"
         :wrapperCol="wrapperCol"
         @keyup.enter.native="handleSearch" >
         @keyup.enter.native="handleSearch" >
         <a-row :gutter="15">
         <a-row :gutter="15">
-          <a-col :md="6" :sm="24">
+          <a-col :md="4" :sm="24">
             <a-form-model-item label="审核时间" prop="time">
             <a-form-model-item label="审核时间" prop="time">
               <rangeDate ref="rangeDate" @change="dateChange" />
               <rangeDate ref="rangeDate" @change="dateChange" />
             </a-form-model-item>
             </a-form-model-item>
           </a-col>
           </a-col>
+          <a-col :md="4" :sm="24">
+            <a-form-item label="出库时间">
+              <rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
+            </a-form-item>
+          </a-col>
           <a-col :md="4" :sm="24">
           <a-col :md="4" :sm="24">
             <a-form-model-item label="店内调出单号">
             <a-form-model-item label="店内调出单号">
               <a-input id="storeTransOutReport-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
               <a-input id="storeTransOutReport-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
@@ -90,6 +95,7 @@ export default {
       wrapperCol: { span: 16 },
       wrapperCol: { span: 16 },
       advanced: false, // 高级搜索 展开/关闭
       advanced: false, // 高级搜索 展开/关闭
       tableHeight: 0,
       tableHeight: 0,
+      outWareTime: [],
       queryParam: { //  查询条件
       queryParam: { //  查询条件
         time: [],
         time: [],
         beginDate: '',
         beginDate: '',
@@ -156,6 +162,10 @@ export default {
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.beginDate = date[0] || ''
       this.queryParam.endDate = date[1] || ''
       this.queryParam.endDate = date[1] || ''
     },
     },
+    outWareDateChange (date) {
+      this.queryParam.outWarehouseBeginDate = date[0]
+      this.queryParam.outWarehouseEndDate = date[1]
+    },
     //  查询
     //  查询
     handleSearch () {
     handleSearch () {
       this.$refs.ruleForm.validate(valid => {
       this.$refs.ruleForm.validate(valid => {
@@ -173,6 +183,11 @@ export default {
       this.queryParam.time = []
       this.queryParam.time = []
       this.queryParam.beginDate = ''
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
       this.queryParam.endDate = ''
+      this.$refs.outWareRangeDate.resetDate('')
+      this.outWareTime = []
+      this.queryParam.outWarehouseBeginDate = ''
+      this.queryParam.outWarehouseEndDate = ''
+
       this.queryParam.putPersonName = ''
       this.queryParam.putPersonName = ''
       this.queryParam.storeCallOutNo = ''
       this.queryParam.storeCallOutNo = ''
       this.queryParam.callOutType = undefined
       this.queryParam.callOutType = undefined