salix/modules/supplier/front/fiscal-data/index.html

214 lines
6.8 KiB
HTML
Raw Normal View History

2020-10-30 14:11:45 +00:00
<mg-ajax path="Suppliers/{{patch.params.id}}/updateFiscalData" options="vnPatch"></mg-ajax>
<vn-watcher
vn-id="watcher"
data="$ctrl.supplier"
id-field="id"
form="form"
save="patch">
</vn-watcher>
<vn-crud-model
auto-load="true"
url="Provinces/location"
data="provincesLocation"
order="name">
</vn-crud-model>
<vn-crud-model
auto-load="true"
url="Countries"
data="countries"
order="country">
</vn-crud-model>
<vn-crud-model
auto-load="true"
url="SageTaxTypes"
data="sageTaxTypes"
order="vat">
</vn-crud-model>
<vn-crud-model
auto-load="true"
url="SageWithholdings"
data="sageWithholdings"
order="withholding">
</vn-crud-model>
<vn-crud-model
auto-load="true"
2022-04-25 10:23:03 +00:00
url="SupplierActivities"
data="supplierActivities">
</vn-crud-model>
2020-10-30 14:11:45 +00:00
<form name="form" vn-http-submit="watcher.submit()" class="vn-w-md">
<vn-card class="vn-pa-lg">
<vn-horizontal>
<vn-textfield
vn-two
vn-focus
label="Social name"
ng-model="$ctrl.supplier.name"
info="Only letters, numbers and spaces can be used"
2020-11-02 13:30:33 +00:00
required="true"
rule>
2020-10-30 14:11:45 +00:00
</vn-textfield>
<vn-textfield
vn-one
label="Tax number"
ng-model="$ctrl.supplier.nif"
2020-11-02 13:30:33 +00:00
required="true"
2020-10-30 14:11:45 +00:00
rule>
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-textfield
2020-10-30 14:11:45 +00:00
vn-one
2020-11-04 10:37:54 +00:00
label="Account"
2020-10-30 14:11:45 +00:00
ng-model="$ctrl.supplier.account"
insertable="true"
max-length="10"
2020-10-30 14:11:45 +00:00
rule>
</vn-textfield>
2020-10-30 14:11:45 +00:00
<vn-autocomplete vn-one
ng-model="$ctrl.supplier.sageTaxTypeFk"
data="sageTaxTypes"
show-field="vat"
value-field="id"
label="Sage tax type"
rule>
</vn-autocomplete>
</vn-horizontal>
<vn-horizontal>
<vn-autocomplete vn-one
ng-model="$ctrl.supplier.sageWithholdingFk"
data="sageWithholdings"
show-field="withholding"
value-field="id"
label="Sage withholding"
rule>
</vn-autocomplete>
<vn-autocomplete vn-one
ng-model="$ctrl.supplier.sageTransactionTypeFk"
url="SageTransactionTypes"
2020-10-30 14:11:45 +00:00
show-field="transaction"
value-field="id"
label="Sage transaction type"
search-function="{or: [{id: $search}, {transaction: {like: '%'+ $search +'%'}}]}"
order="transaction"
2020-10-30 14:11:45 +00:00
rule>
<tpl-item>{{id}}: {{transaction}}</tpl-item>
2020-10-30 14:11:45 +00:00
</vn-autocomplete>
</vn-horizontal>
<vn-horizontal>
<vn-autocomplete vn-one
ng-model="$ctrl.supplier.supplierActivityFk"
2022-04-25 10:23:03 +00:00
data="supplierActivities"
show-field="name"
value-field="code"
label="Supplier activity"
rule>
</vn-autocomplete>
<vn-textfield
vn-one
label="Healt register"
ng-model="$ctrl.supplier.healthRegister"
rule>
</vn-textfield>
</vn-horizontal>
2020-11-18 10:47:23 +00:00
<vn-horizontal>
<vn-textfield
vn-one
label="Street"
ng-model="$ctrl.supplier.street"
rule
vn-focus>
</vn-textfield>
2020-10-30 14:11:45 +00:00
<vn-datalist vn-one
label="Postcode"
ng-model="$ctrl.supplier.postCode"
selection="$ctrl.postcode"
url="Postcodes/location"
fields="['code','townFk']"
order="code, townFk"
value-field="code"
show-field="code"
rule>
<tpl-item>
2022-11-18 08:21:21 +00:00
{{code}} - {{town.name}} ({{town.province.name}},
2020-10-30 14:11:45 +00:00
{{town.province.country.country}})
</tpl-item>
<append>
<vn-icon-button
icon="add_circle"
vn-tooltip="New postcode"
ng-click="postcode.open()"
vn-acl="deliveryBoss"
vn-acl-action="remove">
</vn-icon-button>
</append>
</vn-datalist>
2022-10-26 08:03:13 +00:00
</vn-horizontal>
<vn-horizontal>
2022-11-18 08:21:21 +00:00
<vn-datalist vn-id="town" vn-one
2020-10-30 14:11:45 +00:00
label="City"
ng-model="$ctrl.supplier.city"
selection="$ctrl.town"
url="Towns/location"
fields="['id', 'name', 'provinceFk']"
show-field="name"
2020-11-02 13:30:33 +00:00
value-field="name"
required="true"
rule>
2020-10-30 14:11:45 +00:00
<tpl-item>
{{name}}, {{province.name}}
({{province.country.country}})
</tpl-item>
</vn-datalist>
<vn-autocomplete vn-id="province" vn-one
label="Province"
ng-model="$ctrl.supplier.provinceFk"
selection="$ctrl.province"
data="provincesLocation"
fields="['id', 'name', 'countryFk']"
show-field="name"
value-field="id"
rule>
<tpl-item>{{name}} ({{country.country}})</tpl-item>
</vn-autocomplete>
2022-10-26 08:03:13 +00:00
</vn-horizontal>
<vn-horizontal>
2022-11-18 08:21:21 +00:00
<vn-autocomplete vn-id="country" vn-two
2020-10-30 14:11:45 +00:00
ng-model="$ctrl.supplier.countryFk"
data="countries"
show-field="country"
value-field="id"
label="Country"
rule>
</vn-autocomplete>
2022-11-18 08:21:21 +00:00
<vn-two class="vn-pl-xs">
<vn-check
label="Trucker"
ng-model="$ctrl.supplier.isTrucker">
</vn-check>
<vn-check
class="vn-ml-lg"
label="Vies"
ng-model="$ctrl.supplier.isVies">
</vn-check>
</vn-two>
2020-10-30 14:11:45 +00:00
</vn-horizontal>
</vn-card>
<vn-button-bar>
2020-12-15 16:09:05 +00:00
<vn-submit
disabled="!watcher.dataChanged()"
label="Save">
</vn-submit>
<vn-button
class="cancel"
label="Undo changes"
disabled="!watcher.dataChanged()"
ng-click="watcher.loadOriginalData()">
</vn-button>
2020-10-30 14:11:45 +00:00
</vn-button-bar>
</form>
<!-- New postcode dialog -->
<vn-geo-postcode
vn-id="postcode"
on-response="$ctrl.onResponse($response)">
2022-11-18 08:21:21 +00:00
</vn-geo-postcode>