mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
fix: delete inventory adjustment gl entries
This commit is contained in:
0
packages/server/static/views/financial-sheet.css
Normal file
0
packages/server/static/views/financial-sheet.css
Normal file
26
packages/server/static/views/financial-sheet.pug
Normal file
26
packages/server/static/views/financial-sheet.pug
Normal file
@@ -0,0 +1,26 @@
|
||||
block head
|
||||
style
|
||||
include ./financial-sheet.css
|
||||
|
||||
style.
|
||||
!{customCSS}
|
||||
|
||||
block content
|
||||
.sheet
|
||||
.sheet__header
|
||||
.sheet__company-name=organizationName
|
||||
.sheet__sheet-type=sheetName
|
||||
.sheet__sheet-date=sheetDate
|
||||
|
||||
table.sheet__table
|
||||
thead
|
||||
tr
|
||||
each column in table.columns
|
||||
th(style=column.style class='column--' + column.key)= column.label
|
||||
|
||||
tbody
|
||||
each row in table.rows
|
||||
tr(class=row.classNames)
|
||||
each cell in row.cells
|
||||
td(class='cell--' + cell.key)
|
||||
span!= cell.value
|
||||
Reference in New Issue
Block a user