guozhang.php
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

PHP

  1. <?php
  2. $t_AUTOID=$_GET[AUTOID];
  3. if (empty($t_AUTOID)){$t_AUTOID=0;};
  4.  include ("../inc/db.php");
  5.  include ("../inc/phpmkrfn.php");
  6.  include ("../kuchen/kuchen.php");
  7.  include ("../yinfu/yinfu.php");
  8.  include ("../casebank/case.php");
  9.   $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  10. $sSql = "select * from jhdmast where autoid =$t_AUTOID";
  11. $rs   = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  12. $row  = mysql_fetch_array($rs, MYSQL_ASSOC);
  13. $ys_ac=$row[JHM02]; //客户编号
  14. $ys_id=$row[JHMID]; //送货单号
  15. $ys_lx=$row[JHM10]; //结款类型
  16. $ys_ty="JHD"; //送货单
  17. if (phpmkr_num_rows($rs) > 0){
  18. $uSql  = "update jhdmast set ";
  19. $uSql .= "JHM11 =  '1' ";
  20. $uSql .= " where autoid =$t_AUTOID";
  21.  }
  22. $drs   = phpmkr_query($uSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $uSql);
  23. $sSql = "select sum(JHD05) as jtotal from jhddelt where JHDID ='$ys_id'";
  24. $rs   = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  25. $row  = mysql_fetch_array($rs, MYSQL_ASSOC);
  26. $ys_num=$row[jtotal]; //金额合计
  27. //echo $ys_lx;
  28. if ($ys_lx=="02"){   // 月结 
  29. //新增应付帐款
  30. yinfu_new($ys_ac,$ys_id,$ys_ty,$ys_num);
  31. }
  32. if ($ys_lx=="01"){   // 现金 
  33. //新增现金日记帐
  34. $ys_fx = 1; //支出
  35. case_new($ys_ac,$ys_id,$ys_ty,$ys_num,$ys_fx);
  36. }
  37. header("location:list.php");
  38. ?>