diff options
author | Filipp Lepalaan <f@230.to> | 2013-05-26 20:52:59 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-05-26 20:53:05 +0300 |
commit | 41d8ee6ab7968fab364eee6ca21784c36d796d8b (patch) | |
tree | e2c08c641dd229054fac4b49192e0be3946d2430 | |
parent | db1bf1ed7e4681dd70f6ad646abb0bd3b3773207 (diff) | |
download | py-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.tar.gz py-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.tar.bz2 py-gsxws-41d8ee6ab7968fab364eee6ca21784c36d796d8b.zip |
Added create() to IndirectOnsiteRepair
-rw-r--r-- | gsxws/repairs.py | 7 |
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__': |