Browse Source

修改税点计算

master
feng 3 years ago
parent
commit
53ac0db8bd
  1. 2
      客户端/齐越慧眼/齐越慧眼/MainWindow.xaml
  2. 2
      客户端/齐越慧眼/齐越慧眼/vuepage/client/src/views/items/Index.vue
  3. 2
      客户端/齐越慧眼/齐越慧眼/vuepage/client/src/views/pricetask/Index.vue
  4. 2
      客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/app.js
  5. 2
      客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/app.js.map
  6. 381
      客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/chunk-vendors.js
  7. 2
      客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/chunk-vendors.js.map

2
客户端/齐越慧眼/齐越慧眼/MainWindow.xaml

@ -11,7 +11,7 @@
WindowStartupLocation="CenterScreen"
ActiveGlowColor="{DynamicResource PrimaryColor}"
Height="780"
Title="慧眼 V1.0.0.9"
Title="慧眼 V1.0.1.0"
Width="1468" Icon="/icon.ico"
>
<Border Padding="0 10" Background="#EEEEEE">

2
客户端/齐越慧眼/齐越慧眼/vuepage/client/src/views/items/Index.vue

@ -803,7 +803,7 @@ export default {
parseFloat(ext.BuyPrice) -
parseFloat(ext.KDPrice) -
parseFloat(ext.PlatformPoint)-
parseFloat(ext.TaxPrice);
(ext.TaxPrice==undefined||ext.TaxPrice==null?0:parseFloat(ext.TaxPrice))
ext.Profit=parseFloat(
ext.Profit

2
客户端/齐越慧眼/齐越慧眼/vuepage/client/src/views/pricetask/Index.vue

@ -708,7 +708,7 @@ export default {
parseFloat(ext.BuyPrice) -
parseFloat(ext.KDPrice) -
parseFloat(ext.PlatformPoint)-
parseFloat(ext.TaxPrice);
(ext.TaxPrice==undefined||ext.TaxPrice==null?0:parseFloat(ext.TaxPrice));
ext.Profit=parseFloat(
ext.Profit

2
客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/app.js

File diff suppressed because one or more lines are too long

2
客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/app.js.map

File diff suppressed because one or more lines are too long

381
客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/chunk-vendors.js

File diff suppressed because one or more lines are too long

2
客户端/齐越慧眼/齐越慧眼/vuepage/dist/js/chunk-vendors.js.map

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save