|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
<?page title="${labels.Invoicing}" contentType="text/html;charset=UTF-8"?>
|
|
|
|
|
<?page contentType="text/html;charset=UTF-8"?>
|
|
|
|
|
<zk>
|
|
|
|
|
<window
|
|
|
|
|
id="editWin"
|
|
|
|
@ -14,15 +14,17 @@
|
|
|
|
|
zclass="form-caption"
|
|
|
|
|
label="${labels.InvoicingFormTitle}" />
|
|
|
|
|
<vlayout vflex="1">
|
|
|
|
|
<hbox>
|
|
|
|
|
|
|
|
|
|
<vbox height="300px">
|
|
|
|
|
<hbox
|
|
|
|
|
vflex="min"
|
|
|
|
|
hflex="1">
|
|
|
|
|
<button
|
|
|
|
|
image="/img/item-add.png"
|
|
|
|
|
label="${labels.InvoicingAdd}"
|
|
|
|
|
sclass="nicebutton"
|
|
|
|
|
onClick="@command('addItem')"/>
|
|
|
|
|
|
|
|
|
|
onClick="@command('addItem')" />
|
|
|
|
|
</hbox>
|
|
|
|
|
<hbox vflex="1">
|
|
|
|
|
<vbox vflex="1">
|
|
|
|
|
<listbox
|
|
|
|
|
model="@load(vm.dataBean.items)"
|
|
|
|
|
vflex="1"
|
|
|
|
@ -31,13 +33,13 @@
|
|
|
|
|
<listhead>
|
|
|
|
|
<listheader
|
|
|
|
|
label="${labels.InvoicingDate}"
|
|
|
|
|
width="150px"/>
|
|
|
|
|
width="150px" />
|
|
|
|
|
<listheader label="${labels.InvoicingInvoiceNumber}" />
|
|
|
|
|
<listheader
|
|
|
|
|
label="${labels.InvoicingAmount}"
|
|
|
|
|
align="right"
|
|
|
|
|
width="90px"/>
|
|
|
|
|
<listheader/>
|
|
|
|
|
width="90px" />
|
|
|
|
|
<listheader />
|
|
|
|
|
</listhead>
|
|
|
|
|
<template name="model">
|
|
|
|
|
<listitem>
|
|
|
|
@ -45,7 +47,7 @@
|
|
|
|
|
<datebox
|
|
|
|
|
value="@bind(each.invoiceDate)"
|
|
|
|
|
inplace="true"
|
|
|
|
|
onFocus="@command('onFocus', item=each)"/>
|
|
|
|
|
onFocus="@command('onFocus', item=each)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<textbox
|
|
|
|
@ -53,7 +55,7 @@
|
|
|
|
|
sclass="grid-textbox-max"
|
|
|
|
|
inplace="true"
|
|
|
|
|
maxlength="@load(vm.lengthText)"
|
|
|
|
|
onFocus="@command('onFocus', item=each)"/>
|
|
|
|
|
onFocus="@command('onFocus', item=each)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<textbox
|
|
|
|
@ -62,16 +64,18 @@
|
|
|
|
|
inplace="true"
|
|
|
|
|
onFocus="@command('onFocus', item=each)"
|
|
|
|
|
maxlength="@load(vm.lengthText)"
|
|
|
|
|
onChange="@command('calculate')"/>
|
|
|
|
|
onChange="@command('calculate')" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<button label="${labels.RemoveItem}" sclass="nicebutton" onClick="@command('removeItem', item=each)"/>
|
|
|
|
|
<button
|
|
|
|
|
label="${labels.RemoveItem}"
|
|
|
|
|
sclass="nicebutton"
|
|
|
|
|
onClick="@command('removeItem', item=each)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
</listitem>
|
|
|
|
|
</template>
|
|
|
|
|
</listbox>
|
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
|
|
<grid hflex="min">
|
|
|
|
|
<columns>
|
|
|
|
|
<column
|
|
|
|
@ -88,7 +92,7 @@
|
|
|
|
|
value="@bind(vm.dataBean.requirement.numser)"
|
|
|
|
|
style="font-weight: bold;"
|
|
|
|
|
maxlength="@load(vm.lengthText)"
|
|
|
|
|
readonly="true"/>
|
|
|
|
|
readonly="true" />
|
|
|
|
|
</cell>
|
|
|
|
|
</row>
|
|
|
|
|
<row>
|
|
|
|
@ -109,7 +113,7 @@
|
|
|
|
|
width="150px"
|
|
|
|
|
value="@bind(vm.dataBean.requirement.sumTotal) @converter(vm.standardBigDecimalConverter)"
|
|
|
|
|
maxlength="@load(vm.lengthText)"
|
|
|
|
|
readonly="true"/>
|
|
|
|
|
readonly="true" />
|
|
|
|
|
</cell>
|
|
|
|
|
</row>
|
|
|
|
|
<row>
|
|
|
|
@ -120,16 +124,12 @@
|
|
|
|
|
value="@bind(vm.dataBean.totalInvoiced) @converter(vm.standardBigDecimalConverter)"
|
|
|
|
|
readonly="true"
|
|
|
|
|
maxlength="@load(vm.lengthText)"
|
|
|
|
|
style="@load(vm.dataBean.totalInvoiced gt vm.dataBean.requirement.sumTotal ? ' color: red;' : '' )"/>
|
|
|
|
|
style="@load(vm.dataBean.totalInvoiced gt vm.dataBean.requirement.sumTotal ? ' color: red;' : '' )" />
|
|
|
|
|
</cell>
|
|
|
|
|
</row>
|
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</hbox>
|
|
|
|
|
|
|
|
|
|
<listbox
|
|
|
|
|
vflex="1"
|
|
|
|
|
model="@load(vm.dataBean.requirement.items)">
|
|
|
|
@ -169,7 +169,7 @@
|
|
|
|
|
<template name="model">
|
|
|
|
|
<listitem>
|
|
|
|
|
<listcell>
|
|
|
|
|
<label value="@load(each.code)"/>
|
|
|
|
|
<label value="@load(each.code)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<label value="@load(each.name)" />
|
|
|
|
@ -190,7 +190,7 @@
|
|
|
|
|
<label value="@bind(each.total) @converter(vm.standardBigDecimalConverter)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<checkbox checked="@bind(each.paid)"/>
|
|
|
|
|
<checkbox checked="@bind(each.paid)" />
|
|
|
|
|
</listcell>
|
|
|
|
|
<listcell>
|
|
|
|
|
<label value="@bind(each.description)" />
|
|
|
|
@ -198,7 +198,6 @@
|
|
|
|
|
</listitem>
|
|
|
|
|
</template>
|
|
|
|
|
</listbox>
|
|
|
|
|
|
|
|
|
|
<include src="/app/formButtons.zul" />
|
|
|
|
|
</vlayout>
|
|
|
|
|
</window>
|
|
|
|
|