Parcourir la source

Rename Loan.location → Loan.notes

location has no real interest, free text notes are always good :-)
Jocelyn Delande il y a 9 ans
Parent
commit
668fdab437

+ 1 - 1
hardware_provisioning/admin.py

@@ -50,7 +50,7 @@ class ItemAdmin(admin.ModelAdmin):
 
 @admin.register(Loan)
 class LoanAdmin(admin.ModelAdmin):
-    list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
+    list_display = ('item', 'user', 'loan_date', 'loan_date_end')
     list_filter = ('item__designation', 'user__username')
     search_fields = ('item', 'user')
     actions = ['end_loan']

+ 15 - 0
hardware_provisioning/migrations/0008_auto_20160405_2234.py

@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('hardware_provisioning', '0007_item_storage'),
+    ]
+
+    operations = [
+        migrations.RenameField('loan', 'location', 'notes')
+    ]

+ 20 - 0
hardware_provisioning/migrations/0009_auto_20160405_2236.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('hardware_provisioning', '0008_auto_20160405_2234'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='loan',
+            name='notes',
+            field=models.TextField(null=True, verbose_name='emplacement', blank=True),
+            preserve_default=True,
+        ),
+    ]

+ 20 - 0
hardware_provisioning/migrations/0010_auto_20160405_2237.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('hardware_provisioning', '0009_auto_20160405_2236'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='loan',
+            name='notes',
+            field=models.TextField(null=True, blank=True),
+            preserve_default=True,
+        ),
+    ]

+ 3 - 4
hardware_provisioning/models.py

@@ -97,12 +97,11 @@ class Loan(models.Model):
     loan_date = models.DateField(verbose_name='date de prêt')
     loan_date_end = models.DateField(verbose_name='date de fin de prêt',
                                      null=True, blank=True)
-    location = models.CharField(max_length=100, verbose_name='emplacement',
-                                null=True, blank=True)
+    notes = models.TextField(null=True, blank=True)
 
     def __unicode__(self):
-        return 'prêt de {item} à {user}'.format(item=self.item,
-                                                user=self.user)
+        return 'prêt de {item} à {user}'.format(
+            item=self.item, user=self.user)
 
     def user_can_close(self, user):
         return (not self.item.is_available()) and (self.user == user)