lucabook 0.2.20 → 0.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exe/luca-book +92 -16
- data/lib/luca_book.rb +1 -0
- data/lib/luca_book/console.rb +4 -4
- data/lib/luca_book/dict.rb +78 -1
- data/lib/luca_book/import.rb +36 -37
- data/lib/luca_book/import_jp.rb +83 -0
- data/lib/luca_book/journal.rb +98 -23
- data/lib/luca_book/list.rb +18 -11
- data/lib/luca_book/list_by_header.rb +120 -0
- data/lib/luca_book/setup.rb +2 -1
- data/lib/luca_book/state.rb +175 -110
- data/lib/luca_book/templates/base-jp.xbrl.erb +23 -48
- data/lib/luca_book/templates/base-jp.xsd.erb +17 -0
- data/lib/luca_book/templates/config.yml +4 -0
- data/lib/luca_book/templates/dict-en.tsv +45 -50
- data/lib/luca_book/templates/dict-jp-edinet.tsv +167 -0
- data/lib/luca_book/templates/dict-jp.tsv +192 -162
- data/lib/luca_book/templates/monthly-report.html.erb +67 -0
- data/lib/luca_book/version.rb +1 -1
- metadata +9 -3
@@ -0,0 +1,67 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
5
|
+
<style>
|
6
|
+
td { text-align: right; line-height: 2em; min-width: 6em }
|
7
|
+
thead th, thead td { text-align: center }
|
8
|
+
thead { border-bottom: solid 1px #aaa }
|
9
|
+
tr#total { border-top: solid 1px #aaa }
|
10
|
+
tr.sub { font-size: .8em; color: #aaa }
|
11
|
+
.past { color: #777 }
|
12
|
+
</style>
|
13
|
+
</head>
|
14
|
+
<body>
|
15
|
+
<div style="margin: 1em 0"><%= @company %></div>
|
16
|
+
|
17
|
+
<h2>Income Statement</h2>
|
18
|
+
<div style="overflow-x: scroll">
|
19
|
+
<table>
|
20
|
+
<thead>
|
21
|
+
<tr>
|
22
|
+
<th></th>
|
23
|
+
<% @months.each do |d| %>
|
24
|
+
<th><%= d %></th>
|
25
|
+
<% end %>
|
26
|
+
</tr>
|
27
|
+
</thead>
|
28
|
+
<tbody>
|
29
|
+
<% @pl.each.with_index(1) do |(key, val), i| %>
|
30
|
+
<tr>
|
31
|
+
<td><%= key %></td>
|
32
|
+
<% val.each do |v| %>
|
33
|
+
<td><%= delimit_num(v) %></td>
|
34
|
+
<% end %>
|
35
|
+
</tr>
|
36
|
+
<% end %>
|
37
|
+
</tbody>
|
38
|
+
</table>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<h2>Balance Sheet</h2>
|
42
|
+
<div style="overflow-x: scroll">
|
43
|
+
<table>
|
44
|
+
<thead>
|
45
|
+
<tr>
|
46
|
+
<th>Account</th><th>Balance</th><th>Change</th>
|
47
|
+
<th>Account</th><th>Balance</th><th>Change</th>
|
48
|
+
</tr>
|
49
|
+
</thead>
|
50
|
+
<tbody>
|
51
|
+
<% @bs.each.with_index(1) do |row, i| %>
|
52
|
+
<tr>
|
53
|
+
<td><%= row['debit_label'] %></td>
|
54
|
+
<td><%= delimit_num(row['debit_balance']) %></td>
|
55
|
+
<td><%= delimit_num(row['debit_diff']) %></td>
|
56
|
+
|
57
|
+
<td><%= row['credit_label'] %></td>
|
58
|
+
<td><%= delimit_num(row['credit_balance']) %></td>
|
59
|
+
<td><%= delimit_num(row['credit_diff']) %></td>
|
60
|
+
</tr>
|
61
|
+
<% end %>
|
62
|
+
</tbody>
|
63
|
+
</table>
|
64
|
+
</div>
|
65
|
+
|
66
|
+
</body>
|
67
|
+
</html>
|
data/lib/luca_book/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lucabook
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chuma Takahiro
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lucarecord
|
@@ -82,13 +82,19 @@ files:
|
|
82
82
|
- lib/luca_book/console.rb
|
83
83
|
- lib/luca_book/dict.rb
|
84
84
|
- lib/luca_book/import.rb
|
85
|
+
- lib/luca_book/import_jp.rb
|
85
86
|
- lib/luca_book/journal.rb
|
86
87
|
- lib/luca_book/list.rb
|
88
|
+
- lib/luca_book/list_by_header.rb
|
87
89
|
- lib/luca_book/setup.rb
|
88
90
|
- lib/luca_book/state.rb
|
89
91
|
- lib/luca_book/templates/base-jp.xbrl.erb
|
92
|
+
- lib/luca_book/templates/base-jp.xsd.erb
|
93
|
+
- lib/luca_book/templates/config.yml
|
90
94
|
- lib/luca_book/templates/dict-en.tsv
|
95
|
+
- lib/luca_book/templates/dict-jp-edinet.tsv
|
91
96
|
- lib/luca_book/templates/dict-jp.tsv
|
97
|
+
- lib/luca_book/templates/monthly-report.html.erb
|
92
98
|
- lib/luca_book/util.rb
|
93
99
|
- lib/luca_book/version.rb
|
94
100
|
homepage: https://github.com/chumaltd/luca/tree/master/lucabook
|
@@ -112,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
118
|
- !ruby/object:Gem::Version
|
113
119
|
version: '0'
|
114
120
|
requirements: []
|
115
|
-
rubygems_version: 3.
|
121
|
+
rubygems_version: 3.2.3
|
116
122
|
signing_key:
|
117
123
|
specification_version: 4
|
118
124
|
summary: Book keep
|