ERP:增加 ERP 盘点单的实现 50%

This commit is contained in:
YunaiV
2024-02-08 08:36:20 +08:00
parent 3c4932bc77
commit 0319056e4b
6 changed files with 839 additions and 6 deletions

View File

@ -43,9 +43,9 @@
class="!w-240px"
/>
</el-form-item>
<el-form-item label="仓库" prop="warehouseId">
<el-form-item label="仓库" prop="fromWarehouseId">
<el-select
v-model="queryParams.warehouseId"
v-model="queryParams.fromWarehouseId"
filterable
placeholder="请选择仓库"
class="!w-240px"
@ -234,7 +234,7 @@ import { UserVO } from '@/api/system/user'
import * as UserApi from '@/api/system/user'
import { erpCountTableColumnFormatter, erpPriceTableColumnFormatter } from '@/utils'
/** ERP 其它调度单列表 */
/** ERP 库存调度单列表 */
defineOptions({ name: 'ErpStockMove' })
const message = useMessage() // 消息弹窗
@ -247,7 +247,7 @@ const queryParams = reactive({
pageNo: 1,
pageSize: 10,
no: undefined,
customerId: undefined,
fromWarehouseId: undefined,
moveTime: [],
status: undefined,
remark: undefined,
@ -324,7 +324,7 @@ const handleExport = async () => {
// 发起导出
exportLoading.value = true
const data = await StockMoveApi.exportStockMove(queryParams)
download.excel(data, '其它调度单.xls')
download.excel(data, '库存调度单.xls')
} catch {
} finally {
exportLoading.value = false