1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php defined('BASEPATH') OR exit('No direct script access allowed');
- class Aatest extends Start_Controller {
- public function __construct(){
- parent::__construct();
- $this->load->library('session');
- $this->load->_model('Model_whlabel','whlabel');
- $this->load->_model('Model_warehouse','warehouse');
- $this->load->_model('Model_productprice','productprice');
- $this->load->_model('Model_excel','excel');
- $this->load->_model('Model_fullorder','fullorder');
- $this->load->_model('Model_fullordertt','fullordertt');
- $this->load->_model('Model_fullordersmt','fullordersmt');
- $this->load->_model('Model_outbound','outbound');
- $this->load->_model('Model_express','express');
- $this->load->_model('Model_shop','shop');
- $this->load->_model('Model_typeclass','typeclass');
- $this->load->_model('Model_country','country');
- $this->load->_model('Model_kdniao','kdniao');
- $this->load->_model('Model_notice','notice');
- $this->load->_model('Model_dhl','dhl');
- $this->load->_model('Model_dhlhz','dhlhz');
- $this->load->_model('Model_usps','usps');
- $this->load->_model('Model_fedex','fedex');
- $this->load->_model('Model_fedex_cby','fedex_cby');
- $this->load->_model('Model_ups','ups');
- $this->load->_model('Model_ali','ali');
- $this->load->_model('Model_dpd','dpd');
- $this->load->_model('Model_shop','shop');
- $this->load->_model('Model_user','user');
- $this->load->_model('Model_whlabel','whlabel');
- $this->load->_model('Model_specialstock','specialstock');
- $this->load->_model('Model_ck','ck');
- $this->load->_model('Model_whlabellabel','whlabellabel');
- $this->load->_model('Model_apiyy','apiyy');
- $this->load->helper('url');
- $this->load->_model('Model_whlabel_fc','whlabel_fc');
- $this->load->_model('Model_systemtransfer','systemtransfer');
- $this->load->_model('Model_classid','classid');
- $this->load->_model('Model_allocation','allocation');
- $this->load->_model('Model_fullorderxw','fullorderxw');
- $this->load->_model('Model_fullorderpaypal','fullorderpaypal');
- //$this->load->_model('Model_fedexv1','fedexv1');
- $this->load->_model('Model_logic_crm','logic_crm');
- $this->load->_model("Model_fullorder","fullorder");
- $this->load->_model("Model_express","express");
- $this->load->_model("Model_logic_ding","logic_ding");
- }
- //定义方法的调用规则 获取URI第二段值
- public function _remap($arg,$arg_array)
- {
-
- if($arg == 'fout')
- {
- $this->_fout();
- }else{
- $this->_a($arg_array);
- }
- }
- public function _a($arg_array){
-
-
- $this->logic_ding->sendToDing("程序测试 20250115 !!换秘钥!!");
- die;
-
- // $d = $this->fullorder->get_number("KISS-50102-034");
- // $ex = $this->express->read($d['express']);
- // ;
-
- // $this->logic_crm->sendOutWarehouse($d,$ex);
- // die;
-
-
-
- }
- public function _fout()
- {
-
- $this->fedexv1->makeAccessToken();
-
- }
- }
|