This commit is contained in:
yueli
2026-07-13 17:33:16 +08:00
parent 760f78e016
commit a2f9a3e754
2 changed files with 1 additions and 3 deletions

View File

@ -431,7 +431,6 @@ class BuyInboundService:
'qty_stock': StockBuy.stock_quantity, 'qty_stock': StockBuy.stock_quantity,
'qty_available': StockBuy.available_quantity, 'qty_available': StockBuy.available_quantity,
'unit_price': StockBuy.pre_tax_unit_price, 'unit_price': StockBuy.pre_tax_unit_price,
'post_tax_unit_price': StockBuy.post_tax_unit_price,
'total_price': StockBuy.total_price, 'total_price': StockBuy.total_price,
'tax_rate': StockBuy.tax_rate, 'tax_rate': StockBuy.tax_rate,
'currency': StockBuy.currency, 'currency': StockBuy.currency,
@ -496,7 +495,6 @@ class BuyInboundService:
'qty_available': StockBuy.available_quantity, 'qty_available': StockBuy.available_quantity,
'warehouse_loc': StockBuy.warehouse_location, 'warehouse_loc': StockBuy.warehouse_location,
'unit_price': StockBuy.pre_tax_unit_price, 'unit_price': StockBuy.pre_tax_unit_price,
'post_tax_unit_price': StockBuy.post_tax_unit_price,
'total_price': StockBuy.total_price, 'total_price': StockBuy.total_price,
'tax_rate': StockBuy.tax_rate, 'tax_rate': StockBuy.tax_rate,
'currency': StockBuy.currency, 'currency': StockBuy.currency,

View File

@ -239,7 +239,7 @@ const handleLogout = () => {
<footer v-if="!isLoginPage" class="app-footer"> <footer v-if="!isLoginPage" class="app-footer">
<span class="version-tag"> <span class="version-tag">
<el-icon style="vertical-align: middle; margin-right: 4px"><InfoFilled /></el-icon> <el-icon style="vertical-align: middle; margin-right: 4px"><InfoFilled /></el-icon>
当前版本:V3.53 当前版本:V3.54
</span> </span>
</footer> </footer>