view_invoice_header.sql 528 B

12345678910111213141516171819
  1. CREATE VIEW `view_invoice_header` AS
  2. select
  3. `a`.`invoice_number` AS `invoice_number`,
  4. `a`.`project_id` AS `project_id`,
  5. `a`.`pos_id` AS `pos_id`,
  6. `a`.`invoice_date` AS `invoice_date`,
  7. `a`.`cashier` AS `cashier`,
  8. `a`.`paid` AS `paid`,
  9. `a`.`checkout` AS `checkout`,
  10. `a`.`printed` AS `printed`,
  11. `b`.`line_count` AS `line_count`,
  12. `b`.`total` AS `total`,
  13. `a`.`mdate` AS `mdate`,
  14. `a`.`cdate` AS `cdate`
  15. from (
  16. `invoice_header` `a`
  17. left join `view_totals` as `b` on (`a`.`invoice_number` = `b`.`invoice_number`)
  18. );