2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-04-02 08:56:26 +00:00
|
|
|
import webnotes
|
|
|
|
def execute():
|
|
|
|
if not webnotes.conn.exists("Country", "Aruba"):
|
|
|
|
webnotes.bean({
|
|
|
|
"doctype": "Country",
|
|
|
|
"country_name": "Aruba",
|
|
|
|
"time_zones": "America/Aruba",
|
|
|
|
"date_format": "mm-dd-yyyy"
|
|
|
|
}).insert()
|
|
|
|
|
|
|
|
if not webnotes.conn.exists("Currency", "AWG"):
|
|
|
|
webnotes.bean({
|
|
|
|
"doctype": "Currency",
|
|
|
|
"currency_name": "AWG",
|
|
|
|
"fraction": "Cent",
|
|
|
|
"fraction_units": 100,
|
|
|
|
"symbol": "Afl",
|
|
|
|
"number_format": "#,###.##"
|
|
|
|
}).insert()
|
|
|
|
|