居转户1

A.
城镇社会保险基数高于本市上年度职工平均工资2倍以上  三年 2009 2008 2007


2009年度职工平均工资 42789元 3566元  9640
2008年度职工平均工资 39502元 3292元  8670
2007年度职工平均工资 34707元 2892元
2006年度职工平均工资 29569元 2464元

计税薪酬收入高于上年同行业中级技术、技能或管理岗位年均薪酬收入水平的,

B.
到人力资源和社会保障部门领取并填写《居住证持有人办理本市常住户口申请表》,由用人单位负责向人力资源

和社会保障部门申报。

C.
第八条(申请材料)
    符合第五条规定的持证人员申办本市常住户口的,应当提交下列材料:
    (一)有效身份证明和《居住证持有人办理本市常住户口申请表》; not ok
    (二)参加本市城镇社会保险的证明;  not ok
    (三)本市区、县以上税务机关出具的个人所得税或企业纳税完税证明.
     2006年后 有2008年的

    (四)专业技术职务、职业资格证明及相关聘用(劳动)合同证明;not ok

(十一)办法第八条第(四)项所称“专业技术职务、职业资格证明”,是指下列材料之一:通过考试、评审取得

的中级及以上专业技术职务任职资格证书及聘任证书;经批准,通过以聘代评的方式取得中级及以上专业技术职

务任职资格的,提供单位的聘书;本市颁发的国家二级及以上职业资格证书,或者由外省市核发且通过本市考核

复评的国家二级及以上职业资格证书;经认可由相关部门颁发的职业资格证书。


提供单位的聘书?


    (五)现居住地计划生育证明及无违法犯罪记录证明;

(十二)办法第八条第(五)项所称“现居住地计划生育证明及无违法犯罪记录证明”,是指居住地乡镇人民政府、

街道办事处依据户籍地乡镇以上人口计生部门有关证明出具的符合国家计划生育政策的证明。现居住地和户籍所

在地公安部门出具的无治安处罚以上违法犯罪记录的证明,以及其他需要的相关证明。


(十七)办法第十二条所称“未成年子女可以随迁”,是指16周岁以下的未成年子女以及16周岁以上、在普通高中

就读的子女可以随迁;未成年子女随迁的,提供出生医学证明、《独生子女父母光荣证》或者户籍所在地出具的

计划生育证明。16周岁以上的普通高中在校生随迁的,另需提供学籍证明。


乡镇以上人口计生部门有关证明出具的符合国家计划生育政策的证明。
现居住地和户籍所在地公安部门出具的无治安处罚以上违法犯罪记录的证明
《独生子女父母光荣证》或者户籍所在地出具的计划生育证明



    (六)本人的或者同意接受落户的单位、亲属的房屋所有权证或者租用公房凭证; ok
    (七)相关部门要求提供的其他必要的证明材料。
在本市取得的高级专业技术职务任职资格证书和聘书
    符合第六条规定的持证人员,申请优先办理本市常住户口的,还应当提交相应的证明材料。


D.
http://218.242.131.171/

E.
专业技术职务 以聘代评

F.
职业资格
填写内容与职业资格证书内容相一致 没有是不是不填

劳保咨询:12333 医保咨询:962218 人事咨询:64378292


G.
居转户受理网点地址

浦东新区人才交流中心 浦东张杨路1996号(近苗圃路口) 58603333
             张江路39号(张江行政服务中心) 50797157

 

主办单位:上海市人力资源和社会保障局 地址:上海市天山路1800号 电话:86-21-62748577 邮编:200051
劳保咨询:12333 医保咨询:962218 人事咨询:64378292

<think>题目要求:游览业代收转户。根据字面意思,这可能是与旅游行业相关的代收款项和转账业务。但问题描述不够清晰,我推测可能是需要实现一个旅游行业的代收转户系统。由于没有具体需求,我将基于常见场景设计一个简单的代收转户系统。 假设场景: 1. 旅行社作为中间商,代收客户的旅游款项,然后转给旅游服务提供商(如酒店、航空公司等)。 2. 系统需要记录代收款项和转出款项,并管理相关账户。 功能需求: - 账户管理:包括客户账户、旅行社账户、服务提供商账户。 - 代收操作:记录从客户那里代收的款项。 - 转户操作:将代收的款项转给服务提供商。 - 查询功能:查询账户余额和交易记录。 设计思路: 1. 账户类(Account):包含账户ID、账户名、余额。 2. 交易记录类(Transaction):包含交易ID、交易类型(代收/转户)、金额、时间、关联账户等。 3. 系统类(TourismSystem):管理账户和交易,提供代收、转户、查询等功能。 由于时间有限,我们简化设计,只实现核心功能。 代码实现: ```python import datetime class Account: """账户类""" def __init__(self, account_id, name, balance=0.0): self.account_id = account_id self.name = name self.balance = balance def deposit(self, amount): """存款(代收)""" if amount <= 0: raise ValueError("存款金额必须为正数") self.balance += amount return self.balance def withdraw(self, amount): """取款(转出)""" if amount <= 0: raise ValueError("取款金额必须为正数") if amount > self.balance: raise ValueError("余额不足") self.balance -= amount return self.balance class Transaction: """交易记录类""" def __init__(self, transaction_id, transaction_type, amount, from_account=None, to_account=None): self.transaction_id = transaction_id self.type = transaction_type # '代收' 或 '转户' self.amount = amount self.from_account = from_account # 代收时,from_account是客户账户;转户时,from_account是旅行社账户 self.to_account = to_account # 代收时,to_account是旅行社账户;转户时,to_account是服务提供商账户 self.timestamp = datetime.datetime.now() def __str__(self): return f"交易ID: {self.transaction_id}, 类型: {self.type}, 金额: {self.amount}, 时间: {self.timestamp}" class TourismSystem: """旅游代收转户系统""" def __init__(self): self.accounts = {} # 账户ID到账户对象的映射 self.transactions = [] # 交易记录列表 self.transaction_counter = 1 # 交易ID计数器 def add_account(self, account_id, name, initial_balance=0.0): """添加账户""" if account_id in self.accounts: raise ValueError("账户ID已存在") self.accounts[account_id] = Account(account_id, name, initial_balance) return self.accounts[account_id] def get_account(self, account_id): """获取账户""" if account_id not in self.accounts: raise ValueError("账户不存在") return self.accounts[account_id] def collect_money(self, customer_account_id, travel_agency_account_id, amount): """代收操作:从客户账户收款到旅行社账户""" # 检查账户是否存在 customer_account = self.get_account(customer_account_id) travel_agency_account = self.get_account(travel_agency_account_id) # 客户账户扣款(这里假设客户账户有足够的钱,实际中可能需要检查) customer_account.withdraw(amount) # 旅行社账户收款 travel_agency_account.deposit(amount) # 记录交易 transaction = Transaction( transaction_id=self.transaction_counter, transaction_type='代收', amount=amount, from_account=customer_account_id, to_account=travel_agency_account_id ) self.transactions.append(transaction) self.transaction_counter += 1 return transaction def transfer_money(self, travel_agency_account_id, provider_account_id, amount): """转户操作:从旅行社账户转账给服务提供商账户""" # 检查账户 travel_agency_account = self.get_account(travel_agency_account_id) provider_account = self.get_account(provider_account_id) # 旅行社账户扣款 travel_agency_account.withdraw(amount) # 服务提供商账户收款 provider_account.deposit(amount) transaction = Transaction( transaction_id=self.transaction_counter, transaction_type='转户', amount=amount, from_account=travel_agency_account_id, to_account=provider_account_id ) self.transactions.append(transaction) self.transaction_counter += 1 return transaction def get_account_balance(self, account_id): """查询账户余额""" account = self.get_account(account_id) return account.balance def get_transactions(self, account_id=None): """查询交易记录,可以按账户ID过滤""" if account_id is None: return self.transactions else: # 返回与该账户相关的交易记录 result = [] for t in self.transactions: if t.from_account == account_id or t.to_account == account_id: result.append(t) return result # 示例使用 if __name__ == "__main__": system = TourismSystem() # 添加账户 system.add_account("c001", "客户张三", 10000.0) system.add_account("t001", "旅行社", 0.0) system.add_account("p001", "航空公司", 0.0) # 代收操作:客户支付5000元给旅行社 system.collect_money("c001", "t001", 5000.0) # 转户操作:旅行社转3000元给航空公司 system.transfer_money("t001", "p001", 3000.0) # 查询余额 print("客户张三余额:", system.get_account_balance("c001")) print("旅行社余额:", system.get_account_balance("t001")) print("航空公司余额:", system.get_account_balance("p001")) # 查询旅行社的交易记录 print("\n旅行社交易记录:") for t in system.get_transactions("t001"): print(t) ``` ### 代码说明: 1. **Account类**:表示一个账户,有存款和取款方法。 2. **Transaction类**:记录每一笔交易的详细信息。 3. **TourismSystem类**:核心系统,提供: - 账户管理 - 代收操作(从客户收款到旅行社) - 转户操作(从旅行社转账给服务提供商) - 查询余额和交易记录 ### 示例流程: 1. 创建系统实例。 2. 添加客户账户(初始余额10000)、旅行社账户(初始0)、航空公司账户(初始0)。 3. 代收:客户支付5000给旅行社。 4. 转户:旅行社转3000给航空公司。 5. 查询各账户余额,并打印旅行社的交易记录。 ### 注意事项: - 实际应用中,代收操作前应检查客户余额是否充足。 - 交易记录可以扩展更多字段。 - 账户管理可以增加删除、修改等功能。 - 可以增加异常处理,使系统更健壮。 §§相关问题§§: 1. 如何扩展此系统以支持多币种交易? 2. 如何实现交易手续费的计算? 3. 如何将交易记录持久化存储到数据库? 4. 如何设计一个Web界面来操作此系统?</think># 游览业代收转户系统实现 下面我将设计一个游览业代收转户系统,用于管理旅游行业的代收款项和转账业务。这个系统将包含账户管理、代收记录、转账操作和交易查询等功能。 ```python import datetime import json import os class Account: """账户类,表示旅行社或供应商账户""" def __init__(self, account_id, name, account_type, balance=0.0): self.account_id = account_id self.name = name self.account_type = account_type # 'agency'旅行社或'supplier'供应商 self.balance = balance self.transactions = [] def deposit(self, amount, description): """存款操作""" if amount <= 0: raise ValueError("存款金额必须大于0") self.balance += amount transaction = { 'type': 'deposit', 'amount': amount, 'description': description, 'timestamp': datetime.datetime.now().isoformat(), 'balance_after': self.balance } self.transactions.append(transaction) return transaction def withdraw(self, amount, description): """取款操作""" if amount <= 0: raise ValueError("取款金额必须大于0") if amount > self.balance: raise ValueError("余额不足") self.balance -= amount transaction = { 'type': 'withdraw', 'amount': amount, 'description': description, 'timestamp': datetime.datetime.now().isoformat(), 'balance_after': self.balance } self.transactions.append(transaction) return transaction def transfer_to(self, target_account, amount, description): """转账到另一个账户""" if amount <= 0: raise ValueError("转账金额必须大于0") if amount > self.balance: raise ValueError("余额不足") # 从当前账户扣除 self.balance -= amount withdraw_tx = { 'type': 'transfer_out', 'amount': amount, 'description': f"转账给 {target_account.name} - {description}", 'timestamp': datetime.datetime.now().isoformat(), 'balance_after': self.balance, 'target_account': target_account.account_id } self.transactions.append(withdraw_tx) # 向目标账户添加 target_account.balance += amount deposit_tx = { 'type': 'transfer_in', 'amount': amount, 'description': f"{self.name} 转账 - {description}", 'timestamp': datetime.datetime.now().isoformat(), 'balance_after': target_account.balance, 'source_account': self.account_id } target_account.transactions.append(deposit_tx) return withdraw_tx, deposit_tx def to_dict(self): """将账户对象转换为字典""" return { 'account_id': self.account_id, 'name': self.name, 'account_type': self.account_type, 'balance': self.balance, 'transactions': self.transactions } @classmethod def from_dict(cls, data): """从字典创建账户对象""" account = cls( account_id=data['account_id'], name=data['name'], account_type=data['account_type'], balance=data['balance'] ) account.transactions = data.get('transactions', []) return account class CollectionRecord: """代收记录类""" def __init__(self, record_id, customer_name, amount, collection_date, description): self.record_id = record_id self.customer_name = customer_name self.amount = amount self.collection_date = collection_date self.description = description self.status = 'pending' # pending, transferred, cancelled self.transfer_records = [] def mark_transferred(self, transfer_details): """标记为已转账""" self.status = 'transferred' self.transfer_records.append(transfer_details) def to_dict(self): """将代收记录转换为字典""" return { 'record_id': self.record_id, 'customer_name': self.customer_name, 'amount': self.amount, 'collection_date': self.collection_date, 'description': self.description, 'status': self.status, 'transfer_records': self.transfer_records } @classmethod def from_dict(cls, data): """从字典创建代收记录对象""" record = cls( record_id=data['record_id'], customer_name=data['customer_name'], amount=data['amount'], collection_date=data['collection_date'], description=data['description'] ) record.status = data.get('status', 'pending') record.transfer_records = data.get('transfer_records', []) return record class TourismCollectionSystem: """游览业代收转户系统""" def __init__(self): self.accounts = {} # account_id: Account self.collection_records = {} # record_id: CollectionRecord self.next_account_id = 1 self.next_record_id = 1 def add_account(self, name, account_type, initial_balance=0.0): """添加新账户""" account_id = f"ACC{self.next_account_id:04d}" account = Account(account_id, name, account_type, initial_balance) self.accounts[account_id] = account self.next_account_id += 1 return account def record_collection(self, customer_name, amount, description): """记录代收款项""" record_id = f"COL{self.next_record_id:04d}" collection_date = datetime.datetime.now().isoformat() record = CollectionRecord( record_id=record_id, customer_name=customer_name, amount=amount, collection_date=collection_date, description=description ) self.collection_records[record_id] = record self.next_record_id += 1 return record def transfer_funds(self, from_account_id, to_account_id, amount, description, collection_record_id=None): """执行转账操作""" if from_account_id not in self.accounts: raise ValueError(f"账户 {from_account_id} 不存在") if to_account_id not in self.accounts: raise ValueError(f"账户 {to_account_id} 不存在") from_account = self.accounts[from_account_id] to_account = self.accounts[to_account_id] # 执行转账 withdraw_tx, deposit_tx = from_account.transfer_to(to_account, amount, description) # 如果关联了代收记录,更新记录状态 if collection_record_id: if collection_record_id in self.collection_records: record = self.collection_records[collection_record_id] transfer_details = { 'from_account': from_account_id, 'to_account': to_account_id, 'amount': amount, 'description': description, 'timestamp': datetime.datetime.now().isoformat() } record.mark_transferred(transfer_details) return withdraw_tx, deposit_tx def get_account_balance(self, account_id): """获取账户余额""" if account_id not in self.accounts: raise ValueError(f"账户 {account_id} 不存在") return self.accounts[account_id].balance def get_account_transactions(self, account_id): """获取账户交易记录""" if account_id not in self.accounts: raise ValueError(f"账户 {account_id} 不存在") return self.accounts[account_id].transactions def get_pending_collections(self): """获取待处理的代收记录""" return [record for record in self.collection_records.values() if record.status == 'pending'] def save_to_file(self, filename): """保存系统数据到文件""" data = { 'accounts': {acc_id: acc.to_dict() for acc_id, acc in self.accounts.items()}, 'collection_records': {rec_id: rec.to_dict() for rec_id, rec in self.collection_records.items()}, 'next_account_id': self.next_account_id, 'next_record_id': self.next_record_id } with open(filename, 'w') as f: json.dump(data, f, indent=2) def load_from_file(self, filename): """从文件加载系统数据""" if not os.path.exists(filename): return False with open(filename) as f: data = json.load(f) self.accounts = { acc_id: Account.from_dict(acc_data) for acc_id, acc_data in data['accounts'].items() } self.collection_records = { rec_id: CollectionRecord.from_dict(rec_data) for rec_id, rec_data in data['collection_records'].items() } self.next_account_id = data['next_account_id'] self.next_record_id = data['next_record_id'] return True def main_menu(): """系统主菜单""" print("\n" + "="*50) print("游览业代收转户管理系统") print("="*50) print("1. 添加账户") print("2. 记录代收款项") print("3. 执行转账操作") print("4. 查看账户余额") print("5. 查看账户交易记录") print("6. 查看待处理代收记录") print("7. 查看所有账户") print("8. 保存数据") print("9. 加载数据") print("0. 退出系统") print("="*50) choice = input("请选择操作: ").strip() return choice def main(): system = TourismCollectionSystem() # 尝试加载上次保存的数据 if os.path.exists("tourism_data.json"): system.load_from_file("tourism_data.json") print("已加载上次保存的数据") while True: choice = main_menu() if choice == '1': # 添加账户 name = input("账户名称: ") account_type = input("账户类型 (agency/supplier): ") initial_balance = float(input("初始余额: ")) account = system.add_account(name, account_type, initial_balance) print(f"成功添加账户: {account.account_id} - {name}") elif choice == '2': # 记录代收款项 customer_name = input("客户姓名: ") amount = float(input("代收金额: ")) description = input("代收说明: ") record = system.record_collection(customer_name, amount, description) print(f"已记录代收: {record.record_id} - {customer_name} - ¥{amount:.2f}") elif choice == '3': # 执行转账操作 from_account_id = input("转出账户ID: ") to_account_id = input("转入账户ID: ") amount = float(input("转账金额: ")) description = input("转账说明: ") collection_record_id = input("关联代收记录ID (可选,直接回车跳过): ") or None try: withdraw_tx, deposit_tx = system.transfer_funds( from_account_id, to_account_id, amount, description, collection_record_id ) print(f"转账成功! 转出账户余额: ¥{withdraw_tx['balance_after']:.2f}") print(f"转入账户余额: ¥{deposit_tx['balance_after']:.2f}") except ValueError as e: print(f"转账失败: {str(e)}") elif choice == '4': # 查看账户余额 account_id = input("账户ID: ") try: balance = system.get_account_balance(account_id) account = system.accounts[account_id] print(f"账户 {account_id} ({account.name}) 余额: ¥{balance:.2f}") except ValueError as e: print(str(e)) elif choice == '5': # 查看账户交易记录 account_id = input("账户ID: ") try: transactions = system.get_account_transactions(account_id) account = system.accounts[account_id] print(f"\n{account.name} ({account_id}) 交易记录:") print("-" * 80) for tx in transactions: print(f"{tx['timestamp'][:19]} | {tx['type']:10} | ¥{tx['amount']:10.2f} | 余额: ¥{tx['balance_after']:.2f}") print(f"说明: {tx['description']}") print("-" * 80) except ValueError as e: print(str(e)) elif choice == '6': # 查看待处理代收记录 pending = system.get_pending_collections() if not pending: print("没有待处理的代收记录") else: print("\n待处理代收记录:") print("-" * 80) for record in pending: print(f"记录ID: {record.record_id}") print(f"客户: {record.customer_name}") print(f"金额: ¥{record.amount:.2f}") print(f"日期: {record.collection_date[:10]}") print(f"说明: {record.description}") print("-" * 80) elif choice == '7': # 查看所有账户 print("\n所有账户:") print("-" * 80) for account_id, account in system.accounts.items(): print(f"{account_id} | {account.name:20} | {account.account_type:8} | 余额: ¥{account.balance:.2f}") print("-" * 80) elif choice == '8': # 保存数据 system.save_to_file("tourism_data.json") print("数据已保存到 tourism_data.json") elif choice == '9': # 加载数据 if system.load_from_file("tourism_data.json"): print("数据加载成功") else: print("数据文件不存在") elif choice == '0': # 退出系统 save = input("是否保存数据? (y/n): ").lower() if save == 'y': system.save_to_file("tourism_data.json") print("数据已保存") print("感谢使用游览业代收转户管理系统,再见!") break else: print("无效的选项,请重新输入") if __name__ == "__main__": main() ``` ## 系统功能说明 ### 核心类设计 1. **Account类**:表示旅行社或供应商账户 - 支持存款、取款、转账操作 - 记录所有交易历史 - 管理账户余额 2. **CollectionRecord类**:代收记录 - 记录客户代收款项信息 - 跟踪款项状态(待处理/已转账/已取消) - 关联转账记录 3. **TourismCollectionSystem类**:系统主类 - 管理所有账户和代收记录 - 提供业务操作接口(添加账户、记录代收、执行转账等) - 支持数据持久化(保存/加载到文件) ### 主要功能 1. **账户管理**: - 添加旅行社或供应商账户 - 查看账户余额 - 查看账户交易记录 2. **代收管理**: - 记录客户代收款项 - 查看待处理代收记录 - 关联代收记录与转账操作 3. **转账管理**: - 在账户间执行转账操作 - 自动更新账户余额 - 生成详细的交易记录 4. **数据管理**: - 自动保存数据到JSON文件 - 启动时自动加载上次保存的数据 ### 系统特点 1. 完整的交易审计跟踪 2. 清晰的账户状态管理 3. 代收款项与转账操作的关联 4. 数据持久化支持 5. 用户友好的命令行界面 ### 使用场景 1. 旅行社代收客户旅游款项 2. 旅行社转账给酒店、航空公司等供应商 3. 财务对账和审计 4. 账户余额查询和交易历史查看 ## 使用示例 ``` ============================== 游览业代收转户管理系统 ============================== 1. 添加账户 2. 记录代收款项 3. 执行转账操作 4. 查看账户余额 5. 查看账户交易记录 6. 查看待处理代收记录 7. 查看所有账户 8. 保存数据 9. 加载数据 0. 退出系统 ============================== 请选择操作: ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值