Invoice.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Invoice extends BaseModel
  17. {
  18. /**
  19. * 取得买家默认发票
  20. * @access public
  21. * @author csdeshang
  22. * @param array $condition 条件数组
  23. * @return array
  24. */
  25. public function getDefaultInvoiceInfo($condition = array())
  26. {
  27. return Db::name('invoice')->where($condition)->order('invoice_state asc')->find();
  28. }
  29. /**
  30. * 取得单条发票信息
  31. * @access public
  32. * @author csdeshang
  33. * @param array $condition 查询条件
  34. */
  35. public function getInvoiceInfo($condition = array())
  36. {
  37. return Db::name('invoice')->where($condition)->find();
  38. }
  39. /**
  40. * 取得发票列表
  41. * @access public
  42. * @author csdeshang
  43. * @param type $condition 条件
  44. * @param type $limit 限制
  45. * @param type $field 字段
  46. * @return type
  47. */
  48. public function getInvoiceList($condition, $limit = 0, $field = '*')
  49. {
  50. return Db::name('invoice')->field($field)->where($condition)->limit($limit)->select()->toArray();
  51. }
  52. /**
  53. * 删除发票信息
  54. * @access public
  55. * @author csdeshang
  56. * @param array $condition 条件
  57. * @return bool
  58. */
  59. public function delInvoice($condition)
  60. {
  61. return Db::name('invoice')->where($condition)->delete();
  62. }
  63. /**
  64. * 新增发票信息
  65. * @access public
  66. * @author csdeshang
  67. * @param array $data 参数内容
  68. * @return bool
  69. */
  70. public function addInvoice($data)
  71. {
  72. return Db::name('invoice')->insertGetId($data);
  73. }
  74. /**
  75. * 编辑发票
  76. * @param type $data
  77. * @param type $condition
  78. * @return type
  79. */
  80. public function editInvoice($data, $condition) {
  81. return Db::name('invoice')->where($condition)->update($data);
  82. }
  83. }