|
|
|
@ -15,12 +15,14 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="预约时间:" prop="reservationDate" label-width="100px"> |
|
|
|
|
<el-form-item label="预约时间:" label-width="100px"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.reservationDate" |
|
|
|
|
type="date" |
|
|
|
|
clearable |
|
|
|
|
placeholder="选择日期时间" |
|
|
|
|
format="YYYY/MM/DD" |
|
|
|
|
value-format="YYYY-MM-DD" |
|
|
|
|
> |
|
|
|
|
</el-date-picker> |
|
|
|
|
</el-form-item> |
|
|
|
@ -124,7 +126,7 @@
|
|
|
|
|
|
|
|
|
|
<el-tabs type="border-card"> |
|
|
|
|
<el-tab-pane label="订单"> |
|
|
|
|
<el-button type="primary" link @click="handleAddOrder">新 增</el-button> |
|
|
|
|
<el-button class='el-btn-xz' type="primary" link @click="handleAddOrder">新 增</el-button> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnList" |
|
|
|
|
:tableData="orderData" |
|
|
|
@ -199,7 +201,7 @@
|
|
|
|
|
</el-tab-pane> |
|
|
|
|
|
|
|
|
|
<el-tab-pane label="库存品"> |
|
|
|
|
<el-button link @click="handleAddInventory">新 增</el-button> |
|
|
|
|
<el-button class='el-btn-xz' link @click="handleAddInventory">新 增</el-button> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="stockcolumnList" |
|
|
|
|
:tableData="inventoryData" |
|
|
|
@ -240,84 +242,88 @@
|
|
|
|
|
<el-button icon="el-icon-circle-close" @click="$router.go(-1)">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-dialog v-model="orderShow" title="在库订单信息" width="100%" :model="addvalue"> |
|
|
|
|
<!-- :before-close="handleClose"--> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="订单自编号:"> |
|
|
|
|
<el-input v-model="query.orderCode" placeholder="请输入订单自编号"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="商场名称:"> |
|
|
|
|
<el-input v-model="query.mallName" placeholder="请输入商场名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="货物名称:"> |
|
|
|
|
<el-input v-model="query.descriptionGoods" placeholder="请输入货物名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="品牌:"> |
|
|
|
|
<el-input v-model="query.brand" placeholder="请输入品牌"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="顾客姓名:"> |
|
|
|
|
<el-input v-model="query.customerName" placeholder="请输入顾客姓名"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="顾客电话:"> |
|
|
|
|
<el-input v-model="query.customerTelephone" placeholder="请输入顾客电话"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchStockArticle" |
|
|
|
|
>搜 索 |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-delete" @click="stockArticleSearchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="stockArtcolumnList" |
|
|
|
|
:tableData="stockArticleInfo" |
|
|
|
|
:loading="loading" |
|
|
|
|
@inputTxt="inputscStockArtic" |
|
|
|
|
@timeCheck="timescStockArtic" |
|
|
|
|
@btnCheck="btnscStockArtic" |
|
|
|
|
@selectCheck="selectscStockArtic" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除 |
|
|
|
|
</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeOrderChange" |
|
|
|
|
@current-change="currentOrderChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[30, 50, 80, 120]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder" |
|
|
|
|
>提交(订单) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="orderShow = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
<template v-if="orderShow"> |
|
|
|
|
<el-dialog v-model="orderShow" title="在库订单信息" width="100%" :model="addvalue"> |
|
|
|
|
<!-- :before-close="handleClose"--> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="订单自编号:"> |
|
|
|
|
<el-input v-model="query.orderCode" placeholder="请输入订单自编号"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="商场名称:"> |
|
|
|
|
<el-input v-model="query.mallName" placeholder="请输入商场名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="货物名称:"> |
|
|
|
|
<el-input v-model="query.descriptionGoods" placeholder="请输入货物名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="品牌:"> |
|
|
|
|
<el-input v-model="query.brand" placeholder="请输入品牌"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="顾客姓名:"> |
|
|
|
|
<el-input v-model="query.customerName" placeholder="请输入顾客姓名"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="顾客电话:"> |
|
|
|
|
<el-input v-model="query.customerTelephone" placeholder="请输入顾客电话"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchStockArticle" |
|
|
|
|
>搜 索 |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-delete" @click="stockArticleSearchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="stockArtcolumnList" |
|
|
|
|
:tableData="stockArticleInfo" |
|
|
|
|
:checkselect="orderSelectList" |
|
|
|
|
:loading="loading" |
|
|
|
|
@inputTxt="inputscStockArtic" |
|
|
|
|
@timeCheck="timescStockArtic" |
|
|
|
|
@btnCheck="btnscStockArtic" |
|
|
|
|
@selectCheck="selectscStockArtic" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<!-- orderSelectList --> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除 |
|
|
|
|
</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeOrderChange" |
|
|
|
|
@current-change="currentOrderChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[30, 50, 80, 120]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder" |
|
|
|
|
>提交(订单) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="orderShow = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
@ -376,128 +382,134 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog v-model="stockListShow" title="库存品信息" width="100%"> |
|
|
|
|
<!-- :before-close="handleClose"--> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="商场名称:"> |
|
|
|
|
<el-input v-model="query.marketName" placeholder="请输入商场名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="物料名称:"> |
|
|
|
|
<el-input v-model="query.descriptionGoods" placeholder="请输入物料名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="商场编码:"> |
|
|
|
|
<el-input v-model="query.marketCode" placeholder="请输入商场编码"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="订单自编号:"> |
|
|
|
|
<el-input v-model="query.orderCode" placeholder="请输入订单自编号"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="品牌:"> |
|
|
|
|
<el-input v-model="query.brand" placeholder="请输入品牌"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchStockList" |
|
|
|
|
>搜 索 |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-delete" @click="stockListSearchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="inventoryInfocolumnList" |
|
|
|
|
:tableData="inventoryInfo" |
|
|
|
|
:loading="loading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionInventoryChange" |
|
|
|
|
ref=multipleTable |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除 |
|
|
|
|
</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitInventory" |
|
|
|
|
>提交(库存品) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="stockListShow = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
<template v-if="stockListShow"> |
|
|
|
|
|
|
|
|
|
<el-dialog v-model="isaddvalue" title="包件信息" width="100%" :model="addvalue"> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<!-- :isselectfun="checkPackage"--> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnParcels" |
|
|
|
|
:tableData="packageData" |
|
|
|
|
:checkselect="packageDataSec" |
|
|
|
|
:loading="loading" |
|
|
|
|
@selection="selectionPackageChange" |
|
|
|
|
@select='tableAllSelection' |
|
|
|
|
@cell-mouse-enter='hove' |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<!-- <el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除</el-text |
|
|
|
|
> --> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
<!-- <el-table |
|
|
|
|
ref="packageList" |
|
|
|
|
v-loading="loading" |
|
|
|
|
@selection-change="selectionPackageChange" |
|
|
|
|
:data="packageData" |
|
|
|
|
:height="height" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border" |
|
|
|
|
> |
|
|
|
|
<el-table-column |
|
|
|
|
type="selection" |
|
|
|
|
v-if="option.selection" |
|
|
|
|
:selectable="checkPackage" |
|
|
|
|
align="center" |
|
|
|
|
width="55" |
|
|
|
|
></el-table-column> |
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<template v-for="(item, index) in option.columnParcels"> |
|
|
|
|
<el-dialog v-model="stockListShow" title="库存品信息" width="100%"> |
|
|
|
|
<!-- :before-close="handleClose"--> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="商场名称:"> |
|
|
|
|
<el-input v-model="query.marketName" placeholder="请输入商场名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="物料名称:"> |
|
|
|
|
<el-input v-model="query.descriptionGoods" placeholder="请输入物料名称"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="商场编码:"> |
|
|
|
|
<el-input v-model="query.marketCode" placeholder="请输入商场编码"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="订单自编号:"> |
|
|
|
|
<el-input v-model="query.orderCode" placeholder="请输入订单自编号"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="品牌:"> |
|
|
|
|
<el-input v-model="query.brand" placeholder="请输入品牌"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchStockList" |
|
|
|
|
>搜 索 |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-delete" @click="stockListSearchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="inventoryInfocolumnList" |
|
|
|
|
:tableData="inventoryInfo" |
|
|
|
|
:checkselect="inventorySelectList" |
|
|
|
|
:loading="loading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionInventoryChange" |
|
|
|
|
ref=multipleTable |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除 |
|
|
|
|
</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitInventory" |
|
|
|
|
>提交(库存品) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="stockListShow = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<template v-if="isaddvalue"> |
|
|
|
|
<el-dialog v-model="isaddvalue" title="包件信息" width="100%" :model="addvalue"> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<!-- :isselectfun="checkPackage"--> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnParcels" |
|
|
|
|
:tableData="packageData" |
|
|
|
|
:checkselect="packageDataSec" |
|
|
|
|
:loading="loading" |
|
|
|
|
@selection="selectionPackageChange" |
|
|
|
|
@select='tableAllSelection' |
|
|
|
|
@cell-mouse-enter='hove' |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<!-- <el-text |
|
|
|
|
type="primary" |
|
|
|
|
link |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="removeStockList(slotProps.scope.row)" |
|
|
|
|
>移除</el-text |
|
|
|
|
> --> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
<!-- <el-table |
|
|
|
|
ref="packageList" |
|
|
|
|
v-loading="loading" |
|
|
|
|
@selection-change="selectionPackageChange" |
|
|
|
|
:data="packageData" |
|
|
|
|
:height="height" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border" |
|
|
|
|
> |
|
|
|
|
<el-table-column |
|
|
|
|
v-if="item.hide !== true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:width="item.width" |
|
|
|
|
:key="index" |
|
|
|
|
> |
|
|
|
|
type="selection" |
|
|
|
|
v-if="option.selection" |
|
|
|
|
:selectable="checkPackage" |
|
|
|
|
align="center" |
|
|
|
|
width="55" |
|
|
|
|
></el-table-column> |
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
</template> |
|
|
|
|
<el-table-column prop="menu" label="操作" :width="220" align="center"> |
|
|
|
|
<template #="{ row }"> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> --> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitPackage" |
|
|
|
|
>提交(包件) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="isaddvalue = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
<template v-for="(item, index) in option.columnParcels"> |
|
|
|
|
<el-table-column |
|
|
|
|
v-if="item.hide !== true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:width="item.width" |
|
|
|
|
:key="index" |
|
|
|
|
> |
|
|
|
|
</el-table-column> |
|
|
|
|
</template> |
|
|
|
|
<el-table-column prop="menu" label="操作" :width="220" align="center"> |
|
|
|
|
<template #="{ row }"> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> --> |
|
|
|
|
<el-form-item style="margin-left: 45%; margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitPackage" |
|
|
|
|
>提交(包件) |
|
|
|
|
</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="isaddvalue = false">返 回</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-dialog> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
|
v-model="dialogVisible" |
|
|
|
@ -1779,7 +1791,9 @@
|
|
|
|
|
packageData: [], |
|
|
|
|
packageList: [], |
|
|
|
|
inventoryList: [], |
|
|
|
|
inventorySelectList:[], |
|
|
|
|
orderList: [], |
|
|
|
|
orderSelectList: [], |
|
|
|
|
inventoryTable: [], |
|
|
|
|
inventoryShow: false, |
|
|
|
|
reservationRules: { |
|
|
|
@ -1887,11 +1901,12 @@
|
|
|
|
|
}); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
tableAllSelection(){}, |
|
|
|
|
//查询出所有的市配订单 |
|
|
|
|
handleAddOrder() { |
|
|
|
|
async handleAddOrder() { |
|
|
|
|
this.loading = true; |
|
|
|
|
//这里只需要对订单进行正常的搜索即可 |
|
|
|
|
this.onLoadOrder(this.page); |
|
|
|
|
await this.onLoadOrder(this.page); |
|
|
|
|
this.loading = false; |
|
|
|
|
this.orderShow = true; |
|
|
|
|
}, |
|
|
|
@ -1920,28 +1935,22 @@
|
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
|
|
|
|
|
this.inventoryInfo = inventoryList.records |
|
|
|
|
|
|
|
|
|
//存在库存品,需要将库存品进行回显勾选 |
|
|
|
|
if (this.inventoryData) { |
|
|
|
|
this.inventoryInfo.forEach((item, index) => { |
|
|
|
|
this.inventoryData.forEach(inventory => { |
|
|
|
|
if (item.id === inventory.id) { |
|
|
|
|
item = inventory; |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.$refs.inventoryTable.toggleRowSelection(this.inventoryInfo[index], true); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
console.log('------------->', this.inventoryData); |
|
|
|
|
if (this.inventoryData.length !== 0) { |
|
|
|
|
// 获取ids的映射数组 |
|
|
|
|
const ids = this.inventoryData.map(val => val.id) |
|
|
|
|
// 赋值给回显勾选的数组 |
|
|
|
|
this.inventorySelectList = this.inventoryInfo.filter(val => { |
|
|
|
|
// 循环获取符合条件的库存品组成数组 |
|
|
|
|
return ids.includes(val.id) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.loading = false; |
|
|
|
|
this.selectionClear(); |
|
|
|
|
this.stockListShow = true; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
this.query = {}; |
|
|
|
|
this.inventoryList = []; |
|
|
|
|
this.stockListShow = true; |
|
|
|
|
}, |
|
|
|
|
handleCheckedCitiesChange(value) { |
|
|
|
|
if (value) { |
|
|
|
@ -2095,7 +2104,7 @@
|
|
|
|
|
// this.selectionPackageChange(row) |
|
|
|
|
// console.log( this.selectionPackageChange(),'12312312312321函数'); |
|
|
|
|
// } |
|
|
|
|
viewStockArticlePackage(row) { |
|
|
|
|
async viewStockArticlePackage(row) { |
|
|
|
|
this.loading = true; |
|
|
|
|
this.packageList = row.packageList; |
|
|
|
|
this.obj = row; |
|
|
|
@ -2103,92 +2112,30 @@
|
|
|
|
|
this. toggleAllSelection |
|
|
|
|
console.log('row>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>', row); |
|
|
|
|
if (this.reservationId) { |
|
|
|
|
getReservationPackageListByOrderId(this.reservationId,row.id,page.currentPage,page.pageSize).then(res=>{ |
|
|
|
|
const res = await getReservationPackageListByOrderId(this.reservationId,row.id,page.currentPage,page.pageSize) |
|
|
|
|
console.log("->>>>>>>>>>>>>>>>>>查看包件",res); |
|
|
|
|
this.packageData = res.data.data.data.packageList |
|
|
|
|
console.log(this.packageData,'需要的信息'); |
|
|
|
|
console.log(res.data.data.data.reservationPackageList); |
|
|
|
|
let idList=[] |
|
|
|
|
res.data.data.data.reservationPackageList.forEach(v=>{ |
|
|
|
|
idList.push(v.id) |
|
|
|
|
}) |
|
|
|
|
console.log(idList); |
|
|
|
|
}) |
|
|
|
|
// 自动选中 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// //这里就是编辑的数据回显问题 |
|
|
|
|
// let packageInfo = row.parcelListVOS; |
|
|
|
|
// // this.packageData = row.parcelListVOS; |
|
|
|
|
// let packageListData = this.packageData; |
|
|
|
|
// if (row.packageList.length > 0) { |
|
|
|
|
// let packageListInfo = row.packageList; |
|
|
|
|
// packageInfo.forEach((item, index) => { |
|
|
|
|
// packageListInfo.forEach(p => { |
|
|
|
|
// if (item.id === p.id) { |
|
|
|
|
// this.$nextTick(() => { |
|
|
|
|
// this.$refs.packageList.toggleRowSelection(this.packageData[index], true); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
// } else { |
|
|
|
|
// //新增订单,默认全选 |
|
|
|
|
// packageInfo.forEach((item, index) => { |
|
|
|
|
// this.$nextTick(() => { |
|
|
|
|
// this.$refs.packageList.toggleRowSelection(this.packageData[index], true); |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// this.packageData = row.parcelListVOS; |
|
|
|
|
// |
|
|
|
|
// // 当row内packageList为空时, 默认全选 |
|
|
|
|
// if (row.packageList.length === 0) { |
|
|
|
|
// this.packageDataSec = row.parcelListVOS; |
|
|
|
|
// } else { |
|
|
|
|
// this.packageDataSec = row.parcelListVOS.filter(item => { |
|
|
|
|
// return row.packageList.some(value => value.id === item.id); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
if (res.data.data){ |
|
|
|
|
this.packageData = res.data.data.data.packageList |
|
|
|
|
let idList=res.data.data.data.reservationPackageList.map(v=>{ |
|
|
|
|
return v.id |
|
|
|
|
}) |
|
|
|
|
this.packageDataSec = this.packageData.filter(val => idList.includes(val.id)) |
|
|
|
|
} |
|
|
|
|
this.isaddvalue = true; |
|
|
|
|
this.loading = false; |
|
|
|
|
} else { |
|
|
|
|
getPackageListByStockArticleId(page.currentPage,page.pageSize,row.id).then(res=>{ |
|
|
|
|
console.log("res---------------->",res); |
|
|
|
|
console.log(res.data.data.records); |
|
|
|
|
this.packageData=res.data.data.records |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
// this.packageData = row.parcelListVOS; |
|
|
|
|
// this.packageDataSec = row.parcelListVOS; |
|
|
|
|
// //这里回显展示的效果应该是展示被其他预约单勾选的订单处于禁用勾选,冻结订单处于禁用无法勾选,其他默认为全选 |
|
|
|
|
// let data = row.parcelListVOS; |
|
|
|
|
// data.forEach((item, index) => { |
|
|
|
|
// if ( |
|
|
|
|
// item.orderPackageReservationStatusName === '已预约' || |
|
|
|
|
// item.orderPackageReservationStatus === '20' |
|
|
|
|
// ) { |
|
|
|
|
// // //这里就是表示包件此时状态处于已预约,表示该订单下的这个包件信息被其他的预约信息使用,此时应该处于勾选禁用状态 |
|
|
|
|
// this.$nextTick(() => { |
|
|
|
|
// this.$refs.packageList.toggleRowSelection(this.packageData[index], true); |
|
|
|
|
// }); |
|
|
|
|
// // console.log('::', item); |
|
|
|
|
// // this.checkPackage(item, index); |
|
|
|
|
// } |
|
|
|
|
// // else if ( |
|
|
|
|
// // item.orderPackageFreezeStatusName !== '已冻结' || |
|
|
|
|
// // item.orderPackageFreezeStatus !== '20' |
|
|
|
|
// // ) { |
|
|
|
|
// // this.$nextTick(() => { |
|
|
|
|
// // this.$refs.packageList.toggleRowSelection(this.packageData[index], true); |
|
|
|
|
// // }); |
|
|
|
|
// // } |
|
|
|
|
// }); |
|
|
|
|
} |
|
|
|
|
// console.log(res.data.data.records); |
|
|
|
|
if(res.data.data){ |
|
|
|
|
this.packageData=res.data.data.records |
|
|
|
|
// 新增默认勾选全部 |
|
|
|
|
this.packageDataSec = this.packageData |
|
|
|
|
} |
|
|
|
|
this.isaddvalue = true; |
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 选择包件信息 |
|
|
|
@ -2297,6 +2244,7 @@
|
|
|
|
|
this.isaddvalue = false; |
|
|
|
|
}, |
|
|
|
|
onSubmit() { |
|
|
|
|
// 提交按钮 |
|
|
|
|
//新增预约单 |
|
|
|
|
let orderIds = []; |
|
|
|
|
let inventoryIds = []; |
|
|
|
@ -2385,6 +2333,10 @@
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
inputsc(){}, |
|
|
|
|
timesc(){}, |
|
|
|
|
selectsc(){}, |
|
|
|
|
btnsc(){}, |
|
|
|
|
handleClose(done) { |
|
|
|
|
this.$confirm('确认关闭?') |
|
|
|
|
.then(_ => { |
|
|
|
@ -2494,7 +2446,7 @@
|
|
|
|
|
}, |
|
|
|
|
selectionInventoryChange(list) { |
|
|
|
|
// if (this.reservationId){ |
|
|
|
|
console.log('-----------<>', list); |
|
|
|
|
console.log('list-----------<>', list); |
|
|
|
|
this.inventoryList = list; |
|
|
|
|
// }else { |
|
|
|
|
// //新增 |
|
|
|
@ -2633,6 +2585,7 @@
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.marketName = _marketName; |
|
|
|
|
console.log('this.inventoryList :>> ', this.inventoryList); |
|
|
|
|
this.inventoryData = this.inventoryList; |
|
|
|
|
|
|
|
|
|
// if (this.orderData.length) { |
|
|
|
@ -2801,7 +2754,7 @@
|
|
|
|
|
} |
|
|
|
|
this.onLoadOrder(this.page); |
|
|
|
|
}, |
|
|
|
|
onLoadOrder(page, params = {}) { |
|
|
|
|
async onLoadOrder(page, params = {}) { |
|
|
|
|
this.query.typeService = 2; |
|
|
|
|
this.query.genre = '1'; |
|
|
|
|
this.query.marketName = this.marketName |
|
|
|
@ -2814,41 +2767,37 @@
|
|
|
|
|
} |
|
|
|
|
this.query.orderIds = a.join(','); |
|
|
|
|
console.log('--------------query>', this.query); |
|
|
|
|
selectStockArticleInfoList( |
|
|
|
|
const res = await selectStockArticleInfoList( |
|
|
|
|
page.currentPage, |
|
|
|
|
page.pageSize, |
|
|
|
|
Object.assign(params, this.query) |
|
|
|
|
).then(res => { |
|
|
|
|
console.log('res123------------>', res); |
|
|
|
|
const { records, total } = res.data.data; |
|
|
|
|
this.stockArticleInfo = records.filter(value => { |
|
|
|
|
if (this.marketName === '') return value; |
|
|
|
|
if (this.marketName) { |
|
|
|
|
console.log('value.marketName :>> ', value.marketName); |
|
|
|
|
return value.mallName === this.marketName; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// const {records, total} = res.data.data; |
|
|
|
|
this.stockArticleInfo = records |
|
|
|
|
console.log('this.stockArticleInfo :>> ', this.stockArticleInfo); |
|
|
|
|
this.stockArticleInfo.forEach((item, index) => { |
|
|
|
|
//检查订单是否冻结 |
|
|
|
|
this.checkOrder(item, index); |
|
|
|
|
// if (this.orderData) { |
|
|
|
|
// this.orderData.forEach(o => { |
|
|
|
|
// if (o.id === item.id) { |
|
|
|
|
// this.$nextTick(() => { |
|
|
|
|
// this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index], true); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else { |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// } |
|
|
|
|
this.page.total = total; |
|
|
|
|
}); |
|
|
|
|
this.orderList = []; |
|
|
|
|
) |
|
|
|
|
const { records, total } = res.data.data; |
|
|
|
|
this.stockArticleInfo = records |
|
|
|
|
console.log('this.stockArticleInfo :>> ', this.stockArticleInfo); |
|
|
|
|
this.stockArticleInfo.forEach((item, index) => { |
|
|
|
|
//检查订单是否冻结 |
|
|
|
|
this.checkOrder(item, index); |
|
|
|
|
// if (this.orderData) { |
|
|
|
|
// this.orderData.forEach(o => { |
|
|
|
|
// if (o.id === item.id) { |
|
|
|
|
// this.$nextTick(() => { |
|
|
|
|
// this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index], true); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else { |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// } |
|
|
|
|
this.page.total = total; |
|
|
|
|
}); |
|
|
|
|
if(this.orderData.length !== 0){ |
|
|
|
|
const ids = this.orderData.map(val => val.id) |
|
|
|
|
this.orderSelectList = this.stockArticleInfo.filter(val => ids.includes(val.id)) |
|
|
|
|
console.log('orderSelectList :>> ', this.orderSelectList); |
|
|
|
|
} |
|
|
|
|
this.orderList = []; |
|
|
|
|
return null |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
onLoad() { |
|
|
|
@ -2860,7 +2809,7 @@
|
|
|
|
|
this.form.replaceFee = 0; |
|
|
|
|
this.form.collectionFee = 0; |
|
|
|
|
this.form.isUrgent = '1'; |
|
|
|
|
this.form.reservationDate = new Date(); |
|
|
|
|
// this.form.reservationDate = new Date(); |
|
|
|
|
if (this.orderIds) { |
|
|
|
|
getStockArticleList(this.orderIds).then(res => { |
|
|
|
|
console.log(res.data.data); |
|
|
|
@ -2930,3 +2879,13 @@
|
|
|
|
|
-moz-appearance: textfield; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
<style lang='scss' scoped> |
|
|
|
|
.el-btn-xz{ |
|
|
|
|
width: 68px; |
|
|
|
|
height: 26px; |
|
|
|
|
border: 1px solid; |
|
|
|
|
margin-bottom: 8px; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|