File: taxAssignments.cpp

package info (click to toggle)
postbooks 4.9.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 103,120 kB
  • sloc: cpp: 288,269; sh: 607; xml: 214; awk: 104; makefile: 49
file content (147 lines) | stat: -rw-r--r-- 4,633 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
 * This file is part of the xTuple ERP: PostBooks Edition, a free and
 * open source Enterprise Resource Planning software suite,
 * Copyright (c) 1999-2014 by OpenMFG LLC, d/b/a xTuple.
 * It is licensed to you under the Common Public Attribution License
 * version 1.0, the full text of which (including xTuple-specific Exhibits)
 * is available at www.xtuple.com/CPAL.  By using this software, you agree
 * to be bound by its terms.
 */

#include "taxAssignments.h"
#include "taxAssignment.h"

#include <QSqlError>

#include "metasql.h"
#include "parameter.h"

taxAssignments::taxAssignments(QWidget* parent, const char* name, Qt::WindowFlags fl)
  : XWidget(parent, name, fl)
{
  setupUi(this);

  connect(_delete,	SIGNAL(clicked()),	 this, SLOT(sDelete()));
  connect(_edit,	SIGNAL(clicked()),	 this, SLOT(sEdit()));
  connect(_new,		SIGNAL(clicked()),	 this, SLOT(sNew()));
  connect(_showAll,	SIGNAL(toggled(bool)),	 this, SLOT(sFillList()));
  connect(_showAllTypes,	SIGNAL(toggled(bool)),	 this, SLOT(sFillList()));
  connect(_taxass,	SIGNAL(valid(bool)),	_view, SLOT(setEnabled(bool)));
  connect(_taxZone,	SIGNAL(newID(int)),	 this, SLOT(sFillList()));
  connect(_taxType,	SIGNAL(newID(int)),	 this, SLOT(sFillList()));
  connect(_view,	SIGNAL(clicked()),	 this, SLOT(sView()));

  if (_privileges->check("MaintainTaxAssignments"))
  {
    connect(_taxass,	SIGNAL(valid(bool)),  _delete, SLOT(setEnabled(bool)));
    connect(_taxass,	SIGNAL(valid(bool)),	_edit, SLOT(setEnabled(bool)));
    connect(_taxass,	SIGNAL(itemSelected(int)), _edit, SLOT(animateClick()));
  }
  else
  {
    _new->setEnabled(false);
    connect(_taxass, SIGNAL(itemSelected(int)), _view, SLOT(animateClick()));
  }

  _taxass->addColumn(tr("Tax Zone/Code"),	 -1,  Qt::AlignLeft,   true,  "taxassign_zone_code");
  _taxass->addColumn(tr("Tax Type/Description"),      100,  Qt::AlignLeft,   true,  "taxassign_type_descrip");
  _taxass->addColumn(tr("Tax Class"),      100,  Qt::AlignLeft,   true,  "taxassign_taxclass_code");
  _taxass->addColumn(tr("Group Sequence"),      100,  Qt::AlignLeft,   true,  "taxassign_taxclass_sequence");
  _taxass->setIndentation(10);

  sFillList();
}

taxAssignments::~taxAssignments()
{
  // no need to delete child widgets, Qt does it all for us
}

void taxAssignments::languageChange()
{
  retranslateUi(this);
}

void taxAssignments::sNew()
{
  ParameterList params;
  params.append("mode", "new");
  
  taxAssignment newdlg(this, "", true);
  newdlg.set(params);

  newdlg.exec();
  sFillList();
}

void taxAssignments::sEdit()
{
  ParameterList params;
  params.append("mode", "edit");

  params.append("taxzone_id", _taxass->id());
  params.append("taxtype_id", _taxass->altId());

  taxAssignment newdlg(this, "", true);
  newdlg.set(params);

  newdlg.exec();
  sFillList();
}

void taxAssignments::sView()
{
  ParameterList params;
  params.append("mode", "view");
  
  params.append("taxzone_id", _taxass->id());
  params.append("taxtype_id", _taxass->altId());

  taxAssignment newdlg(this, "", true);
  newdlg.set(params);
  newdlg.exec();
}

void taxAssignments::sDelete()
{
  XSqlQuery taxDelete;
  taxDelete.prepare("DELETE FROM taxass WHERE ((COALESCE(taxass_taxzone_id, -1) = :taxzone_id) "
            "AND (COALESCE(taxass_taxtype_id, -1) = :taxtype_id));");
  taxDelete.bindValue(":taxzone_id", _taxass->id());
  taxDelete.bindValue(":taxtype_id", _taxass->altId());
  taxDelete.exec();
  if (taxDelete.lastError().type() != QSqlError::NoError)
  {
    systemError(this, taxDelete.lastError().databaseText(), __FILE__, __LINE__);
    return;
  }

  sFillList();
}

void taxAssignments::sFillList()
{
  ParameterList params;
  
  if (! _showAll->isChecked())
    params.append("taxzone_id", _taxZone->id());
  
  if (! _showAllTypes->isChecked())
    params.append("taxtype_id", _taxType->id());
  

  QString sql("SELECT taxassign_taxzone_id, taxassign_taxtype_id, taxassign_level AS xtindentrole, "
              "COALESCE(taxassign_zone_code, '~Any~') AS taxassign_zone_code, "
		      "COALESCE(taxassign_type_descrip, '~Any~') AS taxassign_type_descrip, "
			  "taxassign_taxclass_code, taxassign_taxclass_sequence, COALESCE(taxassign_taxclass_sequence, -1) AS dummy_seq "
		      "FROM taxassignments(<? value(\"taxzone_id\") ?>, <? value(\"taxtype_id\") ?>) "
			  "ORDER BY taxassign_taxzone_id, taxassign_taxtype_id, dummy_seq, xtindentrole;");
  MetaSQLQuery mql(sql);
  XSqlQuery r = mql.toQuery(params);
  _taxass->populate(r, true);
  if (r.lastError().type() != QSqlError::NoError)
  {
    systemError(this, r.lastError().databaseText(), __FILE__, __LINE__);
    return;
  }
}