示例#1
0
 public function parse($str)
 {
     $multiplier = strlen($str) > 1 ? substr($str, 1) : 1;
     $peek = PrehLib::peekItem(true, CoreLocal::get('currentid'));
     $fp = fopen('/tmp/peek', 'a');
     if ($peek && $peek['trans_type'] == 'I' && $peek['trans_status'] == '') {
         $upcP = new UPC();
         CoreLocal::set('quantity', $multiplier);
         CoreLocal::set('multiple', 1);
         $ret = $upcP->parse($peek['upc']);
         return $ret;
     } else {
         $json = $this->default_json();
         $json['output'] = DisplayLib::boxMsg(_('product cannot be repeated'), _('Ineligible line'), false, DisplayLib::standardClearButton());
         return $json;
     }
 }
示例#2
0
文件: UPCE.php 项目: kostya1017/our
 public static function prep($upc)
 {
     $upc = parent::prep($upc);
     if ($upc[0] !== '0') {
         if (strlen($upc) <= 7) {
             $upc = '0' . $upc;
         } else {
             throw new RangeException('UPC-E must belong to the 0th number system (Start with 0).', 2304);
         }
         // More than max of 09999999
     }
     if (strlen($upc) === 7) {
         $upc = $upc . self::check_sum($upc);
     }
     return $upc;
 }
示例#3
0
 public function testHouseCoupons()
 {
     if (!class_exists('lttLib')) {
         include dirname(__FILE__) . '/lttLib.php';
     }
     /**
       TEST 1: minType M, discountType Q
     */
     lttLib::clear();
     $upc = new UPC();
     $upc->parse('0000000000111');
     $upc->parse('0000000000234');
     $hc = new HouseCoupon();
     $hc->handle('0049999900001', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900001';
     $record['description'] = 'MIXED+QUANTITY';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -2.39;
     $record['total'] = -2.39;
     $record['regPrice'] = -2.39;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     /**
       TEST 2: no minimum, discountType %D 
     */
     lttLib::clear();
     $upc = new UPC();
     $upc->parse('0000000001009');
     $upc->parse('0000000001011');
     $hc = new HouseCoupon();
     $hc->handle('0049999900002', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900002';
     $record['description'] = '%DEPARTMENT';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -0.75;
     $record['total'] = -0.75;
     $record['regPrice'] = -0.75;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     /**
       TEST 3: minimum D, discountType F 
     */
     lttLib::clear();
     $dept = new DeptKey();
     $dept->parse('2300DP10');
     $dept->parse('200DP10');
     $hc = new HouseCoupon();
     $hc->handle('0049999900003', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900003';
     $record['description'] = '5OFF25DEPT';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -5.0;
     $record['total'] = -5.0;
     $record['regPrice'] = -5.0;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     /**
       TEST 4: minimum MX, discountType F 
     */
     lttLib::clear();
     $dept = new DeptKey();
     $dept->parse('900DP10');
     $upc = new UPC();
     $upc->parse('0000000000234');
     $hc = new HouseCoupon();
     $hc->handle('0049999900004', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900004';
     $record['description'] = 'MIXCROSS';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -1.0;
     $record['total'] = -1.0;
     $record['regPrice'] = -1.0;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     /**
       TEST 5: minType Q, discountType PI 
     */
     lttLib::clear();
     $upc = new UPC();
     $upc->parse('0000000000111');
     $upc->parse('0000000000234');
     $hc = new HouseCoupon();
     $hc->handle('0049999900005', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900005';
     $record['description'] = 'PERITEM';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -1.0;
     $record['total'] = -1.0;
     $record['regPrice'] = -1.0;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     /**
       TEST 6: dept qty minimum, discountType %D 
     */
     lttLib::clear();
     $upc = new UPC();
     $upc->parse('0000000001009');
     $upc->parse('0000000001011');
     $hc = new HouseCoupon();
     $hc->handle('0049999900006', array());
     $record = lttLib::genericRecord();
     $record['upc'] = '0049999900006';
     $record['description'] = 'DEPTQTY';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'IC';
     $record['trans_status'] = 'C';
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = -0.75;
     $record['total'] = -0.75;
     $record['regPrice'] = -0.75;
     $record['discountable'] = 1;
     lttLib::verifyRecord(3, $record, $this);
     lttLib::clear();
 }
示例#4
0
 public function testScreenDisplay()
 {
     lttLib::clear();
     $u = new UPC();
     $u->check('666');
     $u->parse('666');
     $records = DisplayLib::screenDisplay(0, 1);
     $item = array('description' => 'EXTRA BAG', 'comment' => '', 'total' => 0.05, 'status' => 'T', 'lineColor' => '004080', 'discounttype' => 0, 'trans_type' => 'I', 'trans_status' => '', 'voided' => 0, 'trans_id' => 1);
     $spec = array(1 => $item);
     $this->assertEquals(count($records), count($spec));
     $view = $this->getViewVersion(0, 2);
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
     }
     $t = new TenderModule('CA', 1.0);
     $t->add();
     $tender = array('description' => '', 'comment' => 'Cash', 'total' => -1.0, 'status' => '', 'lineColor' => '800000', 'discounttype' => 0, 'trans_type' => 'T', 'trans_status' => '', 'voided' => 0, 'trans_id' => 2);
     $spec[2] = $tender;
     $records = DisplayLib::screenDisplay(0, 2);
     $view = $this->getViewVersion(0, 2);
     $this->assertEquals(count($records), count($spec));
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
     }
     CoreLocal::set('memberID', 1);
     CoreLocal::set('isMember', 1);
     CoreLocal::set('percentDiscount', 10);
     CoreLocal::set('memType', 1);
     PrehLib::ttl();
     $notify = array('description' => '** 10% Discount Applied **', 'comment' => '', 'total' => '', 'status' => '', 'lineColor' => '408080', 'discounttype' => 0, 'trans_type' => '0', 'trans_status' => 'D', 'voided' => 4, 'trans_id' => 3);
     $discount = array('description' => '', 'comment' => 'Discount', 'total' => 0.0, 'status' => '', 'lineColor' => '408080', 'discounttype' => 0, 'trans_type' => 'C', 'trans_status' => 'D', 'voided' => 5, 'trans_id' => 4);
     $subtotal = array('description' => 'Subtotal -0.95, Tax0.00 #1', 'comment' => 'Total ', 'total' => -0.95, 'status' => '', 'lineColor' => '000000', 'discounttype' => 0, 'trans_type' => 'C', 'trans_status' => 'D', 'voided' => 3, 'trans_id' => 5);
     $spec[3] = $notify;
     $spec[4] = $discount;
     $spec[5] = $subtotal;
     $records = DisplayLib::screenDisplay(0, 5);
     $view = $this->getViewVersion(0, 5);
     $this->assertEquals(count($records), count($spec));
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
     }
     CoreLocal::set('quantity', 2);
     CoreLocal::set('multiple', 1);
     $u = new UPC();
     $u->check('4627');
     $u->parse('4627');
     $item = array('description' => 'PKALE', 'comment' => '2 @ 1.99', 'total' => 3.98, 'status' => 'F', 'lineColor' => '408080', 'discounttype' => 1, 'trans_type' => 'I', 'trans_status' => '', 'voided' => 0, 'trans_id' => 6);
     $notice = array('description' => '** YOU SAVED $0.60 **', 'comment' => '', 'total' => '', 'status' => '', 'lineColor' => '408080', 'discounttype' => 0, 'trans_type' => 'I', 'trans_status' => 'D', 'voided' => 2, 'trans_id' => 7);
     $spec[6] = $item;
     $spec[7] = $notice;
     $records = DisplayLib::screenDisplay(0, 7);
     $view = $this->getViewVersion(0, 7);
     $this->assertEquals(count($records), count($spec));
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
     }
     CoreLocal::set('quantity', 0);
     CoreLocal::set('multiple', 0);
     CoreLocal::set('currentid', 1);
     $v = new Void();
     $v->check('VD');
     $v->parse('VD');
     $void = array('description' => 'EXTRA BAG', 'comment' => '', 'total' => -0.05, 'status' => 'VD', 'lineColor' => '800000', 'discounttype' => 0, 'trans_type' => 'I', 'trans_status' => 'V', 'voided' => 1, 'trans_id' => 8);
     $spec[8] = $void;
     $spec[1]['voided'] = 1;
     $records = DisplayLib::screenDisplay(0, 8);
     $view = $this->getViewVersion(0, 8);
     $this->assertEquals(count($records), count($spec));
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
     }
     TransRecord::addFsTaxExempt();
     $fs = array('description' => '', 'comment' => 'FS Tax Exempt', 'total' => 0.0, 'status' => '', 'lineColor' => '800000', 'discounttype' => 0, 'trans_type' => 'C', 'trans_status' => 'D', 'voided' => 17, 'trans_id' => 9);
     $spec[9] = $fs;
     $records = DisplayLib::screenDisplay(0, 9);
     $view = $this->getViewVersion(0, 9);
     $this->assertEquals(count($records), count($spec));
     foreach (array_keys($records) as $i) {
         $this->assertArrayHasKey($i, $records);
         $this->assertArrayHasKey($i, $spec);
         $this->compareArrays($records[$i], $spec[$i]);
         $this->compareArrays($records[$i], $view[$i]);
         $this->compareArrays($spec[$i], $view[$i]);
     }
     CoreState::memberReset();
     lttLib::clear();
 }
示例#5
0
文件: UPCA.php 项目: kostya1017/our
 /**
  * Parse the components of a UPC. For UPC-A
  * get the manufacturer's id and the product code
  */
 protected function parse_upc()
 {
     parent::parse_upc();
     $this->man = self::parse_man($this->upc);
     $this->prod = self::parse_prod($this->upc);
 }
示例#6
0
 /**
   Add a taxable, non-foodstampable item record,
   shift it, and verify
 */
 function testTaxFoodShift()
 {
     if (!class_exists('lttLib')) {
         include dirname(__FILE__) . '/lttLib.php';
     }
     lttLib::clear();
     $upc = new UPC();
     $upc->parse('0000000000111');
     $record = lttLib::genericRecord();
     $record['upc'] = '0000000000111';
     $record['description'] = 'WYNDMERE 5-8 DRAM BOTTLE';
     $record['trans_type'] = 'I';
     $record['trans_subtype'] = 'NA';
     $record['trans_status'] = '';
     $record['department'] = 103;
     $record['quantity'] = 1;
     $record['ItemQtty'] = 1;
     $record['unitPrice'] = 1.65;
     $record['total'] = 1.65;
     $record['regPrice'] = 1.65;
     $record['tax'] = 1;
     $record['discountable'] = 1;
     $record['mixMatch'] = '499';
     lttLib::verifyRecord(1, $record, $this);
     $tfs = new TaxFoodShift();
     $tfs->parse('TFS');
     $record['tax'] = 0;
     $record['foodstamp'] = 1;
     lttLib::verifyRecord(1, $record, $this);
     lttLib::clear();
 }