Ejemplo n.º 1
0
 private static function getStats($date, $con)
 {
     $sales = SalesQuery::create()->filterByStatus('Active')->filterByDate(array('min' => $date->start, 'max' => $date->until))->withColumn('COUNT(Sales.Id)', 'sales_count')->withColumn('SUM(Sales.TotalPrice)', 'sales_total')->withColumn('SUM(CONVERT(Sales.TotalPrice, SIGNED) - CONVERT(Sales.BuyPrice, SIGNED))', 'sales_netto')->select(['sales_total', 'sales_count'])->find($con);
     $data['sales_count'] = isset($sales[0]['sales_count']) ? $sales[0]['sales_count'] : 0;
     $data['sales_total'] = isset($sales[0]['sales_total']) ? $sales[0]['sales_total'] : 0;
     $data['sales_netto'] = isset($sales[0]['sales_netto']) ? $sales[0]['sales_netto'] : 0;
     $purchase = PurchaseQuery::create()->filterByStatus('Active')->filterByDate(array('min' => $date->start, 'max' => $date->until))->withColumn('COUNT(Purchase.Id)', 'purchase_count')->withColumn('SUM(Purchase.TotalPrice)', 'purchase_total')->select(['purchase_count', 'purchase_total'])->find($con);
     $data['purchase_count'] = isset($purchase[0]['purchase_count']) ? $purchase[0]['purchase_count'] : 0;
     $data['purchase_total'] = isset($purchase[0]['purchase_total']) ? $purchase[0]['purchase_total'] : 0;
     // get current credit balance
     $credits = CreditQuery::create()->filterByStatus('Active')->useSalesQuery()->filterByDate(array('max' => $date->until))->endUse()->withColumn('CONVERT(Credit.Total, SIGNED) - CONVERT(Credit.Paid, SIGNED)', 'balance')->select(array('balance'))->find($con);
     $credit_total = 0;
     foreach ($credits as $credit) {
         if ($credit > 0) {
             $credit_total += $credit;
         }
     }
     $data['credit'] = $credit_total;
     // get current debit balance
     $debits = DebitQuery::create()->filterByStatus('Active')->usePurchaseQuery()->filterByDate(array('max' => $date->until))->endUse()->withColumn('CONVERT(Debit.Total, SIGNED) - CONVERT(Debit.Paid, SIGNED)', 'balance')->select(array('balance'))->find($con);
     $debit_total = 0;
     foreach ($debits as $debit) {
         if ($debit > 0) {
             $debit_total += $debit;
         }
     }
     $data['debit'] = $debit_total;
     $results['success'] = true;
     $results['data'] = $data;
     return $results;
 }
Ejemplo n.º 2
0
 private static function getSalesVsPurchase($date, $con)
 {
     $data = [];
     $sales = SalesQuery::create()->filterByStatus('Active')->filterByDate(array('min' => $date->start, 'max' => $date->until))->withColumn('SUM(Sales.TotalPrice)', 'sales')->select(['sales'])->find($con);
     $row = ['type' => 'Penjualan', 'amount' => isset($sales[0]) ? $sales[0] : 0];
     $data[] = $row;
     $purchase = PurchaseQuery::create()->filterByStatus('Active')->filterByDate(array('min' => $date->start, 'max' => $date->until))->withColumn('SUM(Purchase.TotalPrice)', 'purchase')->select(['purchase'])->find($con);
     $row = ['type' => 'Pembelian', 'amount' => isset($purchase[0]) ? $purchase[0] : 0];
     $data[] = $row;
     $results['success'] = true;
     $results['data'] = $data;
     return $results;
 }
Ejemplo n.º 3
0
<head>
    <title>Print Nota <?php 
echo $id;
?>
</title>
    <link rel="stylesheet" type="text/css" href="print.css">
</head>
<script>
    setTimeout(function(){
        window.print();
        window.close();
    }, 10)
</script>
<body>
<?php 
$sales = SalesQuery::create()->leftJoin('SecondParty')->leftJoin('Cashier')->filterByStatus('Active')->filterById($id)->select(array('id', 'date', 'total_price', 'paid', 'note'))->withColumn('SecondParty.Name', 'second_party_name')->withColumn('Cashier.Id', 'cashier_id')->withColumn('Cashier.Name', 'cashier_name')->findOne($con);
if (!$sales) {
    throw die('Data tidak ditemukan.');
}
$sales = (object) $sales;
$salesDetails = SalesDetailQuery::create()->filterBySalesId($sales->id)->filterByStatus('Active')->select(array('amount', 'unit_price', 'discount', 'total_price'))->useStockQuery()->leftJoin('Product')->leftJoin('Unit')->withColumn('Product.Name', 'product_name')->withColumn('Unit.Name', 'unit_name')->endUse()->find($con);
?>

<div style="font-weight: bold; font-size: 15px; text-align: center;">
    <?php 
echo $info->client_name;
?>
</div>
<div style="text-align: center;"><?php 
echo $info->client_address;
?>
Ejemplo n.º 4
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this UserDetail is new, it will return
  * an empty collection; or if this UserDetail has previously
  * been saved, it will retrieve related Saless from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in UserDetail.
  *
  * @param      Criteria $criteria optional Criteria object to narrow the query
  * @param      ConnectionInterface $con optional connection object
  * @param      string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return ObjectCollection|ChildSales[] List of ChildSales objects
  */
 public function getSalessJoinSecondParty(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
 {
     $query = ChildSalesQuery::create(null, $criteria);
     $query->joinWith('SecondParty', $joinBehavior);
     return $this->getSaless($query, $con);
 }
Ejemplo n.º 5
0
 public static function update($params, $currentUser, $con)
 {
     // check role's permission
     $permission = RolePermissionQuery::create()->select('update_sales')->findOneById($currentUser->role_id, $con);
     if (!$permission || $permission != 1) {
         throw new \Exception('Akses ditolak. Anda tidak mempunyai izin untuk melakukan operasi ini.');
     }
     $sales = SalesQuery::create()->findOneById($params->id, $con);
     if (!$sales) {
         throw new \Exception('Data tidak ditemukan');
     }
     $sales->setDate($params->date)->setSecondPartyId($params->second_party_id)->setBuyPrice($params->buy_price)->setTotalPrice($params->total_price)->setPaid($params->paid)->setCashierId($params->cashier_id)->setNote($params->note)->setStatus('Active')->save($con);
     // check wether this transaction is credit or not
     $balance = $params->paid - $params->total_price;
     if ($balance < 0) {
         $credit = CreditQuery::create()->filterBySalesId($sales->getId())->findOne($con);
         if (!$credit) {
             $credit = new Credit();
         }
         $credit->setSalesId($sales->getId())->setTotal(abs($balance))->setStatus('Active')->save($con);
     } else {
         $credit = CreditQuery::create()->filterBySalesId($sales->getId())->findOne($con);
         if ($credit) {
             $credit->setSalesId($sales->getId())->setTotal(0)->setStatus('Canceled')->save($con);
         }
     }
     $products = json_decode($params->products);
     // iterate through every product on this sales operation
     foreach ($products as $product) {
         $newDetail = SalesDetailQuery::create()->findOneById($product->id);
         // check whether current detail iteration is brand new or just updating the old one
         if (!$newDetail) {
             $isNew = true;
             $newDetail = new SalesDetail();
         } else {
             $isNew = false;
             $oldDetail = $newDetail->copy();
         }
         $newDetail->setSalesId($sales->getId())->setType($product->type)->setStockId($product->stock_id)->setAmount($product->amount)->setUnitPrice($product->unit_price)->setDiscount($product->discount)->setTotalPrice($product->total_price)->setBuy($product->buy)->setSellPublic($product->sell_public)->setSellDistributor($product->sell_distributor)->setSellMisc($product->sell_misc)->setStatus('Active')->save($con);
         // make stock dance ^_^
         if ($isNew) {
             $stock = StockQuery::create()->findOneById($newDetail->getStockId(), $con);
             if ($stock->getUnlimited() == false) {
                 $stock->setAmount($stock->getAmount() - $newDetail->getAmount())->save($con);
             }
         } else {
             // check whether updated detail stock is the same old one or not
             if ($newDetail->getStockId() == $oldDetail->getStockId()) {
                 // and if actually the same, then set stock amount like this
                 // amount = currentAmount + oldTransAmount - newTransAmount
                 $stock = StockQuery::create()->findOneById($newDetail->getStockId(), $con);
                 if ($stock->getUnlimited() == false) {
                     $stock->setAmount($stock->getAmount() + $oldDetail->getAmount() - $newDetail->getAmount())->save($con);
                 }
             } else {
                 // but if two stocks is not the same,
                 // then give back oldTransAmount to old-stock, and take newTransAmount from new-stock
                 $stock = StockQuery::create()->findOneById($oldDetail->getStockId(), $con);
                 if ($stock->getUnlimited() == false) {
                     $stock->setAmount($stock->getAmount() + $oldDetail->getAmount())->save($con);
                 }
                 $stock = StockQuery::create()->findOneById($newDetail->getStockId(), $con);
                 if ($stock->getUnlimited() == false) {
                     $stock->setAmount($stock->getAmount() - $newDetail->getAmount())->save($con);
                 }
             }
         }
     }
     // if there are any sales detail removed then make sure the stocks get what it deserve... 'gimme amount'
     $removeds = SalesDetailQuery::create()->filterById($params->removed_id)->find($con);
     foreach ($removeds as $removed) {
         $stock = StockQuery::create()->findOneById($removed->getStockId(), $con);
         if ($stock->getUnlimited() == false) {
             $stock->setAmount($stock->getAmount() + $removed->getAmount())->save($con);
         }
         $removed->setStatus('Deleted')->save($con);
     }
     $logData['params'] = $params;
     // log history
     $salesHistory = new SalesHistory();
     $salesHistory->setUserId($currentUser->id)->setSalesId($params->id)->setTime(time())->setOperation('update')->setData(json_encode($logData))->save($con);
     $results['success'] = true;
     $results['id'] = $params->id;
     return $results;
 }
Ejemplo n.º 6
0
 public static function listSales($params, $currentUser, $con)
 {
     // check role's permission
     $permission = RolePermissionQuery::create()->select('read_second_party')->findOneById($currentUser->role_id, $con);
     if (!$permission || $permission != 1) {
         throw new \Exception('Akses ditolak. Anda tidak mempunyai izin untuk melakukan operasi ini.');
     }
     if (!isset($params->customer_id)) {
         throw new \Exception('Missing parameter');
     }
     $start = new \DateTime(Date('Y-m-01'));
     $until = new \DateTime(Date('Y-m-t'));
     $sales = SalesQuery::create()->filterByStatus('Active')->filterBySecondPartyId($params->customer_id)->filterByDate(array('min' => $start, 'max' => $until))->leftJoin('SecondParty')->leftJoin('Cashier')->withColumn('SecondParty.Name', 'second_party_name')->withColumn('Cashier.Name', 'cashier_name')->select(array('id', 'date', 'second_party_id', 'total_price', 'cashier_id'))->orderBy('date', 'ASC')->orderBy('id', 'ASC')->find($con);
     $data = [];
     foreach ($sales as $sale) {
         $data[] = $sale;
     }
     $results['success'] = true;
     $results['data'] = $data;
     return $results;
 }
Ejemplo n.º 7
0
 /**
  * Get the associated ChildSales object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildSales The associated ChildSales object.
  * @throws PropelException
  */
 public function getSales(ConnectionInterface $con = null)
 {
     if ($this->aSales === null && ($this->sales_id !== "" && $this->sales_id !== null)) {
         $this->aSales = ChildSalesQuery::create()->findPk($this->sales_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aSales->addDetails($this);
            */
     }
     return $this->aSales;
 }
Ejemplo n.º 8
0
 /**
  * Performs an INSERT on the database, given a Sales or Criteria object.
  *
  * @param mixed               $criteria Criteria or Sales object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(SalesTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Sales object
     }
     if ($criteria->containsKey(SalesTableMap::COL_ID) && $criteria->keyContainsValue(SalesTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . SalesTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = SalesQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }
Ejemplo n.º 9
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see Sales::setDeleted()
  * @see Sales::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(SalesTableMap::DATABASE_NAME);
     }
     $con->transaction(function () use($con) {
         $deleteQuery = ChildSalesQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $this->setDeleted(true);
         }
     });
 }
Ejemplo n.º 10
0
 /**
  * Returns a new ChildSalesQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildSalesQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildSalesQuery) {
         return $criteria;
     }
     $query = new ChildSalesQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }