예제 #1
0
 def test_35api_78dk_platform_cm_base_clear_deleteClearingAccount(self):
     # 删除结算信息
     # 新建结算信息
     sql = 'name="' + channelname2 + '" and state ="enabled"'
     channelid1 = MysqlClent.select_one(loginAction.DB,
                                        'Tbl_ChannelProfile',
                                        'channel_uuid', sql)
     PlatformAction.test_api_78dk_platform_cm_base_clear_saveClearingAccount(
         accountname=namecount2,
         accountnumber='6011826564542944',
         accountopeningbank='农业银行',
         accounttype='public_accounts',
         branchname='支行名称',
         chamberlainidcard='431081199812097872',
         channelormerchantuuid=channelid1,
         city='510100',
         clearingaccountuuid='',
         linenumber='6756765756',
         phone='15179366892',
         province='510000',
         region='510101')
     sql = 'account_name="' + namecount2 + '" and state ="enabled"'
     clearing_account_uuid = MysqlClent.select_one(loginAction.DB,
                                                   'Tbl_ClearingAccount',
                                                   'clearing_account_uuid',
                                                   sql)
     #  删除结算信息
     res = PlatformAction.test_api_78dk_platform_cm_base_clear_deleteClearingAccount(
         clearing_account_uuid)
     Assertion.verity(json.loads(res)['code'], '10000')
예제 #2
0
def channel(channelname, accountname, LegalPerson_name, business_email):
    channelid = saveChannel(channelname)
    # 审核通过
    # sql = 'name="' + channelname + '" and state ="enabled"'
    # channelid = MysqlClent.select_one(loginAction.DB, 'Tbl_ChannelProfile', 'channel_uuid', sql)
    PlatformAction.test_api_78dk_platform_cm_examine_examine(isadopt='true',
                                                             uid=channelid,
                                                             message='通过')
    # 添加结算信息
    PlatformAction.test_api_78dk_platform_cm_base_clear_saveClearingAccount(
        accountname=accountname,
        accountnumber='6011826564542944',
        accountopeningbank='农业银行',
        accounttype='public_accounts',
        branchname='支行名称',
        chamberlainidcard='431081199812097872',
        channelormerchantuuid=channelid,
        city='510100',
        clearingaccountuuid='',
        linenumber='6756765756',
        phone='15179366892',
        province='510000',
        region='510101')
    # 添加法人
    PlatformAction.test_api_78dk_platform_cm_base_legal_saveLegalPerson(
        cardnumber='510903199909098900',
        channelormerchantuuid=channelid,
        legalpersonuuid='',
        mobile='18909890989',
        name=LegalPerson_name)
    # 添加机构信息
    PlatformAction.test_api_78dk_platform_cm_base_business_saveBusinessInfor(
        businessaddress='天府软件园',
        businessaddressgpsloction='天府软件园GPS地址',
        businessaddresszipcode='000000',
        businesshoursendtime='18:30',
        businesshoursstarttime='08:30',
        businessinformationuuid=channelid,
        businessregistrationnumber='443534534543',
        channelormerchantuuid=channelid,
        documentaddress='天府软件园',
        email=business_email,
        organizationcode='567657675765',
        socialunifiedcreditcode='34534543534',
        storerentalendtime='2019-01-12',
        storerentalstarttime='2018-01-12',
        taxregistrationnumber='34543543543',
        documentprovince=510000,
        documentcity=510100,
        documentregion=510104,
        documentprovincename='',
        documentcityname='',
        documentregionname='',
        businessprovince=510000,
        businesscity=510100,
        businessregion=510104,
        businessprovincename='',
        businesscityname='',
        businessregionname='')
    return channelname