2015-03-06 23:33:54 +00:00
|
|
|
<vn>
|
|
|
|
<vn-group>
|
2016-10-11 14:45:10 +00:00
|
|
|
<db-form id="password-form">
|
|
|
|
<db-model property="model">
|
|
|
|
<custom>
|
|
|
|
SELECT length, nAlpha, nUpper, nDigits, nPunct
|
|
|
|
FROM account.userPassword
|
|
|
|
</custom>
|
|
|
|
</db-model>
|
|
|
|
</db-form>
|
2015-07-23 15:58:48 +00:00
|
|
|
<db-form id="user-form">
|
2015-11-17 10:34:33 +00:00
|
|
|
<db-model property="model" id="user-model" updatable="true">
|
|
|
|
<custom>
|
2017-11-24 11:10:52 +00:00
|
|
|
SELECT u.id, u.name, u.email, u.recoverPass,
|
|
|
|
u.nickname, u.lang, c.mail, c.user_id
|
2016-10-11 14:45:10 +00:00
|
|
|
FROM account.userView u
|
2016-10-14 10:58:35 +00:00
|
|
|
LEFT JOIN customer_view c
|
|
|
|
ON u.id = c.user_id
|
2015-11-17 10:34:33 +00:00
|
|
|
</custom>
|
2015-03-06 23:33:54 +00:00
|
|
|
</db-model>
|
|
|
|
</db-form>
|
2015-03-27 19:10:49 +00:00
|
|
|
<db-model id="addresses" updatable="true">
|
2015-11-17 10:34:33 +00:00
|
|
|
<custom>
|
2016-10-14 10:58:35 +00:00
|
|
|
SELECT a.id, a.consignee, p.name province,
|
|
|
|
a.zip_code, a.city, a.name, a.active, c.Pais country
|
2015-11-17 10:34:33 +00:00
|
|
|
FROM address_view a
|
2016-10-14 10:58:35 +00:00
|
|
|
LEFT JOIN vn2008.province p ON a.province_id = p.province_id
|
|
|
|
JOIN vn2008.Paises c ON c.Id = p.Paises_Id
|
|
|
|
WHERE active
|
2015-11-17 10:34:33 +00:00
|
|
|
</custom>
|
2015-03-19 19:36:11 +00:00
|
|
|
</db-model>
|
2015-03-06 23:33:54 +00:00
|
|
|
</vn-group>
|
2015-09-11 09:37:16 +00:00
|
|
|
<div id="title">
|
|
|
|
<h1><t>Configuration</t></h1>
|
|
|
|
</div>
|
2015-09-16 16:11:15 +00:00
|
|
|
<div id="actions">
|
2016-09-19 06:40:18 +00:00
|
|
|
<htk-bar-button
|
|
|
|
icon="place"
|
2015-09-16 16:11:15 +00:00
|
|
|
tip="_Addresses"
|
2016-09-19 06:40:18 +00:00
|
|
|
on-click="onAddressesClick"/>
|
2016-10-11 14:45:10 +00:00
|
|
|
<htk-bar-button
|
|
|
|
icon="preferences"
|
|
|
|
tip="_Change password"
|
|
|
|
on-click="onPassChangeClick"/>
|
2015-09-11 09:37:16 +00:00
|
|
|
</div>
|
2015-03-19 19:36:11 +00:00
|
|
|
<div id="form" class="conf">
|
2015-03-06 23:33:54 +00:00
|
|
|
<div class="box">
|
|
|
|
<div class="form">
|
|
|
|
<div class="form-group">
|
2016-10-15 18:58:30 +00:00
|
|
|
<label for="user-name"><t>Username</t></label>
|
2017-11-24 11:10:52 +00:00
|
|
|
<htk-text form="user-form" column="name"/>
|
2015-03-06 23:33:54 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email"><t>Email</t></label>
|
2017-11-24 11:10:52 +00:00
|
|
|
<htk-entry form="user-form" column="email"></htk-entry>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="nickname"><t>Display name</t></label>
|
|
|
|
<htk-entry form="user-form" column="nickname"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="lang"><t>Language</t></label>
|
|
|
|
<htk-combo form="user-form" column="lang">
|
|
|
|
<db-model property="model">
|
|
|
|
<custom>
|
|
|
|
SELECT code, name FROM language WHERE active
|
|
|
|
</custom>
|
|
|
|
</db-model>
|
|
|
|
</htk-combo>
|
2015-03-06 23:33:54 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2016-10-15 18:58:30 +00:00
|
|
|
<label for="mail"><t>Receive invoices by email</t></label>
|
2017-11-24 11:10:52 +00:00
|
|
|
<htk-check form="user-form" column="mail"/>
|
2015-03-06 23:33:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-11 14:45:10 +00:00
|
|
|
<htk-popup
|
|
|
|
id="change-password"
|
|
|
|
modal="true">
|
2016-10-20 08:37:08 +00:00
|
|
|
<div property="child-node" class="htk-dialog pass-change">
|
2016-10-11 14:45:10 +00:00
|
|
|
<div>
|
|
|
|
<input
|
|
|
|
id="old-password"
|
|
|
|
type="password"
|
|
|
|
placeholder="_Old password"/>
|
|
|
|
<input
|
|
|
|
id="new-password"
|
|
|
|
type="password"
|
|
|
|
placeholder="_New password"/>
|
|
|
|
<input
|
|
|
|
id="repeat-password"
|
|
|
|
type="password"
|
|
|
|
placeholder="_Repeat password"/>
|
|
|
|
</div>
|
2016-10-20 08:37:08 +00:00
|
|
|
<div class="button-bar">
|
|
|
|
<button class="thin" on-click="onPassModifyClick">
|
|
|
|
<t>Modify</t>
|
|
|
|
</button>
|
|
|
|
<button class="thin" on-click="onPassInfoClick">
|
|
|
|
<t>Info</t>
|
|
|
|
</button>
|
|
|
|
<div class="clear"/>
|
|
|
|
</div>
|
2016-10-11 14:45:10 +00:00
|
|
|
</div>
|
|
|
|
</htk-popup>
|
|
|
|
<htk-popup
|
|
|
|
id="password-info"
|
|
|
|
modal="true">
|
2016-10-20 08:37:08 +00:00
|
|
|
<div property="child-node" class="htk-dialog pass-info">
|
2016-10-11 14:45:10 +00:00
|
|
|
<h3>
|
|
|
|
<t>Password requirements</t>
|
|
|
|
</h3>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<htk-text form="password-form" column="length"/>
|
|
|
|
<t>characters long</t>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<htk-text form="password-form" column="nAlpha"/>
|
|
|
|
<t>alphabetic characters</t>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<htk-text form="password-form" column="nUpper"/>
|
|
|
|
<t>capital letters</t>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<htk-text form="password-form" column="nDigits"/>
|
|
|
|
<t>digits</t>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<htk-text form="password-form" column="nPunct"/>
|
|
|
|
<t>symbols</t>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</htk-popup>
|
2015-03-06 23:33:54 +00:00
|
|
|
</vn>
|