Пример #1
0
dspCreditCardTransactions::dspCreditCardTransactions(QWidget* parent, const char* name, Qt::WFlags fl)
    : XWidget(parent, name, fl)
{
  setupUi(this);

  connect(_query, SIGNAL(clicked()), this, SLOT(sFillList()));
  connect(_preauth, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(sgetCCAmount()));
  connect(_postPreauth, SIGNAL(clicked()), this, SLOT(sPostPreauth()));
  connect(_voidPreauth, SIGNAL(clicked()), this, SLOT(sVoidPreauth()));
  connect(_customerSelector, SIGNAL(newState(int)), this, SLOT(sClear()));
  connect(_customerSelector, SIGNAL(newCustId(int)), this, SLOT(sClear()));
  connect(_customerSelector, SIGNAL(newCustTypeId(int)), this, SLOT(sClear()));
  connect(_customerSelector, SIGNAL(newTypePattern(QString)), this, SLOT(sClear()));
  
  _preauth->addColumn(tr("Timestamp"),   _dateColumn, Qt::AlignLeft, true,  "ccpay_transaction_datetime"  ); 
  _preauth->addColumn(tr("Cust. #"),    _orderColumn, Qt::AlignLeft,  true, "cust_number");  
  _preauth->addColumn(tr("Name"),                 -1, Qt::AlignLeft,  true, "cust_name");
  _preauth->addColumn(tr("Type"),       _orderColumn, Qt::AlignLeft,  true, "type"  );
  _preauth->addColumn(tr("Status"),  _bigMoneyColumn, Qt::AlignLeft,  true,  "status"  );
  _preauth->addColumn(tr("Document #"),           -1, Qt::AlignLeft,  true,  "docnumber"  );
  _preauth->addColumn(tr("Amount"),     _moneyColumn, Qt::AlignRight, true, "ccpay_amount");
  _preauth->addColumn(tr("Currency"),_currencyColumn, Qt::AlignLeft,  true, "currabbr");;
  _preauth->addColumn(tr("Entered By"),   _userColumn,     Qt::AlignLeft,   false,  "ccpay_by_username"  );
  _preauth->addColumn(tr("Reference"),    _orderColumn,    Qt::AlignLeft,   false,  "ccpay_r_ref"  );
  _preauth->addColumn(tr("Allocated"),    _moneyColumn,    Qt::AlignRight,  false,  "allocated" );
  _preauth->addColumn(tr("Allocated Currency"), _currencyColumn, Qt::AlignLeft,   false,  "payco_currAbbr"  );
  
  if (omfgThis->singleCurrency())
    _preauth->hideColumn(2);

  if (_metrics->value("CCValidDays").toInt())
    _validDays->setValue(_metrics->value("CCValidDays").toInt());
  else
    _validDays->setValue(7);
}
Пример #2
0
void dspCreditCardTransactions::sPopulateMenu( QMenu * pMenu, QTreeWidgetItem *pItem )
{ 
  if (((XTreeWidgetItem *)pItem)->rawValue("status") == "C")
  {
    QAction* printAct = new QAction(tr("Print Receipt"), this);
    connect(printAct, SIGNAL(triggered()), this, SLOT(sPrintCCReceipt()));
    pMenu->addAction(printAct);
  }

  if (_postPreauth->isEnabled())
  {
    QAction* postAct = new QAction(tr("Post"), this);
    connect(postAct, SIGNAL(triggered()), this, SLOT(sPostPreauth()));
    pMenu->addAction(postAct);
  }

  if (_voidPreauth->isEnabled())
  {
    QAction* voidAct = new QAction(tr("Void"), this);
    connect(voidAct, SIGNAL(triggered()), this, SLOT(sVoidPreauth()));
    pMenu->addAction(voidAct);
  }
}
Пример #3
0
arWorkBench::arWorkBench(QWidget* parent, const char* name, Qt::WFlags fl)
    : QMainWindow(parent, name, fl)
{
    setupUi(this);

    (void)statusBar();

    connect(_viewAropen, SIGNAL(clicked()), this, SLOT(sViewAropen()));
    connect(_editAropen, SIGNAL(clicked()), this, SLOT(sEditAropen()));
    connect(_applyAropenCM, SIGNAL(clicked()), this, SLOT(sApplyAropenCM()));
    connect(_editAropenCM, SIGNAL(clicked()), this, SLOT(sEditAropenCM()));
    connect(_viewAropenCM, SIGNAL(clicked()), this, SLOT(sViewAropenCM()));
    connect(_ccRefundCM,   SIGNAL(clicked()), this, SLOT(sCCRefundCM()));
    connect(_cust, SIGNAL(newId(int)), this, SLOT(sFillList()));
    connect(_newCashrcpt, SIGNAL(clicked()), this, SLOT(sNewCashrcpt()));
    connect(_editCashrcpt, SIGNAL(clicked()), this, SLOT(sEditCashrcpt()));
    connect(_viewCashrcpt, SIGNAL(clicked()), this, SLOT(sViewCashrcpt()));
    connect(_deleteCashrcpt, SIGNAL(clicked()), this, SLOT(sDeleteCashrcpt()));
    connect(_postCashrcpt, SIGNAL(clicked()), this, SLOT(sPostCashrcpt()));
    connect(_preauth, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(sgetCCAmount()));
    connect(_postPreauth, SIGNAL(clicked()), this, SLOT(sPostPreauth()));
    connect(_aropen, SIGNAL(populateMenu(QMenu*, QTreeWidgetItem*)),
            this, SLOT(sPopulateAropenMenu(QMenu*)));
    connect(_aropenCM, SIGNAL(populateMenu(QMenu*, QTreeWidgetItem*)),
            this, SLOT(sPopulateAropenCMMenu(QMenu*)));
    connect(_cashrcpt, SIGNAL(populateMenu(QMenu*, QTreeWidgetItem*)),
            this, SLOT(sPopulateCashRcptMenu(QMenu*)));
    connect(_preauth, SIGNAL(populateMenu(QMenu*, QTreeWidgetItem*)),
            this, SLOT(sPopulatePreauthMenu(QMenu*)));

    _cashrcpt->addColumn(tr("Dist. Date"), _dateColumn,     Qt::AlignCenter );
    _cashrcpt->addColumn(tr("Amount"),     _bigMoneyColumn, Qt::AlignRight  );
    _cashrcpt->addColumn(tr("Currency"),   _currencyColumn, Qt::AlignLeft   );
    if (_privleges->check("MaintainCashReceipts"))
    {
        connect(_cashrcpt, SIGNAL(valid(bool)), _editCashrcpt, SLOT(setEnabled(bool)));
        connect(_cashrcpt, SIGNAL(valid(bool)), _deleteCashrcpt, SLOT(setEnabled(bool)));
        connect(_cashrcpt, SIGNAL(valid(bool)), _postCashrcpt, SLOT(setEnabled(bool)));
    }
    else
    {
        _newCashrcpt->setEnabled(FALSE);
        connect(_cashrcpt, SIGNAL(itemSelected(int)), _viewCashrcpt, SLOT(animateClick()));
    }
    if(_privleges->check("PostCashReceipts"))
        connect(_cashrcpt, SIGNAL(itemSelected(int)), _editCashrcpt, SLOT(animateClick()));
    connect(omfgThis, SIGNAL(cashReceiptsUpdated(int, bool)), this, SLOT(sFillList()));

    _aropenCM->addColumn( tr("Type"),     _ynColumn,    Qt::AlignCenter );
    _aropenCM->addColumn( tr("Doc. #"),   _itemColumn,  Qt::AlignCenter );
    _aropenCM->addColumn( tr("Amount"),   _moneyColumn, Qt::AlignRight  );
    _aropenCM->addColumn( tr("Applied"),  _moneyColumn, Qt::AlignRight  );
    _aropenCM->addColumn( tr("Balance"),  _moneyColumn, Qt::AlignRight  );
    _aropenCM->addColumn( tr("Currency"), _currencyColumn, Qt::AlignLeft );

    _aropen->addColumn(tr("Doc. Type"), -1,              Qt::AlignCenter );
    _aropen->addColumn(tr("Doc. #"),    _orderColumn,    Qt::AlignRight  );
    _aropen->addColumn(tr("Order #"),   _orderColumn,    Qt::AlignRight  );
    _aropen->addColumn(tr("Doc. Date"), _dateColumn,     Qt::AlignCenter );
    _aropen->addColumn(tr("Due Date"),  _dateColumn,     Qt::AlignCenter );
    _aropen->addColumn(tr("Amount"),    _bigMoneyColumn, Qt::AlignRight  );
    _aropen->addColumn(tr("Paid"),      _bigMoneyColumn, Qt::AlignRight  );
    _aropen->addColumn(tr("Balance"),   _bigMoneyColumn, Qt::AlignRight  );
    _aropen->addColumn( tr("Currency"), _currencyColumn, Qt::AlignLeft   );

    _preauth->addColumn(tr("Order-Seq."),  150, Qt::AlignRight  );
    _preauth->addColumn(tr("Amount"),   _bigMoneyColumn, Qt::AlignRight  );
    _preauth->addColumn(tr("Currency"), _currencyColumn, Qt::AlignLeft   );

    if(_privleges->check("EditAROpenItem"))
    {
        connect(_aropen, SIGNAL(valid(bool)), _editAropen, SLOT(setEnabled(bool)));
        connect(_aropen, SIGNAL(itemSelected(int)), _editAropen, SLOT(animateClick()));
        connect(_aropenCM, SIGNAL(valid(bool)), _editAropenCM, SLOT(setEnabled(bool)));
        connect(_aropenCM, SIGNAL(itemSelected(int)), _editAropenCM, SLOT(animateClick()));
    }
    else
    {
        connect(_aropen, SIGNAL(itemSelected(int)), _viewAropen, SLOT(animateClick()));
        connect(_aropenCM, SIGNAL(itemSelected(int)), _viewAropenCM, SLOT(animateClick()));
    }
    if (_privleges->check("ApplyARMemos"))
        connect(_aropenCM, SIGNAL(valid(bool)), _applyAropenCM, SLOT(setEnabled(bool)));

    if (omfgThis->singleCurrency())
    {
        _cashrcpt->hideColumn(2);
        _preauth->hideColumn(2);
        _aropen->hideColumn(8);
        _aropenCM->hideColumn(4);
    }

    if (_metrics->boolean("CCAccept") && _privleges->check("ProcessCreditCards"))
        connect(_aropenCM, SIGNAL(valid(bool)), _ccRefundCM, SLOT(setEnabled(bool)));
    else
    {
        _ccRefundCM->setEnabled(false);
        _preauthLit->setEnabled(false);
        _preauth->setEnabled(false);
        _postPreauth->setEnabled(false);
        _CCAmountLit->setEnabled(false);
        _CCAmount->setEnabled(false);
    }

    if(_metrics->boolean("EnableCustomerDeposits"))
        _aropenCMLit->setText(tr("A/R Open Credit Memos and Deposits"));
}