``` refactor(db): 移除SQL语句中的public schema前缀

This commit is contained in:
2025-12-30 00:02:59 +08:00
parent a080b4294c
commit a1e07a204b
234 changed files with 3200 additions and 2831 deletions

View File

@@ -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() {

View File

@@ -1378,7 +1378,6 @@ function handleReject() {
}
});
}
const pageLoading = ref(false);
function handelApply() {
pageLoading.value = true;
purchaseInventoryApproved(route.query.originalSupplyBusNo)

View File

@@ -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() {
// 清空查询条件

View File

@@ -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>