工厂销售管理系统源程序清单内容摘要:
lic class AddContract extends Contract { private static final long serialVersionUID = 1079754123359683663L。 ConBean cb = new ConBean()。 /** * Create the frame 15 */ public AddContract() { super()。 setBounds(100, 100, 500, 375)。 //setDefaultCloseOperation()。 (添加合同 )。 (false)。 (false)。 (+())。 (true)。 (true)。 (true)。 (true)。 (true)。 (true)。 (true)。 (true)。 (true)。 //设置运行时窗口的位置 Dimension screenSize = ().getScreenSize()。 (( 400) / 2,( 300) / 2 + 45)。 (添 加 )。 (清 空 )。 //添加事件侦听 (this)。 (this)。 } public void actionPerformed(ActionEvent e) { // TODO 自动生成方法存根 Object obj = ()。 if(obj == add){ (false)。 (false)。 (false)。 (false)。 16 (false)。 (false)。 (false)。 (false)。 (false)。 (false)。 (false)。 (false)。 ((), (), (), (),(), (), (), (), ())。 ()。 AddContract ac = new AddContract()。 (true)。 } else if(obj == clear){ setNull()。 (+())。 } } } package。 /** * @author 超老板 * 创建标识 :071223 */ import。 import。 import。 //有关合同数据库操作的类 public class ConBean { String sql。 ResultSet rs = null。 String contract_no。 String checkout_meth。 String exchange_add。 String transport_meth。 String transport_fee。 17 String need_name。 String product_name。 String number。 String price。 String delivery_data。 String colName。 //列名 String colValue。 //列值 String colValue2。 //列值 int contract_ID。 //合同的新编号 //添加合同 public void addCon(String checkout_Meth,String exchange_Add,String transport_Meth,String transport_Fee,String need_Name,String product_Name,String numBer,String priCe,String delivery_Data){ DataBase db = new DataBase()。 // = contract_no。 = checkout_Meth。 = exchange_Add。 = transport_Meth。 = transport_Fee。 = need_Name。 = product_Name。 = numBer。 = priCe。 = delivery_Data。 if(need_name == null||()){ (null, 请 输 入 需 方 名 称 , 错误,)。 return。 } else if(product_name == null||()){ (null, 请 输 入 产 品 名 称 , 错误,)。 return。 } else{ sql = insert into contract (Checkout_meth,Exchange_add,Transport_meth,Transport_fee,Need_name,Product_name,Numbe,Price,Delivery_data) values (39。 +checkout_meth+39。 ,39。 +exchange_add+39。 ,39。 +transport_meth+39。 ,39。 +transport_fee+39。 ,39。 +need_name+39。 ,39。 +product_name+39。 ,39。 +number+39。 ,39。 +price+39。 ,39。 +delivery 18 _data+39。 )。 try{ ()。 (sql)。 (null,成功添加一条记录 )。 } catch(Exception e){ (e)。 (null, 添加失败 , 错误,)。 } finally{ ()。 ()。 } } } //修改合同 public void conModify(String contract_No,String checkout_Meth,String exchange_Add,String transport_Meth, String transport_Fee,String need_Name,String product_Name,String numBer,String priCe,String delivery_Data){ DataBase db = new DataBase()。 = contract_No。 = checkout_Meth。 = exchange_Add。 = transport_Meth。 = transport_Fee。 = need_Name。 = product_Name。 = numBer。 = priCe。 = delivery_Data。 if(need_name == null||()){ (null, 请 输 入 需 方 名 称 , 错误,)。 return。 } else{ sql = update contract set Checkout_meth = 39。 +checkout_meth+39。 ,Exchange_add = 39。 +exchange_add+39。 ,Transport_meth = 19 39。 +transport_meth+39。 ,Transport_fee = 39。 +transport_fee+39。 ,Need_name = 39。 +need_name+39。 ,Product_name =39。 +product_name+39。 ,Numbe = 39。 +number+39。 ,Price = 39。 +price+39。 ,Delivery_data = 39。 +delivery_data+39。 where Contract_no = +(contract_no)+。 } try{ ()。 (sql)。 (null,成功修改一条记录 )。 } catch(Exception e){ (e)。 (null, 修改失败 , 错误,)。 } finally{ ()。 ()。 } } //删除合同 public void delCon(String contract_No){ DataBase db = new DataBase()。 = contract_No。 sql = delete from contract where Contract_no = +(contract_no)+。 try{ ()。 (sql)。 (null,成功删除一条记录 )。 } catch(Exception e){ (e)。 (null, 删除失败 , 错误,)。 } finally{ ()。 ()。 } } 20 //根据合同号查询合同执行情况清单 public String[] searchCon(String no){ DataBase db = new DataBase()。 = no。 String[] s = new String[9]。 sql = select * from contract where Contract_no = +(contract_no)+。 try{ ()。 rs = (sql)。 if(()){ s[0] = (Checkout_meth)。 s[1] = (Exchange_add)。 s[2] = (Transport_meth)。 s[3] = (Transport_fee)。 s[4] = (Need_name)。 s[5] = (Product_name)。 s[6] = (Numbe)。 s[7] = (Price)。 s[8] = (Delivery_data)。 } else s = null。 } catch(Exception e){ } finally{ ()。 ()。 } return s。 } /** * 合同综合查询 (按照一个条件进行查询 ) */ public String[][] conAllSearch(String colname,String colvalue){ = colname。 = colvalue。 DataBase DB = new DataBase()。 String[][] = null。 int row = 0。 int i = 0。 21 (colvalue)。 if(colValue == null||()){ sql = select * from contract。 } else{ sql = select * from contract where +colName+ = 39。 +colValue+39。 } try{ ()。 rs = (sql)。 if(()){ row = ()。 } if(row == 0){ = null。 } else{ = new String[row][10]。 ()。 ()。 while(()){ [i][0] = (Contract_no)。 [i][1] = (Checkout_meth)。 [i][2] = (Exchange_add)。 [i][3] = (Transport_meth)。 [i][4] = (Transport_fee)。 [i][5] = (Need_name)。 [i][6] = (Pro。工厂销售管理系统源程序清单
相关推荐
今市场营销的战略、计划和战术原则 未来的营销将领应拥有的 品质是灵活、意志力和胆量。 3 消费者行为 迈克尔 .。 消费者行为是营销学的基础;我们的产品方案,广告传播方案,对兼并、投资对象的价值评估,等等经营行为,都离不开对消费者行为的研究。 3 战略品牌管理 莱恩。 凯勒的《战略品牌管理》是企业品牌工作的 “ 工具库、思想库 ” ,很实用。 3 市场营销渠道 STERN 著。
,有关危机管理的界定 ,目前的学者看法不尽相同。 多数定义侧重于企业发生危机后的应付对策。 基于这一点 ,笔者认为 :危机管理是指在危机爆发前 ,对危机症兆进行有效识别 ,尽量采取措施预防危机产生 ,而在危机爆发后 ,要以最迅速、有效的方法应对危机 ,使组织转危为安。 企业危机管理的目的就是要在危机未发生时预防危机的发生 ,而在危机真的发生时 ,采取措施减少危机所造成的损害
率,必须全面提升企业的财务管理层次。 3 建立自律的财务管理组织体系 按照相关财会法律、法规的要求逐步建立起比较规范、完善和自律的财务管理组织体系,工作流程和财务管理制度,同时要根据国家 法律规定,结合本企业财务管理上的薄弱环节,制定财务计划、资金筹集、资产管理、成本费用管理等并切实贯彻执行。 提高资金营运效率 严格资金管理,加强财务控制,不断提高资金营运效率。 合理安排资金结构
2 S— 3 S— 4 I II III 1∽ 8 A A A A A A B 9∽ 15 A A A A A A C 16∽ 25 A A V B B C C 26∽ 50 A B V C C D E 51∽ 90 B B C C C E F 91∽ 150 B B C D D F G 151∽ 280 B C D E E G H 281∽ 500 B C D E F H J 501∽
准日薪247。 8 小时 月应出勤天数=当月实际天数-当月周日天数-当月法定假日天数。 备注:如生产需要,工厂可根据情况调节假日,员工必须配合执行。 月薪人员如星期天因工作原因丌能休假,经过部门上级领导同意可以调休,如果后续没有时间休假,则按加班计算工资:底薪247。 28(月大 29,二月 26或 27)天 =日薪 例如:◎ 4 月仹( 30 天),休假 4 个星期天另加上清明节 (国假日)