Ids displayed for orders and items, showing user.nickname instead of client.alias
This commit is contained in:
parent
7cea5f2cfa
commit
884653412b
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.405.13) stable; urgency=low
|
||||
hedera-web (1.405.14) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -431,6 +431,9 @@
|
|||
<p class="producer">
|
||||
<htk-text form="card" column="producer"/>
|
||||
</p>
|
||||
<p>
|
||||
@<htk-text form="card" column="item_id"/>
|
||||
</p>
|
||||
<p>
|
||||
<t>Size</t> <htk-text form="card" column="Medida"/>,
|
||||
<t>Category</t> <htk-text form="card" column="Categoria"/>
|
||||
|
|
|
@ -61,6 +61,9 @@
|
|||
<p class="important">
|
||||
<htk-text form="iter" column="date" format="%D"/>
|
||||
</p>
|
||||
<p>
|
||||
@<htk-text form="iter" column="ticket_id"/>
|
||||
</p>
|
||||
<p>
|
||||
<htk-text form="iter" column="consignee"/>
|
||||
</p>
|
||||
|
|
|
@ -55,7 +55,7 @@ module.exports = new Class
|
|||
|
||||
this.$('social-bar').conn = this._conn;
|
||||
|
||||
var sql = 'SELECT name FROM customer_user;'
|
||||
var sql = 'SELECT nickname FROM account.userView;'
|
||||
+'SELECT default_form, image_dir, image_host FROM config;'
|
||||
+'SELECT production_domain, test_domain FROM config;';
|
||||
this._conn.execQuery (sql, this.onMainQueryDone.bind (this));
|
||||
|
|
Loading…
Reference in New Issue