|
@@ -20,8 +20,8 @@ class ContractServer:
|
|
|
async def list_all_paged(self, page: int, page_size: int = 10):
|
|
async def list_all_paged(self, page: int, page_size: int = 10):
|
|
|
return await self.esign_repo.get_all_paged(page, page_size)
|
|
return await self.esign_repo.get_all_paged(page, page_size)
|
|
|
|
|
|
|
|
- async def mark_signed_by_phone(self, contact_phone: str, sign_flow_id: str, signing_time):
|
|
|
|
|
- return await self.esign_repo.mark_signed_by_phone(contact_phone, sign_flow_id, signing_time)
|
|
|
|
|
|
|
+ async def mark_signed_by_phone(self, contact_phone: str, sign_flow_id: str, signing_time, contract_download_url):
|
|
|
|
|
+ return await self.esign_repo.mark_signed_by_phone(contact_phone, sign_flow_id, signing_time, contract_download_url)
|
|
|
|
|
|
|
|
async def update_sign_url(self, contact_phone: str, sign_flow_id: str, sign_url: str):
|
|
async def update_sign_url(self, contact_phone: str, sign_flow_id: str, sign_url: str):
|
|
|
return await self.esign_repo.update_sign_url(contact_phone, sign_flow_id, sign_url)
|
|
return await self.esign_repo.update_sign_url(contact_phone, sign_flow_id, sign_url)
|