You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<InvoicesLabel@Label>
|
|
|
|
#color: .305, .309, .309, 1
|
|
|
|
text_size: self.size
|
|
|
|
halign: 'left'
|
|
|
|
valign: 'middle'
|
|
|
|
|
|
|
|
<InvoiceItem@CardItem>
|
|
|
|
requestor: ''
|
|
|
|
memo: ''
|
|
|
|
amount: ''
|
|
|
|
status: ''
|
|
|
|
date: ''
|
|
|
|
InvoicesLabel:
|
|
|
|
text: root.requestor
|
|
|
|
InvoicesLabel:
|
|
|
|
text: root.memo
|
|
|
|
InvoicesLabel:
|
|
|
|
text: root.amount
|
|
|
|
|
|
|
|
InvoicesScreen:
|
|
|
|
name: 'invoices'
|
|
|
|
on_activate:
|
|
|
|
if not self.action_view:\
|
|
|
|
self.action_view = app.root.main_screen.ids.tabs.ids.screen_dashboard.action_view
|
|
|
|
BoxLayout:
|
|
|
|
orientation: 'vertical'
|
|
|
|
spacing: '1dp'
|
|
|
|
ScrollView:
|
|
|
|
canvas.before:
|
|
|
|
Color:
|
|
|
|
rgba: .8901, .8901, .8901, 0
|
|
|
|
Rectangle:
|
|
|
|
size: self.size
|
|
|
|
pos: self.pos
|
|
|
|
GridLayout:
|
|
|
|
cols: 1
|
|
|
|
id: invoices_container
|
|
|
|
size_hint: 1, None
|
|
|
|
height: self.minimum_height
|
|
|
|
spacing: '1dp'
|
|
|
|
padding: '12dp'
|