create_accountant: Create an accountant account

Description Usage Arguments Value Examples

View source: R/book-profile.R

Description

This creates an user account for a bookkeeper project with details concerning the company, such as; address, banking and tax details. By default the yml file is added to an gitignore file, if available, to prevent leakage of sensitive information.

Usage

1
create_accountant(.text = NULL, quiet = FALSE)

Arguments

.text

Vector of character string of length 11. In consecutive order listing; company name, street and street number, zip code and city, country, email address, phone number, website, VAT ID, VAT tax number, IBAN and BIC.

quiet

Prevents messages from being printed to the console (default = FALSE).

Value

yml file

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Not run: 
# By reading data from the console
create_accountant()

# By adding a vector of length 11 with company name, street and street number
, zip code and city, country, email address, phone number, website, VAT ID,
VAT tax number, IBAN and BIC.
text <- c(
 "FAIReLABS",
 "Modelstraat 12",
 "3017 KH Amsterdam",
 "Netherlands",
 "schobbenmartin\@gmail.com",
 "03012345",
 "https://martinschobben.github.io/webpage/",
 "12345678",
 "NL123456789B01",
 "NL99ABCD0123456789",
 "AAAABBCCDD"
)

create_accountant(.text = text, quiet = TRUE)

## End(Not run)

MartinSchobben/bookkeeper documentation built on Dec. 17, 2021, 3:17 a.m.