本文整理汇总了Python中src.firm.Firm.clear_accounts方法的典型用法代码示例。如果您正苦于以下问题:Python Firm.clear_accounts方法的具体用法?Python Firm.clear_accounts怎么用?Python Firm.clear_accounts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类src.firm.Firm
的用法示例。
在下文中一共展示了Firm.clear_accounts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: firm__clear_accounts
# 需要导入模块: from src.firm import Firm [as 别名]
# 或者: from src.firm.Firm import clear_accounts [as 别名]
def firm__clear_accounts(self, args):
import os
from src.bank import Bank
from src.household import Household
from src.firm import Firm
from src.environment import Environment # needed for the bankDirectory
text = "This test checks firm.clear_accounts \n"
text = text + " Checking if after the clear_accounts the total amount \n"
text = text + " of transactions in zero. \n"
self.print_info(text)
#
# INITIALIZATION
#
environment_directory = str(args[0])
identifier = str(args[1])
log_directory = str(args[2])
# Configure logging parameters so we get output while the program runs
logging.basicConfig(format='%(asctime)s %(message)s', datefmt='%m/%d/%Y %H:%M:%S',
filename=log_directory + identifier + ".log", level=logging.INFO)
logging.info('START logging for test firm__clear_accounts in run: %s',
environment_directory + identifier + ".xml")
# Construct firm filename
environment = Environment(environment_directory, identifier)
# get the firm_directory from the environment
firm_directory = environment.firm_directory
# and loop over all firms in the directory
listing = os.listdir(firm_directory)
firmFilename = firm_directory + listing[0]
# generate a household
household = Household()
household.identifier = "test_household"
environment.households.append(household)
# generate a bank
bank = Bank()
bank.identifier = "test_bank"
environment.banks.append(bank)
# generate a firm
firm = Firm()
environment.firms.append(firm)
helper = Helper()
helper.initialize_standard_firm(firm, environment)
#
# TESTING
#
account = 0.0
tranx = 0
for transaction in firm.accounts:
account = account + transaction.amount
tranx = tranx + 1
print(tranx)
print(account)
firm.add_transaction("deposits", "", environment.households[0:1][0],
firm.identifier, 0.0, 0.09, 0, -1, environment)
# environment.households[0:1][0] is only for testing purposes DO NOT USE IN PRODUCTION
# what it does is is takes the first household in environment, but if there are no
# households (which happens in testing) it doesn't break down
account = 0.0
tranx = 0
for transaction in firm.accounts:
account = account + transaction.amount
tranx = tranx + 1
print(tranx)
print(account)
firm.clear_accounts()
account = 0.0
tranx = 0
for transaction in firm.accounts:
account = account + transaction.amount
tranx = tranx + 1
print(tranx)
print(account)