✨ ERP:增加 ERP 盘点单的实现 50%
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user