``` refactor(db): 移除SQL语句中的public schema前缀
This commit is contained in:
@@ -1647,13 +1647,7 @@ function formatPrintData() {
|
||||
printDate: new Date().toLocaleString("zh-CN"),
|
||||
...receiptHeaderForm,
|
||||
purchaseinventoryList: form.purchaseinventoryList,
|
||||
});
|
||||
const printElements = templateJson;
|
||||
var hiprintTemplate = new hiprint.PrintTemplate({ template: printElements }); // 定义模板
|
||||
hiprintTemplate.print2(result, {
|
||||
printer: 'EPSON LQ-80KFII',
|
||||
title: '打印标题',
|
||||
}); //开始打印
|
||||
};
|
||||
}
|
||||
|
||||
function deleteSelectedRows() {
|
||||
|
||||
@@ -1378,7 +1378,6 @@ function handleReject() {
|
||||
}
|
||||
});
|
||||
}
|
||||
const pageLoading = ref(false);
|
||||
function handelApply() {
|
||||
pageLoading.value = true;
|
||||
purchaseInventoryApproved(route.query.originalSupplyBusNo)
|
||||
|
||||
@@ -724,26 +724,6 @@ function handleExport() {
|
||||
);
|
||||
}
|
||||
|
||||
function formatQuantity(row) {
|
||||
if (row.remainder > 0) {
|
||||
return (
|
||||
row.number + ' ' + row.unitCode_dictText + row.remainder + ' ' + row.minUnitCode_dictText
|
||||
);
|
||||
} else {
|
||||
return row.number + ' ' + row.unitCode_dictText;
|
||||
}
|
||||
}
|
||||
// 导出
|
||||
function handleExport() {
|
||||
proxy.downloadGet(
|
||||
'/inventory-manage/product/excel-out',
|
||||
{
|
||||
...queryParams.value,
|
||||
},
|
||||
`库存明细记录_${proxy.formatDateStr(new Date(), 'YYYY-MM-DD')}.xlsx`
|
||||
);
|
||||
}
|
||||
|
||||
/** 清空条件按钮操作 */
|
||||
function handleClear() {
|
||||
// 清空查询条件
|
||||
|
||||
@@ -322,7 +322,7 @@ getContractLists();
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
::v-deep .el-textarea.is-disabled .el-textarea__inner {
|
||||
:deep(.el-textarea.is-disabled .el-textarea__inner) {
|
||||
resize: none !important;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user