aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/repairs.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@230.to>2013-05-26 20:52:59 +0300
committerFilipp Lepalaan <f@230.to>2013-05-26 20:53:05 +0300
commit41d8ee6ab7968fab364eee6ca21784c36d796d8b (patch)
treee2c08c641dd229054fac4b49192e0be3946d2430 /gsxws/repairs.py
parentdb1bf1ed7e4681dd70f6ad646abb0bd3b3773207 (diff)
downloadpy-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.tar.gz
py-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.tar.bz2
py-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.zip
Added create() to IndirectOnsiteRepair
Diffstat (limited to 'gsxws/repairs.py')
-rw-r--r--gsxws/repairs.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/gsxws/repairs.py b/gsxws/repairs.py
index c04c79f..bff9c50 100644
--- a/gsxws/repairs.py
+++ b/gsxws/repairs.py
@@ -236,7 +236,12 @@ class IndirectOnsiteRepair(Repair):
Once the repair is submitted, it is assigned a confirmation number,
which is a reference number to identify the repair.
"""
- pass
+
+ _namespace = "asp:"
+
+ def create(self):
+ return self._submit("repairData", "CreateIndirectOnsiteRepair",
+ "repairConfirmation")
if __name__ == '__main__':