Skip to content
Snippets Groups Projects
Commit c6fd8f5e authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Fixed a bug in the update when the table has unique field. The remedee

is to transmit only the values that have been changed.
parent 9033f7ec
No related branches found
No related tags found
No related merge requests found
# coding: utf8
# -*- coding: utf-8 -*-
{
'%Y-%m-%d': '%Y-%m-%d',
'Abbreviation': 'Abréviation',
......@@ -117,7 +117,8 @@
'undefined': 'indéfini',
'unknown': 'unknown',
'url': 'url',
'value already in database or empty': 'existe dans la base de données ou est null.',
'value already in database or empty': 'La valeur existe dans la base de données ou est nulle',
'Value already in database or empty': 'La valeur existe dans la base de données ou est nulle',
'versions': 'versions',
'Volume': 'Volume',
'year': 'année',
......
......@@ -65,7 +65,8 @@ Ext.define('App.data.proxy.Direct', {
if (!config.writer) {
config.writer = {
type: 'json',
allowSingle: false
allowSingle: false,
writeAllFields: false
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment