fix bug
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -619,7 +619,7 @@ class BSWorkbook(Workbook): | ... | @@ -619,7 +619,7 @@ class BSWorkbook(Workbook): |
619 | except Exception as e: | 619 | except Exception as e: |
620 | pass | 620 | pass |
621 | else: | 621 | else: |
622 | price = price_total*100/(rate+100) | 622 | price = round(price_total*100/(rate+100), 2) |
623 | license_dict['不含税价(逻辑计算)'] = price | 623 | license_dict['不含税价(逻辑计算)'] = price |
624 | for search_field, write_field in field_order: | 624 | for search_field, write_field in field_order: |
625 | field_value = license_dict.get(search_field, '') | 625 | field_value = license_dict.get(search_field, '') | ... | ... |
-
Please register or sign in to post a comment