资源简介
由出货流水生成单个客户的对账单&合同。
代码片段和文件信息
# extract_data.py
# -*- coding: utf-8 -*-
# @Date : 2016/5/13 11:04 r_w_006可以写入了。改善记录。
# @Function: 流水中提取有效的出货数据,生成对账单。
# @Author : ThomasBao
‘‘‘
2016-5-20
输入:全部流水资料 如 e:20160519.xls
输出:客户出货.xls 客户合同.xls
1.筛选条件:
a客户名称 easygui.enterbox 瑞丰科技,可改客户名称
b合计金额不等于0 有效出货统计
c升级背景色=白色 (64) 未结款的
2016-5-15
增加索引型号
型号排列,对单价相同的型号求和;
‘‘‘
import os
import string
import xlrd
import xlwt
import easygui
def handle_data():
#“““处理数据“““
# from datetime import datetime
import time
font0 = xlwt.Font()
font0.name = ‘Times New Roman‘
font0.colour_index = 2
font0.bold = True
style0 = xlwt.XFstyle() # 默认格式 style0
style0.font = font0
style1 = xlwt.XFstyle()
评论
共有 条评论