c57fc944 by 周伟奇

fix bug

1 parent 217518e3
...@@ -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, '')
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!