public
Description: Django-beancounter is a simple app I built to track my income and expenses.
Homepage: http://github.com/lincolnloop/django-beancounter
Clone URL: git://github.com/lincolnloop/django-beancounter.git
add bid field
lincolnloop (author)
Sun Jan 04 17:41:51 -0800 2009
commit  3431c1032d66ef29e874b66482b590d1a25a1b48
tree    7ca2a2ff170f78fc07b7406fe075861388dd7505
parent  d19870c8fdeab21e921453632d5169b8445728d3
...
6
7
8
 
 
 
 
 
 
 
 
...
6
7
8
9
10
11
12
13
14
15
16
0
@@ -6,3 +6,11 @@ Requirements
0
 
0
 .. _python-dateutil: http://pypi.python.org/pypi/dateutil
0
 .. _tagging: http://django-tagging.googlecode.com 
0
+
0
+
0
+Recommended
0
+===========
0
+
0
+- django_evolution_
0
+
0
+.. _django_evolution: http://django-evolution.googlecode.com
...
114
115
116
117
 
118
119
120
...
114
115
116
 
117
118
119
120
0
@@ -114,7 +114,7 @@ class Project(models.Model):
0
     name = models.CharField(max_length=100)
0
     employees = models.ManyToManyField(Employee)
0
     start_date = models.DateField()
0
-    #bid = models.DecimalField(max_digits=8, decimal_places=2)
0
+    bid = models.DecimalField(max_digits=8, decimal_places=2)
0
     active = models.BooleanField(default=True)
0
 
0
     def __unicode__(self):

Comments