File: lotSerialSequences.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 (137 lines) | stat: -rw-r--r-- 3,822 bytes parent folder | download | duplicates (3)
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
/*
 * 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 "lotSerialSequences.h"

#include <QVariant>
#include <QMessageBox>

#include <parameter.h>
#include <openreports.h>
#include "lotSerialSequence.h"
#include "guiclient.h"

/*
 *  Constructs a lotSerialSequences as a child of 'parent', with the
 *  name 'name' and widget flags set to 'f'.
 *
 */
lotSerialSequences::lotSerialSequences(QWidget* parent, const char* name, Qt::WindowFlags fl)
    : XWidget(parent, name, fl)
{
  setupUi(this);

  // signals and slots connections
  connect(_new, SIGNAL(clicked()), this, SLOT(sNew()));
  connect(_edit, SIGNAL(clicked()), this, SLOT(sEdit()));
  connect(_view, SIGNAL(clicked()), this, SLOT(sView()));
  connect(_delete, SIGNAL(clicked()), this, SLOT(sDelete())); 
  
  _lsseq->addColumn(tr("Number"),        _itemColumn, Qt::AlignLeft, true, "lsseq_number" );
  _lsseq->addColumn(tr("Description"),   -1,          Qt::AlignLeft, true, "lsseq_descrip" );

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

   sFillList();
}

/*
 *  Destroys the object and frees any allocated resources
 */
lotSerialSequences::~lotSerialSequences()
{
  // no need to delete child widgets, Qt does it all for us
}

/*
 *  Sets the strings of the subwidgets using the current
 *  language.
 */
void lotSerialSequences::languageChange()
{
  retranslateUi(this);
}

void lotSerialSequences::sDelete()
{
  XSqlQuery lotDelete;
  lotDelete.prepare( "SELECT itemsite_id "
             "FROM itemsite "
             "WHERE (itemsite_lsseq_id=:lsseq_id);" );
  lotDelete.bindValue(":lsseq_id", _lsseq->id());
  lotDelete.exec();
  if (lotDelete.first())
  {
    QMessageBox::critical( this, tr("Cannot Delete Sequence"),
                           tr( "The selected Planner Code cannot be deleted as there are one or more Item Sites currently assigned to it.\n"
                               "You must reassign these Item Sites before you may delete the selected Planner Code." ) );
    return;
  }

  lotDelete.prepare( "DELETE FROM lsseq "
             "WHERE (lsseq_id=:lsseq_id);" );
  lotDelete.bindValue(":lsseq_id", _lsseq->id());
  lotDelete.exec();

  sFillList();
}

void lotSerialSequences::sEdit()
{
  ParameterList params;
  params.append("mode", "edit");
  params.append("lsseq_id", _lsseq->id());

  lotSerialSequence newdlg(this, "", true);
  newdlg.set(params);
  
  if (newdlg.exec() != XDialog::Rejected)
    sFillList();
}

void lotSerialSequences::sView()
{
  ParameterList params;
  params.append("mode", "view");
  params.append("lsseq_id", _lsseq->id());

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

void lotSerialSequences::sFillList()
{
  _lsseq->populate( "SELECT lsseq_id, lsseq_number, lsseq_descrip "
                        "FROM lsseq "
                        "ORDER BY lsseq_number;" );
}

void lotSerialSequences::sNew()
{
  ParameterList params;
  params.append("mode", "new");

  lotSerialSequence newdlg(this, "", true);
  newdlg.set(params);
  
  if (newdlg.exec() != XDialog::Rejected)
    sFillList();
}