diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-10-16 13:03:50 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-10-16 13:03:50 +0300 |
commit | a7bed71c6431342ceb0503171eaab26c119f2223 (patch) | |
tree | 6b7e8b0c5a879def42e4e1c6ef09efb97749d586 /servo/management | |
parent | 7ed178e0ba678af813750c603c1636be1376f770 (diff) | |
download | Servo-a7bed71c6431342ceb0503171eaab26c119f2223.tar.gz Servo-a7bed71c6431342ceb0503171eaab26c119f2223.tar.bz2 Servo-a7bed71c6431342ceb0503171eaab26c119f2223.zip |
Cleanup
Diffstat (limited to 'servo/management')
-rw-r--r-- | servo/management/commands/updatecomponents.py | 44 | ||||
-rw-r--r-- | servo/management/commands/updaterepairs.py | 24 |
2 files changed, 0 insertions, 68 deletions
diff --git a/servo/management/commands/updatecomponents.py b/servo/management/commands/updatecomponents.py deleted file mode 100644 index 75b6de5..0000000 --- a/servo/management/commands/updatecomponents.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (c) 2013, First Party Software -# All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. - -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. - -from django.core.management.base import BaseCommand - -from servo.models import User, GsxAccount, Product, ServicePart - - -class Command(BaseCommand): - help = "Update missing component codes" - - def handle(self, *args, **options): - u = User.objects.get(username='filipp') - GsxAccount.default(u) - for p in Product.objects.filter(component_code='').exclude(labour_tier=''): - try: - info = ServicePart(part_number=p.code).lookup() - p.component_code = info.componentCode.strip() - p.save() - except Exception, e: - print e diff --git a/servo/management/commands/updaterepairs.py b/servo/management/commands/updaterepairs.py index 4eb1b58..b055f1c 100644 --- a/servo/management/commands/updaterepairs.py +++ b/servo/management/commands/updaterepairs.py @@ -1,28 +1,4 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2013, First Party Software -# All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. - -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. from django.core.management.base import BaseCommand |