138fe638aR29">29
+            ],
30
+            options={
31
+                'abstract': False,
32
+            },
33
+        ),
34
+    ]

+ 17 - 0
app/fruit/migrations/0026_remove_vendor_products.py

@@ -0,0 +1,17 @@
1
+# Generated by Django 3.2.6 on 2021-08-09 14:23
2
+
3
+from django.db import migrations
4
+
5
+
6
+class Migration(migrations.Migration):
7
+
8
+    dependencies = [
9
+        ('fruit', '0025_vendorproduct'),
10
+    ]
11
+
12
+    operations = [
13
+        migrations.RemoveField(
14
+            model_name='vendor',
15
+            name='products',
16
+        ),
17
+    ]

+ 24 - 0
app/fruit/migrations/0027_auto_20210809_2129.py

@@ -0,0 +1,24 @@
1
+# Generated by Django 3.2.6 on 2021-08-09 14:29
2
+
3
+from django.db import migrations, models
4
+import django.db.models.deletion
5
+
6
+
7
+class Migration(migrations.Migration):
8
+
9
+    dependencies = [
10
+        ('fruit', '0026_remove_vendor_products'),
11
+    ]
12
+
13
+    operations = [
14
+        migrations.AlterField(
15
+            model_name='inbox',
16
+            name='product',
17
+            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='fruit.product'),
18
+        ),
19
+        migrations.AlterField(
20
+            model_name='inbox',
21
+            name='store',
22
+            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='fruit.store'),
23
+        ),
24
+    ]

+ 29 - 0
app/fruit/migrations/0028_auto_20210809_2130.py

@@ -0,0 +1,29 @@
1
+# Generated by Django 3.2.6 on 2021-08-09 14:30
2
+
3
+from django.db import migrations, models
4
+import django.db.models.deletion
5
+
6
+
7
+class Migration(migrations.Migration):
8
+
9
+    dependencies = [
10
+        ('fruit', '0027_auto_20210809_2129'),
11
+    ]
12
+
13
+    operations = [
14
+        migrations.AlterField(
15
+            model_name='inbox',
16
+            name='buyer',
17
+            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='fruit.buyer'),
18
+        ),
19
+        migrations.AlterField(
20
+            model_name='inbox',
21
+            name='product',
22
+            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='fruit.product'),
23
+        ),
24
+        migrations.AlterField(
25
+            model_name='inbox',
26
+            name='store',
27
+            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='fruit.store'),
28
+        ),
29
+    ]

+ 40 - 5
app/fruit/models.py

@@ -108,9 +108,9 @@ class Buyer(GenericModel, models.Model):
108 108
         return f"{self.name} Tel.:{self.tel} Email:{self.email}"
109 109
 
110 110
 class Inbox(GenericModel, models.Model):
111
-    store = models.ForeignKey('Store', on_delete=models.DO_NOTHING, null=False, blank=False)
112
-    product = models.ForeignKey('Product', on_delete=models.DO_NOTHING, null=False, blank=False)
113
-    buyer = models.ForeignKey('Buyer', on_delete=models.DO_NOTHING, null=True, blank=True)
111
+    store = models.ForeignKey('Store', on_delete=models.SET_NULL, null=True, blank=False)
112
+    product = models.ForeignKey('Product', on_delete=models.SET_NULL, null=True, blank=False)
113
+    buyer = models.ForeignKey('Buyer', on_delete=models.SET_NULL, null=True, blank=True)
114 114
 
115 115
     subject = models.CharField(max_length=200)
116 116
     body = models.TextField(blank=False)
@@ -171,7 +171,7 @@ class Product(GenericModel, models.Model ):
171 171
     code = models.CharField(max_length=200)
172 172
     product_type = TreeForeignKey('ProductType', on_delete=models.SET_NULL, null=True)
173 173
     description = models.TextField(blank=True, null=True)
174
-    store = models.ForeignKey('Store', on_delete=models.CASCADE, null=True, blank=False)
174
+    store = models.ForeignKey('Store', on_delete=models.CASCADE, null=True, blank=True)
175 175
     price = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
176 176
 
177 177
 
@@ -183,11 +183,20 @@ class Product(GenericModel, models.Model ):
183 183
     def __str__(self):
184 184
         return f"{self.name} {self.code}"
185 185
 
186
+
187
+class VendorProduct(GenericModel, models.Model):
188
+    product = models.ForeignKey('Product', on_delete=models.CASCADE)
189
+    vendor = models.ForeignKey('Vendor', on_delete=models.CASCADE)
190
+    price = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=7)
191
+    n_unit = models.DecimalField(blank=True, decimal_places=2, max_digits=7, null=True)
192
+    unit_name = models.CharField(max_length=200, null=True)
193
+
186 194
 class Vendor(GenericModel, models.Model ):
187 195
     name = models.CharField(max_length=200)
188 196
     code = models.CharField(max_length=200)
189 197
     #product_type = TreeForeignKey('ProductType', on_delete=models.SET_NULL, null=True)
190
-    product = models.ForeignKey('Product', on_delete=models.CASCADE)
198
+    #product = models.ForeignKey('Product', on_delete=models.CASCADE)
199
+    #products = models.ManyToManyField('Product',)
191 200
     description = models.TextField(blank=True, null=True)
192 201
     store = models.ForeignKey('Store', on_delete=models.CASCADE, null=True, blank=False)
193 202
     price = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
@@ -211,6 +220,32 @@ class Vendor(GenericModel, models.Model ):
211 220
         return f"{self.name} {self.code}"
212 221
 
213 222
 
223
+class VendorOrder(GenericModel, models.Model):
224
+    vendor = models.ForeignKey('Vendor', on_delete=models.CASCADE,  null=False, blank=False)
225
+    product = ChainedForeignKey(
226
+        "Product",
227
+        chained_field="vendor",
228
+        chained_model_field="vendor",
229
+        show_all=False,
230
+        auto_choose=True,
231
+        null=True
232
+    )
233
+    store = models.ForeignKey('Store', on_delete=models.CASCADE, null=False, blank=False)
234
+
235
+    price = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
236
+    n_unit = models.DecimalField(blank=True, decimal_places=2, max_digits=7, null=True)
237
+    unit_name = models.CharField(max_length=200, null=True)
238
+
239
+    sub_total = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
240
+    vat = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
241
+    total = models.DecimalField(null=True, blank=True, decimal_places=2, max_digits=10)
242
+
243
+    def save(self, *args, **kwargs):
244
+        self.sub_total = self.price * self.n_unit
245
+        self.vat  = self.sub_total * decimal.Decimal(VAT)
246
+        self.total = self.sub_total + self.vat
247
+        super(VendorOrder, self).save(*args, **kwargs)
248
+
214 249
 class ProductSKU(GenericModel, models.Model ):
215 250
     sku = models.CharField(max_length=200)
216 251
     product  = models.ForeignKey('Product', on_delete=models.CASCADE, null=True)

+ 2 - 1
app/fruit/templates/fruit/mystore.html

@@ -22,7 +22,8 @@
22 22
       <a class="nav-link {{ product|yesno:"active," }}" id="v-pills-profile-tab"  href="{% url "fruit:product_index" %}" type="button" role="tab" aria-controls="v-pills-profile" aria-selected="false">Products</a>
23 23
     <a class="nav-link" id="v-pills-messages-tab" href="{% url "fruit:inbox_index" %}" type="button" role="tab" aria-controls="v-pills-messages" aria-selected="false">Inbox</a>
24 24
     <a class="nav-link {{ sale_active|yesno:"active," }}" id="v-pills-settings-tab" href="{% url "fruit:sale_index" %}"  type="button" role="tab" aria-controls="v-pills-settings" aria-selected="false">Saled Items</a>
25
-    <a class="nav-link" id="v-pills-vendor-tab" data-toggle="pill" data-bs-target="#v-pills-vendor" type="button" role="tab" aria-controls="v-pills-vendor" aria-selected="false">Vendors</a>
25
+    <a class="nav-link" id="v-pills-vendor-tab" href="{% url "fruit:vendor_index" %}" type="button" role="tab" aria-controls="v-pills-vendor" aria-selected="false">Vendors</a>
26
+    <a class="nav-link" id="v-pills-vendororder-tab" href="{% url "fruit:vendororder_index" %}" type="button" role="tab" aria-controls="v-pills-vendororder" aria-selected="false">Vendor Order</a>
26 27
   </div>
27 28
   <div class="tab-content p-3 col-md-9 col-lg-10" id="v-pills-tabContent">
28 29
       {% block breadcrumbs %}

+ 2 - 0
app/fruit/templates/fruit/product_form.html

@@ -47,7 +47,9 @@
47 47
     </form>
48 48
     <hr>
49 49
     <h2>SKUs</h2>
50
+    {% if obj %}
50 51
     <a href="{% url "fruit:create_sku" pk=obj.pk %}" class='btn btn-primary'>Create SKU</a><br><br>
52
+    {% endif %}
51 53
 
52 54
 <table class='table table-bordered  table-striped'>
53 55
     <thead>

+ 47 - 0
app/fruit/templates/fruit/vendor_form.html

@@ -0,0 +1,47 @@
1
+{% extends "fruit/vendor_index.html" %}
2
+{% load static %}
3
+{% load crispy_forms_tags %}
4
+{% load django_bootstrap_breadcrumbs %}
5
+
6
+{% block header %}            
7
+{{ form.media  }}
8
+{{ form2.media }}
9
+{% endblock %}
10
+
11
+{% block breadcrumbs %}
12
+    {{ block.super }}
13
+    {% breadcrumb "Vendor Edit" "fruit:vendor_edit" vendor.pk %}
14
+{% endblock %}
15
+
16
+{% block store_main %}
17
+<h2>Vendor Form</h2>
18
+<form  method="post" enctype="multipart/form-data">
19
+    {% csrf_token %}
20
+    {{ form | crispy  }}
21
+    <hr>
22
+    <a href="{% url "fruit:vendorproduct_create" pk=obj.id %}" class='btn btn-primary'>Create Product</a>
23
+    <h2>Products</h2>
24
+    <table class='table table-borded table-striped'>
25
+    <thead>
26
+        <tr>
27
+            <th>ID</th>
28
+            <th>Product</th>
29
+            <th>Created At</th>
30
+        </tr>
31
+    </thead>   
32
+    <tbody>
33
+        {% for p in obj.vendorproduct_set.all %}
34
+        <tr>
35
+            <td><a href="{% url "fruit:vendorproduct_edit" pk=p.id %}">{{ p.id }}</a></td>
36
+            <td>{{ p.product }}</td>
37
+            <td>{{ p.created_at }}</td>
38
+        </tr>
39
+        {% endfor %}
40
+    </tbody>
41
+    </table>
42
+    <br>
43
+    <input type='submit' class='btn btn-primary' value="Update" />
44
+
45
+</form>
46
+
47
+{% endblock %}

+ 52 - 0
app/fruit/templates/fruit/vendor_index.html

@@ -0,0 +1,52 @@
1
+{% extends "fruit/mystore.html" %}
2
+{% load static %}
3
+{% load crispy_forms_tags %}
4
+
5
+{% block header %}            
6
+{% endblock %}
7
+
8
+{% load django_bootstrap_breadcrumbs %}
9
+{% block breadcrumbs %}
10
+    {{ block.super }}
11
+    {% breadcrumb "Vendors" "fruit:vendor_index" %}
12
+{% endblock %}
13
+
14
+{% block store_main %}
15
+
16
+<a  class='btn btn-primary' href="{% url "fruit:vendor_create" %}">Create Vendor</a>
17
+<hr>
18
+<h2>
19
+    Vendor Index</h2>
20
+{% include "fruit/_searchcenter.html" %}
21
+<hr>
22
+<table class='table table-borded table-striped'>
23
+    <thead>
24
+        <tr>
25
+            <th>ID</th>
26
+            <th>Name</th>
27
+            <th>Products</th>
28
+            <th>Price</th>
29
+            <th>Detail</th>
30
+            <th>Tel</th>
31
+            <th>Email</th>
32
+            <th>LineId</th>
33
+            <th>Created At</th></tr>
34
+    </thead>
35
+    <tbody>
36
+{% for p in page_obj %}
37
+        <tr>
38
+            <td><a href="{% url "fruit:vendor_edit" pk=p.pk %}">{{ p.id }}</a></td><td>{{ p.product }}</td>
39
+            <td>{{ p.name }}</td>
40
+            <td>{{ p.products }}</td>
41
+            <td>{{ p.price }}</td>
42
+            <td>{{ p.detail }}</td>
43
+            <td>{{ p.tel }}</td>
44
+            <td>{{ p.email }}</td>
45
+            <td>{{ p.line_id }}</td>
46
+            <td>{{ p.created_at }}</td>
47
+        </tr>
48
+{% endfor %}
49
+    </tbody>
50
+</table>
51
+{% include "fruit/_paging.html" %}
52
+{% endblock %}

+ 25 - 0
app/fruit/templates/fruit/vendororder_form.html

@@ -0,0 +1,25 @@
1
+{% extends "fruit/vendororder_index.html" %}
2
+{% load static %}
3
+{% load crispy_forms_tags %}
4
+{% load django_bootstrap_breadcrumbs %}
5
+
6
+{% block header %}            
7
+{{ form.media  }}
8
+{% endblock %}
9
+
10
+{% block breadcrumbs %}
11
+    {{ block.super }}
12
+    {% breadcrumb "Vendor Order Form" "fruit:vendororder_edit" form.instance.pk %}
13
+{% endblock %}
14
+
15
+{% block store_main %}
16
+<h2>Vendor Order Form</h2>
17
+<form  method="post" enctype="multipart/form-data">
18
+    {% csrf_token %}
19
+    {{ form | crispy  }}
20
+    <br>
21
+    <input type='submit' class='btn btn-primary' value="Update" />
22
+
23
+</form>
24
+
25
+{% endblock %}

+ 47 - 0
app/fruit/templates/fruit/vendororder_index.html

@@ -0,0 +1,47 @@
1
+{% extends "fruit/mystore.html" %}
2
+{% load static %}
3
+{% load crispy_forms_tags %}
4
+
5
+{% block header %}            
6
+{% endblock %}
7
+
8
+{% load django_bootstrap_breadcrumbs %}
9
+{% block breadcrumbs %}
10
+    {{ block.super }}
11
+    {% breadcrumb "Vendor Orders" "fruit:vendororder_index" %}
12
+{% endblock %}
13
+
14
+{% block store_main %}
15
+
16
+<a  class='btn btn-primary' href="{% url "fruit:vendororder_create" %}">Create Vendor Order</a>
17
+<hr>
18
+<h2>
19
+    Vendor Order Index</h2>
20
+{% include "fruit/_searchcenter.html" %}
21
+<hr>
22
+<table class='table table-borded table-striped'>
23
+    <thead>
24
+        <tr>
25
+            <th>ID</th>
26
+            <th>Vendor</th>
27
+            <th>Product</th>
28
+            <th>Price</th>
29
+            <th>Unit</th>
30
+            <th>Total</th>
31
+            <th>Created At</th></tr>
32
+    </thead>
33
+    <tbody>
34
+{% for p in page_obj %}
35
+        <tr>
36
+            <td><a href="{% url "fruit:vendororder_edit" pk=p.pk %}">{{ p.id }}</a></td><td>{{ p.vendor }}</td>
37
+            <td>{{ p.product }}</td>
38
+            <td>{{ p.price }}</td>
39
+            <td>{{ p.unit }}</td>
40
+            <td>{{ p.total }}</td>
41
+            <td>{{ p.created_at }}</td>
42
+        </tr>
43
+{% endfor %}
44
+    </tbody>
45
+</table>
46
+{% include "fruit/_paging.html" %}
47
+{% endblock %}

+ 27 - 0
app/fruit/templates/fruit/vendorproduct_form.html

@@ -0,0 +1,27 @@
1
+{% extends "fruit/vendor_form.html" %}
2
+{% load static %}
3
+{% load crispy_forms_tags %}
4
+{% load django_bootstrap_breadcrumbs %}
5
+
6
+{% block header %}            
7
+{{ form.media  }}
8
+{{ form2.media }}
9
+{% endblock %}
10
+
11
+{% block breadcrumbs %}
12
+    {{ block.super }}
13
+    {% breadcrumb "Vendor Product Form" "fruit:vendorproduct_edit" form.instance.pk %}
14
+{% endblock %}
15
+
16
+{% block store_main %}
17
+<h2>Vendor Product  Form</h2>
18
+<form  method="post" enctype="multipart/form-data">
19
+    {% csrf_token %}
20
+    {{ form | crispy  }}
21
+    <hr>
22
+    <br>
23
+    <input type='submit' class='btn btn-primary' value="Update" />
24
+
25
+</form>
26
+
27
+{% endblock %}

+ 8 - 0
app/fruit/urls.py

@@ -15,6 +15,14 @@ urlpatterns = [
15 15
     path('sales/<pk>', views.sale_edit, name='sale_edit'),
16 16
     path('inbox/', views.inbox_index, name='inbox_index'),
17 17
     path('inbox/<pk>', views.inbox_edit, name='inbox_edit'),
18
+    path('vendor/', views.vendor_index, name='vendor_index'),
19
+    path('vendor/create', views.vendor_create, name='vendor_create'),
20
+    path('vendor/<pk>', views.vendor_edit, name='vendor_edit'),
21
+    path('vendor/<pk>/product/create', views.vendorproduct_create, name='vendorproduct_create'),
22
+    path('vendorproduct/<pk>', views.vendorproduct_edit, name='vendorproduct_edit'),
23
+    path('vendororder/', views.vendororder_index, name='vendororder_index'),
24
+    path('vendororder/create', views.vendororder_create, name='vendororder_create'),
25
+    path('vendororder/<pk>', views.vendororder_edit, name='vendororder_edit'),
18 26
     path('signup', views.signup, name='signup'),
19 27
 ]
20 28
 

+ 228 - 3
app/fruit/views.py

@@ -6,8 +6,9 @@ from django.contrib.auth.forms import UserCreationForm
6 6
 from django.urls import reverse
7 7
 from django.contrib.auth.decorators import login_required
8 8
 
9
-from fruit.models import Store, Product, Photo, ProductSKU, Sale, Inbox
10
-from .forms import StoreForm, ProductForm, InboxForm, SaleForm,  PhotoFormSet, InlinePhotoFormset, ProductSKUForm, ProductFilter, SaleFilter, InboxFilter
9
+from fruit.models import Store, Product, Photo, ProductSKU, Sale, Inbox, Vendor, VendorProduct
10
+
11
+from .forms import StoreForm, ProductForm, InboxForm, SaleForm,  PhotoFormSet,VendorFilter,  InlinePhotoFormset, ProductSKUForm, ProductFilter, SaleFilter, InboxFilter, VendorForm, VendorOrderForm, VendorOrderFilter, VendorOrder, InlineVendorProductFormset, VendorProductForm
11 12
 from django.contrib import messages
12 13
 from django.core.paginator import Paginator
13 14
 
@@ -115,7 +116,7 @@ def create_sku(request, pk):
115 116
             messages.success(request, "Product Save")
116 117
             return redirect("fruit:edit_sku", pk=i.pk)
117 118
         else:
118
-            message.error(request, "SKU  created failed")
119
+            messages.error(request, form.errors)
119 120
             return redirect("fruit:create_sku", pk=int(pk))
120 121
 
121 122
     return render(request, 'fruit/sku_form.html', {'form': form, 'pid': p.pk})
@@ -245,6 +246,230 @@ def inbox_edit(request, pk):
245 246
 
246 247
     return render(request, 'fruit/inbox_form.html', {'inbox_active': True, 'form': form, 'object': obj})
247 248
 
249
+@login_required
250
+def vendor_index(request):
251
+    stores = request.user.store_created.all().order_by("-created_at")
252
+    o_qs = stores[0].vendor_set.all().order_by("-created_at")
253
+
254
+    f = VendorFilter(request.GET, queryset=o_qs)
255
+
256
+    paginator = Paginator(f.qs, 25)
257
+    page_number = request.GET.get('page')
258
+    page_obj = paginator.get_page(page_number)
259
+
260
+    return render(request, 'fruit/vendor_index.html', {'o_qs': o_qs, 'vendor_active': True, 'page_obj': page_obj, 'filter': f})
261
+
262
+@login_required
263
+def vendor_edit(request, pk):
264
+    stores = request.user.store_created.all().order_by("-created_at")
265
+
266
+    obj = Vendor.objects.get(pk=pk)
267
+    form = VendorForm(instance = obj)
268
+    form2 = InlineVendorProductFormset(instance = obj)
269
+    for f in form2:
270
+        f.fields['product'].queryset = stores[0].product_set.all().order_by("-created_at")
271
+
272
+    if request.method == "POST":
273
+        form = VendorForm(request.POST)
274
+        form2 = InlineVendorProductFormset(request.POST, instance = obj)
275
+        if form.is_valid() and form2.is_valid():
276
+            instance1 = form.save()
277
+            instance2 = form2.save(commit=False)
278
+
279
+            for i in instance2:
280
+                i.created_by = request.user
281
+                i.save()
282
+
283
+            '''
284
+            print(instances)
285
+            for s in instances:
286
+                s.product = instance1
287
+                s.save()
288
+            '''
289
+            messages.success(request, "Vendor Save")
290
+        else:
291
+            print("Invalid ")
292
+            if form.errors:
293
+                messages.error(request, form.errors)
294
+            if form2.errors:
295
+                messages.error(request, form2.errors)
296
+
297
+        return redirect("fruit:vendor_edit", pk =  int(pk))
298
+
299
+    return render(request, 'fruit/vendor_form.html', {'vendor_active': True, 'form': form, 'obj': obj, 'form2': form2})
300
+
301
+@login_required
302
+def vendor_create(request):
303
+    stores = request.user.store_created.all().order_by("-created_at")
304
+
305
+    form = VendorForm()
306
+
307
+    form.fields['products'].queryset = stores[0].product_set.all().order_by("-created_at")
308
+
309
+    if request.method == "POST":
310
+        form = VendorForm(request.POST)
311
+        if form.is_valid():
312
+
313
+            instance1 = form.save(commit=False)
314
+            instance1.store = stores[0]
315
+            instance1.created_by = request.user
316
+            instance1.save()
317
+            '''
318
+            print(instances)
319
+            for s in instances:
320
+                s.product = instance1
321
+                s.save()
322
+            '''
323
+            messages.success(request, "Sale Save")
324
+        else:
325
+            print("Invalid ")
326
+            if form.errors:
327
+                messages.error(request, form.errors)
328
+
329
+        return redirect("fruit:vendor_edit", pk =  instance1.pk)
330
+
331
+    return render(request, 'fruit/vendor_form.html', {'vendor_active': True, 'form': form})
332
+
333
+@login_required
334
+def vendorproduct_create(request, pk):
335
+    stores = request.user.store_created.all().order_by("-created_at")
336
+    print(pk)
337
+    vendor = Vendor.objects.get(pk=pk)
338
+
339
+    form = VendorProductForm()
340
+
341
+    form.fields['product'].queryset = stores[0].product_set.all().order_by("-created_at")
342
+
343
+    if request.method == "POST":
344
+        form = VendorProductForm(request.POST)
345
+        if form.is_valid():
346
+
347
+            instance1 = form.save(commit=False)
348
+            instance1.store = stores[0]
349
+            instance1.vendor = vendor
350
+            instance1.created_by = request.user
351
+            instance1.save()
352
+            '''
353
+            print(instances)
354
+            for s in instances:
355
+                s.product = instance1
356
+                s.save()
357
+            '''
358
+            messages.success(request, "Sale Save")
359
+        else:
360
+            print("Invalid ")
361
+            if form.errors:
362
+                messages.error(request, form.errors)
363
+
364
+        return redirect("fruit:vendorproduct_edit", pk =  instance1.pk)
365
+
366
+    return render(request, 'fruit/vendorproduct_form.html', {'vendor_active': True, 'form': form, 'vendor': vendor})
367
+
368
+@login_required
369
+def vendorproduct_edit(request, pk):
370
+    stores = request.user.store_created.all().order_by("-created_at")
371
+
372
+    obj = VendorProduct.objects.get(pk=pk)
373
+    form = VendorProductForm(instance = obj)
374
+    vendor = obj.vendor
375
+
376
+    form.fields['product'].queryset = stores[0].product_set.all().order_by("-created_at")
377
+
378
+    if request.method == "POST":
379
+        form = VendorProductForm(request.POST)
380
+        if form.is_valid():
381
+            instance1 = form.save()
382
+
383
+            '''
384
+            print(instances)
385
+            for s in instances:
386
+                s.product = instance1
387
+                s.save()
388
+            '''
389
+            messages.success(request, "Vendor Product Save")
390
+        else:
391
+            print("Invalid ")
392
+            if form.errors:
393
+                messages.error(request, form.errors)
394
+
395
+        return redirect("fruit:vendorproduct_edit", pk =  int(pk))
396
+
397
+    return render(request, 'fruit/vendorproduct_form.html', {'vendor_active': True, 'form': form, 'obj': obj, 'vendor': vendor})
398
+
399
+#vendor order
400
+@login_required
401
+def vendororder_index(request):
402
+    stores = request.user.store_created.all().order_by("-created_at")
403
+    o_qs = stores[0].vendororder_set.all().order_by("-created_at")
404
+
405
+    f = VendorOrderFilter(request.GET, queryset=o_qs)
406
+
407
+    paginator = Paginator(f.qs, 25)
408
+    page_number = request.GET.get('page')
409
+    page_obj = paginator.get_page(page_number)
410
+
411
+    return render(request, 'fruit/vendororder_index.html', {'o_qs': o_qs, 'vendor_active': True, 'page_obj': page_obj, 'filter': f})
412
+
413
+
414
+@login_required
415
+def vendororder_edit(request, pk):
416
+    stores = request.user.store_created.all().order_by("-created_at")
417
+
418
+    obj = VendorOrder.objects.get(pk=pk)
419
+    form = VendorOrderForm(instance = obj)
420
+
421
+    #form.fields['product'].queryset = stores[0].product_set.all().order_by("-created_at")
422
+
423
+    if request.method == "POST":
424
+        form = VendorOrderForm(request.POST)
425
+        if form.is_valid():
426
+            instance1 = form.save()
427
+            '''
428
+            print(instances)
429
+            for s in instances:
430
+                s.product = instance1
431
+                s.save()
432
+            '''
433
+            messages.success(request, "Sale Save")
434
+        else:
435
+            print("Invalid ")
436
+            if form.errors:
437
+                messages.error(request, form.errors)
438
+
439
+        return redirect("fruit:vendororder_edit", pk =  int(pk))
440
+
441
+    return render(request, 'fruit/vendororder_form.html', {'vendor_active': True, 'form': form, 'object': obj})
442
+
443
+@login_required
444
+def vendororder_create(request):
445
+    stores = request.user.store_created.all().order_by("-created_at")
446
+
447
+    form = VendorOrderForm()
448
+
449
+
450
+    if request.method == "POST":
451
+        form = VendorOrderForm(request.POST)
452
+        if form.is_valid():
453
+
454
+            instance1 = form.save(commit=False)
455
+            instance1.store = stores[0]
456
+            instance1.save()
457
+            '''
458
+            print(instances)
459
+            for s in instances:
460
+                s.product = instance1
461
+                s.save()
462
+            '''
463
+            messages.success(request, "Vendor Order Save")
464
+            return redirect("fruit:vendororder_edit", pk =  instance1.pk)
465
+        else:
466
+            print("Invalid ")
467
+            if form.errors:
468
+                messages.error(request, form.errors)
469
+
470
+
471
+    return render(request, 'fruit/vendororder_form.html', {'vendororder_active': True, 'form': form})
472
+
248 473
 def signup(request):
249 474
     if request.method == 'POST':
250 475
         form = UserCreationForm(request.POST)

tum/fm99-app-rev - Gogs: Simplico Git Service

Нема описа

gradlew 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. #!/bin/sh
  2. #
  3. # Copyright © 2015-2021 the original authors.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # https://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. ##############################################################################
  18. #
  19. # Gradle start up script for POSIX generated by Gradle.
  20. #
  21. # Important for running:
  22. #
  23. # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
  24. # noncompliant, but you have some other compliant shell such as ksh or
  25. # bash, then to run this script, type that shell name before the whole
  26. # command line, like:
  27. #
  28. # ksh Gradle
  29. #
  30. # Busybox and similar reduced shells will NOT work, because this script
  31. # requires all of these POSIX shell features:
  32. # * functions;
  33. # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
  34. # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
  35. # * compound commands having a testable exit status, especially «case»;
  36. # * various built-in commands including «command», «set», and «ulimit».
  37. #
  38. # Important for patching:
  39. #
  40. # (2) This script targets any POSIX shell, so it avoids extensions provided
  41. # by Bash, Ksh, etc; in particular arrays are avoided.
  42. #
  43. # The "traditional" practice of packing multiple parameters into a
  44. # space-separated string is a well documented source of bugs and security
  45. # problems, so this is (mostly) avoided, by progressively accumulating
  46. # options in "$@", and eventually passing that to Java.
  47. #
  48. # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
  49. # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
  50. # see the in-line comments for details.
  51. #
  52. # There are tweaks for specific operating systems such as AIX, CygWin,
  53. # Darwin, MinGW, and NonStop.
  54. #
  55. # (3) This script is generated from the Groovy template
  56. # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
  57. # within the Gradle project.
  58. #
  59. # You can find Gradle at https://github.com/gradle/gradle/.
  60. #
  61. ##############################################################################
  62. # Attempt to set APP_HOME
  63. # Resolve links: $0 may be a link
  64. app_path=$0
  65. # Need this for daisy-chained symlinks.
  66. while
  67. APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
  68. [ -h "$app_path" ]
  69. do
  70. ls=$( ls -ld "$app_path" )
  71. link=${ls#*' -> '}
  72. case $link in #(
  73. /*) app_path=$link ;; #(
  74. *) app_path=$APP_HOME$link ;;
  75. esac
  76. done
  77. APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
  78. APP_NAME="Gradle"
  79. APP_BASE_NAME=${0##*/}
  80. # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
  81. DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
  82. # Use the maximum available, or set MAX_FD != -1 to use that value.
  83. MAX_FD=maximum
  84. warn () {
  85. echo "$*"
  86. } >&2
  87. die () {
  88. echo
  89. echo "$*"
  90. echo
  91. exit 1
  92. } >&2
  93. # OS specific support (must be 'true' or 'false').
  94. cygwin=false
  95. msys=false
  96. darwin=false
  97. nonstop=false
  98. case "$( uname )" in #(
  99. CYGWIN* ) cygwin=true ;; #(
  100. Darwin* ) darwin=true ;; #(
  101. MSYS* | MINGW* ) msys=true ;; #(
  102. NONSTOP* ) nonstop=true ;;
  103. esac
  104. CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
  105. # Determine the Java command to use to start the JVM.
  106. if [ -n "$JAVA_HOME" ] ; then
  107. if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
  108. # IBM's JDK on AIX uses strange locations for the executables
  109. JAVACMD=$JAVA_HOME/jre/sh/java
  110. else
  111. JAVACMD=$JAVA_HOME/bin/java
  112. fi
  113. if [ ! -x "$JAVACMD" ] ; then
  114. die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
  115. Please set the JAVA_HOME variable in your environment to match the
  116. location of your Java installation."
  117. fi
  118. else
  119. JAVACMD=java
  120. which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
  121. Please set the JAVA_HOME variable in your environment to match the
  122. location of your Java installation."
  123. fi
  124. # Increase the maximum file descriptors if we can.
  125. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
  126. case $MAX_FD in #(
  127. max*)
  128. MAX_FD=$( ulimit -H -n ) ||
  129. warn "Could not query maximum file descriptor limit"
  130. esac
  131. case $MAX_FD in #(
  132. '' | soft) :;; #(
  133. *)
  134. ulimit -n "$MAX_FD" ||
  135. warn "Could not set maximum file descriptor limit to $MAX_FD"
  136. esac
  137. fi
  138. # Collect all arguments for the java command, stacking in reverse order:
  139. # * args from the command line
  140. # * the main class name
  141. # * -classpath
  142. # * -D...appname settings
  143. # * --module-path (only if needed)
  144. # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
  145. # For Cygwin or MSYS, switch paths to Windows format before running java
  146. if "$cygwin" || "$msys" ; then
  147. APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
  148. CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
  149. JAVACMD=$( cygpath --unix "$JAVACMD" )
  150. # Now convert the arguments - kludge to limit ourselves to /bin/sh
  151. for arg do
  152. if
  153. case $arg in #(
  154. -*) false ;; # don't mess with options #(
  155. /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
  156. [ -e "$t" ] ;; #(
  157. *) false ;;
  158. esac
  159. then
  160. arg=$( cygpath --path --ignore --mixed "$arg" )
  161. fi
  162. # Roll the args list around exactly as many times as the number of
  163. # args, so each arg winds up back in the position where it started, but
  164. # possibly modified.
  165. #
  166. # NB: a `for` loop captures its iteration list before it begins, so
  167. # changing the positional parameters here affects neither the number of
  168. # iterations, nor the values presented in `arg`.
  169. shift # remove old arg
  170. set -- "$@" "$arg" # push replacement arg
  171. done
  172. fi
  173. # Collect all arguments for the java command;
  174. # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
  175. # shell script including quotes and variable substitutions, so put them in
  176. # double quotes to make sure that they get re-expanded; and
  177. # * put everything else in single quotes, so that it's not re-expanded.
  178. set -- \
  179. "-Dorg.gradle.appname=$APP_BASE_NAME" \
  180. -classpath "$CLASSPATH" \
  181. org.gradle.wrapper.GradleWrapperMain \
  182. "$@"
  183. # Use "xargs" to parse quoted args.
  184. #
  185. # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
  186. #
  187. # In Bash we could simply go:
  188. #
  189. # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
  190. # set -- "${ARGS[@]}" "$@"
  191. #
  192. # but POSIX shell has neither arrays nor command substitution, so instead we
  193. # post-process each arg (as a line of input to sed) to backslash-escape any
  194. # character that might be a shell metacharacter, then use eval to reverse
  195. # that process (while maintaining the separation between arguments), and wrap
  196. # the whole thing up as a single "set" statement.
  197. #
  198. # This will of course break if any of these variables contains a newline or
  199. # an unmatched quote.
  200. #
  201. eval "set -- $(
  202. printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
  203. xargs -n1 |
  204. sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
  205. tr '\n' ' '
  206. )" '"$@"'
  207. exec "$JAVACMD" "$@"