├── .editorconfig ├── .gitignore ├── README.md ├── doc ├── 2.0.7DB脚本.txt ├── 2.1.0升级文件 │ ├── wms-release_2.1.0b01配置升级说明.txt │ ├── wms_2.1.0数据库信息部添加脚本.sql │ ├── wms_2.1.0数据库升级脚本.sql │ └── 金立wms2.1.0发布说明文档.xlsx ├── 3-4月产品开发月计划需求收集表.xlsx ├── WMS12月需求sprint计划.xlsx ├── WMS1月需求sprint计划.xlsx ├── WMS2.0.5需求sprint计划.xlsx ├── WMS2.0.5需求sprint计划_修改后.xlsx ├── requirement │ ├── WMS产品开发需求收集-12月20号 - 副本.xlsx │ ├── WMS产品开发需求收集-12月20号.xlsx │ └── WMS产品开发需求收集-2月17号.xlsx ├── wms-release-2.0.6_b02更新说明.txt ├── wms-release_2.0.6b01_DB.sql ├── wms-release_2.0.6b01发布说明文档.xlsx ├── wms-release_2.0.6b03发布说明文档.xlsx ├── wms-release_2.0.6b03配置升级说明.txt ├── wms_2.0.6线上数据库升级脚本.sql ├── wms_2.0.6统计报表数据结构.sql ├── wms_2.0.6配置升级说明.txt ├── wms_2.1.0数据库信息部添加脚本.sql ├── wms_2.1.0数据库升级脚本.sql ├── 商品仓管理11月计划 - 副本.xlsx ├── 商品仓管理11月计划.xlsx └── 统计 │ ├── 4.30结余.xls │ ├── 4月入库.xls │ ├── 4月出货-调拨.xls │ ├── 4月出货情况-订单.xls │ ├── 4月退货.xls │ ├── 5月31日结余.xls │ ├── 5月入库.xls │ ├── 5月拒收.xls │ ├── 5月物流.xls │ ├── 5月调拨出库.xls │ ├── 5月调拨退货.xls │ ├── 5月退货.xls │ ├── 5月采购入库.xls │ ├── 5月销售.xls │ ├── 物流仓管发货明细统计.sql │ ├── 退货数据-V2.0.xls │ └── 销售退货.xls ├── lib ├── icepdf-core-6.1.1.jar ├── icepdf-pro-6.1.1.jar ├── icepdf-pro-intl-6.1.1.jar ├── icepdf-viewer-6.1.1.jar ├── openApi-sdk-0.0.2-SNAPSHOT.jar ├── quartz-all-1.6.3.jar ├── taobao-sdk-java-auto_1481783026786-20161215-20161215.jar └── website-1.2.10.jar ├── pom.xml ├── src ├── main │ ├── java │ │ ├── com │ │ │ ├── gionee │ │ │ │ ├── dc │ │ │ │ │ └── web │ │ │ │ │ │ └── service │ │ │ │ │ │ ├── AddSaleInvoice.java │ │ │ │ │ │ ├── AddSaleInvoiceResponse.java │ │ │ │ │ │ ├── AuthInfo.java │ │ │ │ │ │ ├── Exception.java │ │ │ │ │ │ ├── Exception_Exception.java │ │ │ │ │ │ ├── ImeidtlSale.java │ │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ │ ├── SaleInvoice.java │ │ │ │ │ │ ├── impl │ │ │ │ │ │ └── SaleInvoiceImplService.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── wms │ │ │ │ │ ├── aspect │ │ │ │ │ ├── OutlierAspect.java │ │ │ │ │ └── annotation │ │ │ │ │ │ └── OutlierLog.java │ │ │ │ │ ├── common │ │ │ │ │ ├── AESOperator.java │ │ │ │ │ ├── ActionUtils.java │ │ │ │ │ ├── AesUtil.java │ │ │ │ │ ├── ApplicationContextHelper.java │ │ │ │ │ ├── Base64.java │ │ │ │ │ ├── DateConvert.java │ │ │ │ │ ├── EInvoiceConfig.java │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ ├── HttpClientUtil.java │ │ │ │ │ ├── HttpRequestor.java │ │ │ │ │ ├── JaxbUtil.java │ │ │ │ │ ├── JsonUtil.java │ │ │ │ │ ├── JsonUtils.java │ │ │ │ │ ├── LinkMapUtils.java │ │ │ │ │ ├── MD5Util.java │ │ │ │ │ ├── MessageDecode.java │ │ │ │ │ ├── MyCollectionUtils.java │ │ │ │ │ ├── OneBarcodeUtil.java │ │ │ │ │ ├── PasswordUtil.java │ │ │ │ │ ├── PdfUtil.java │ │ │ │ │ ├── PermissionConstants.java │ │ │ │ │ ├── ResultCode.java │ │ │ │ │ ├── SendMailUtil.java │ │ │ │ │ ├── SpringPropertyConfigurer.java │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ ├── TemplateHelper.java │ │ │ │ │ ├── ThreadUtils.java │ │ │ │ │ ├── UUIDGenerator.java │ │ │ │ │ ├── Util.java │ │ │ │ │ ├── ValidateCode.java │ │ │ │ │ ├── WmsConstants.java │ │ │ │ │ ├── XMLUtil.java │ │ │ │ │ ├── XmlHelper1.java │ │ │ │ │ ├── constant │ │ │ │ │ │ └── Consts.java │ │ │ │ │ └── excel │ │ │ │ │ │ ├── ExcelUtil.java │ │ │ │ │ │ ├── Test.java │ │ │ │ │ │ ├── excelexport │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ ├── ExcelModule.java │ │ │ │ │ │ │ └── SheetModule.java │ │ │ │ │ │ ├── userinterface │ │ │ │ │ │ │ └── ExcelExpUtil.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── DateUtil.java │ │ │ │ │ │ │ ├── MapKeyUtil.java │ │ │ │ │ │ │ └── qimen │ │ │ │ │ │ │ ├── QimenHttpclient.java │ │ │ │ │ │ │ └── QimenSign.java │ │ │ │ │ │ └── excelimport │ │ │ │ │ │ ├── bean │ │ │ │ │ │ ├── ExcelData.java │ │ │ │ │ │ ├── ExcelImportException.java │ │ │ │ │ │ ├── ExcelStruct.java │ │ │ │ │ │ ├── ImportCellDesc.java │ │ │ │ │ │ └── SimpleExcelData.java │ │ │ │ │ │ ├── userinterface │ │ │ │ │ │ └── ExcelImportUtil.java │ │ │ │ │ │ ├── util │ │ │ │ │ │ ├── CellRefComparator.java │ │ │ │ │ │ ├── ExcelDataReader.java │ │ │ │ │ │ ├── ExcelDataUtil.java │ │ │ │ │ │ ├── ParseXMLUtil.java │ │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ │ └── ValidateUtil.java │ │ │ │ │ │ ├── validate │ │ │ │ │ │ ├── AbstractValidator.java │ │ │ │ │ │ ├── LengthValidator.java │ │ │ │ │ │ └── NotNullValidator.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ ├── excelImport.dtd │ │ │ │ │ │ ├── excel_desc.xml │ │ │ │ │ │ ├── sample_cdata.xml │ │ │ │ │ │ └── template_cdata.xml │ │ │ │ │ ├── dao │ │ │ │ │ ├── ActivityDao.java │ │ │ │ │ ├── AttachmentDao.java │ │ │ │ │ ├── AttrSetDao.java │ │ │ │ │ ├── BackDao.java │ │ │ │ │ ├── BatisDao.java │ │ │ │ │ ├── CategoryDao.java │ │ │ │ │ ├── CheckDao.java │ │ │ │ │ ├── CommonDao.java │ │ │ │ │ ├── DbPropertyDao.java │ │ │ │ │ ├── DeliveryBatchDao.java │ │ │ │ │ ├── DeliveryDao.java │ │ │ │ │ ├── IndivDao.java │ │ │ │ │ ├── InvoiceInfoDao.java │ │ │ │ │ ├── LogDao.java │ │ │ │ │ ├── ManualReissueOrderDao.java │ │ │ │ │ ├── OperationDao.java │ │ │ │ │ ├── OrderOutlierDao.java │ │ │ │ │ ├── OrderOutlierLogDao.java │ │ │ │ │ ├── PurPreRecvDao.java │ │ │ │ │ ├── PurchaseDao.java │ │ │ │ │ ├── ReceiveDao.java │ │ │ │ │ ├── SalesOrderDao.java │ │ │ │ │ ├── SalesOrderImeiDao.java │ │ │ │ │ ├── SalesOrderLogDao.java │ │ │ │ │ ├── SalesOrderMapDao.java │ │ │ │ │ ├── SalesOrderNodeInfoDao.java │ │ │ │ │ ├── SalesOrderPushInfoDao.java │ │ │ │ │ ├── ShippingDao.java │ │ │ │ │ ├── ShippingInfoDao.java │ │ │ │ │ ├── SkuAttrDao.java │ │ │ │ │ ├── SkuMapDao.java │ │ │ │ │ ├── StatDao.java │ │ │ │ │ ├── StockDao.java │ │ │ │ │ ├── StockInDao.java │ │ │ │ │ ├── StockOutDao.java │ │ │ │ │ ├── StorePlatformDao.java │ │ │ │ │ ├── SupplierDao.java │ │ │ │ │ ├── SystemConfigDao.java │ │ │ │ │ ├── TransferDao.java │ │ │ │ │ ├── TransferRmoDao.java │ │ │ │ │ ├── UcUserDao.java │ │ │ │ │ ├── WarehouseDao.java │ │ │ │ │ ├── WaresDao.java │ │ │ │ │ ├── WaresPutawayDao.java │ │ │ │ │ └── WorkOrderDao.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── AjaxResult.java │ │ │ │ │ ├── BaseParam.java │ │ │ │ │ ├── CommonAjaxResult.java │ │ │ │ │ ├── CommonResult.java │ │ │ │ │ ├── Data.java │ │ │ │ │ ├── DataDescription.java │ │ │ │ │ ├── DeliverySummary.java │ │ │ │ │ ├── DeltaResult.java │ │ │ │ │ ├── ExcelModel.java │ │ │ │ │ ├── GlobalInfo.java │ │ │ │ │ ├── KpContentResp.java │ │ │ │ │ ├── KpInterface.java │ │ │ │ │ ├── Menu.java │ │ │ │ │ ├── Page.java │ │ │ │ │ ├── PageResult.java │ │ │ │ │ ├── QueryMap.java │ │ │ │ │ ├── ReceiveSummary.java │ │ │ │ │ ├── ReturnStateInfo.java │ │ │ │ │ ├── SendRequest.java │ │ │ │ │ ├── ShippingSummary.java │ │ │ │ │ ├── ShiroUser.java │ │ │ │ │ ├── SkuStocksDto.java │ │ │ │ │ ├── SpContactsEditModel.java │ │ │ │ │ ├── SpMContactsPhoneValue.java │ │ │ │ │ ├── SsoGetMenuResult.java │ │ │ │ │ ├── SsoLoginCheckResult.java │ │ │ │ │ ├── SsoValidateTicketResult.java │ │ │ │ │ ├── StockRequest.java │ │ │ │ │ ├── StockSyncDto.java │ │ │ │ │ ├── TrustedSsoAuthenticationToken.java │ │ │ │ │ └── XzContentResp.java │ │ │ │ │ ├── entity │ │ │ │ │ ├── Activity.java │ │ │ │ │ ├── Attachment.java │ │ │ │ │ ├── AttrSet.java │ │ │ │ │ ├── Authorization.java │ │ │ │ │ ├── Back.java │ │ │ │ │ ├── BackGoods.java │ │ │ │ │ ├── Category.java │ │ │ │ │ ├── Check.java │ │ │ │ │ ├── CheckGoods.java │ │ │ │ │ ├── CheckItem.java │ │ │ │ │ ├── CheckStatusException.java │ │ │ │ │ ├── CheckTask.java │ │ │ │ │ ├── DailyStock.java │ │ │ │ │ ├── DailyStockTemp.java │ │ │ │ │ ├── DbProperty.java │ │ │ │ │ ├── Delivery.java │ │ │ │ │ ├── DeliveryBatch.java │ │ │ │ │ ├── DeliveryGoods.java │ │ │ │ │ ├── Indiv.java │ │ │ │ │ ├── IndivFlow.java │ │ │ │ │ ├── IndivScanItem.java │ │ │ │ │ ├── InvoiceInfo.java │ │ │ │ │ ├── Log.java │ │ │ │ │ ├── ManualReissueOrder.java │ │ │ │ │ ├── ManualReissueOrderGoods.java │ │ │ │ │ ├── OperationLog.java │ │ │ │ │ ├── OrderItem.java │ │ │ │ │ ├── OrderOutlier.java │ │ │ │ │ ├── OrderOutlierLog.java │ │ │ │ │ ├── Payment.java │ │ │ │ │ ├── PhysicalDetailItem.java │ │ │ │ │ ├── PurPreRecv.java │ │ │ │ │ ├── PurPreRecvGoods.java │ │ │ │ │ ├── Purchase.java │ │ │ │ │ ├── PurchaseGoods.java │ │ │ │ │ ├── Receive.java │ │ │ │ │ ├── ReceiveGoods.java │ │ │ │ │ ├── RmaSalesOrder.java │ │ │ │ │ ├── SaleStat.java │ │ │ │ │ ├── SalesOrder.java │ │ │ │ │ ├── SalesOrderGoods.java │ │ │ │ │ ├── SalesOrderImei.java │ │ │ │ │ ├── SalesOrderLog.java │ │ │ │ │ ├── SalesOrderMap.java │ │ │ │ │ ├── SalesOrderNodeInfo.java │ │ │ │ │ ├── SalesOrderPushInfo.java │ │ │ │ │ ├── SalesOutStat.java │ │ │ │ │ ├── Shipping.java │ │ │ │ │ ├── ShippingInfo.java │ │ │ │ │ ├── Sku.java │ │ │ │ │ ├── SkuAttr.java │ │ │ │ │ ├── SkuBomDetail.java │ │ │ │ │ ├── SkuItem.java │ │ │ │ │ ├── SkuMap.java │ │ │ │ │ ├── Stock.java │ │ │ │ │ ├── StockChange.java │ │ │ │ │ ├── StockCheckTask.java │ │ │ │ │ ├── StockDelta.java │ │ │ │ │ ├── StockHistory.java │ │ │ │ │ ├── StockIn.java │ │ │ │ │ ├── StockInItem.java │ │ │ │ │ ├── StockOut.java │ │ │ │ │ ├── StockOutItem.java │ │ │ │ │ ├── StorePlatform.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SystemConfig.java │ │ │ │ │ ├── Transfer.java │ │ │ │ │ ├── TransferGoods.java │ │ │ │ │ ├── TransferPartner.java │ │ │ │ │ ├── TransferRemove.java │ │ │ │ │ ├── TransferRemoveDetail.java │ │ │ │ │ ├── UcUser.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── Warehouse.java │ │ │ │ │ ├── Wares.java │ │ │ │ │ ├── WaresPutaway.java │ │ │ │ │ └── WorkOrder.java │ │ │ │ │ ├── facade │ │ │ │ │ ├── OrderManager.java │ │ │ │ │ ├── OrderManagerImpl.java │ │ │ │ │ ├── StockManager.java │ │ │ │ │ ├── StockManagerImpl.java │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── OrderGoodsDTO.java │ │ │ │ │ │ ├── OrderInfoDTO.java │ │ │ │ │ │ ├── OrderNotifyDTO.java │ │ │ │ │ │ ├── OrderNotifyGoodsDTO.java │ │ │ │ │ │ ├── SalesOrderDTO.java │ │ │ │ │ │ └── StockInfoDTO.java │ │ │ │ │ ├── request │ │ │ │ │ │ ├── OperateOrderRequest.java │ │ │ │ │ │ └── SyncOrderRequest.java │ │ │ │ │ └── result │ │ │ │ │ │ ├── CommonResult.java │ │ │ │ │ │ ├── OperateOrderResult.java │ │ │ │ │ │ ├── QueryOrderResult.java │ │ │ │ │ │ ├── QueryStockResult.java │ │ │ │ │ │ ├── SyncOrderResult.java │ │ │ │ │ │ └── WmsResult.java │ │ │ │ │ ├── jedis │ │ │ │ │ ├── MyShardedJedisPool.java │ │ │ │ │ ├── RedisClientTemplate.java │ │ │ │ │ ├── RedisDataSource.java │ │ │ │ │ └── RedisDataSourceImpl.java │ │ │ │ │ ├── job │ │ │ │ │ ├── DailyStockTask.java │ │ │ │ │ ├── DownloadEInvoiceFileTask.java │ │ │ │ │ ├── EInvoiceJob.java │ │ │ │ │ ├── IndivPushJob.java │ │ │ │ │ ├── KuaidiFilterJob.java │ │ │ │ │ ├── OrderNotifyJob.java │ │ │ │ │ ├── OrderPushSFJob.java │ │ │ │ │ ├── OrderStatTask.java │ │ │ │ │ ├── ResetJHBatchCodeTask.java │ │ │ │ │ ├── StockDeltaTask.java │ │ │ │ │ ├── SyncSfSkuMapTask.java │ │ │ │ │ ├── SyncStockTask.java │ │ │ │ │ ├── SyncTaobaoOrderTask.java │ │ │ │ │ ├── SyncTaobaoOrderThread.java │ │ │ │ │ ├── SyncVipOrderTask.java │ │ │ │ │ ├── TransferJobTask.java │ │ │ │ │ └── TransferStatusTask.java │ │ │ │ │ ├── kuaidi │ │ │ │ │ ├── JacksonHelper.java │ │ │ │ │ └── pojo │ │ │ │ │ │ ├── MapCustomConverter.java │ │ │ │ │ │ ├── NoticeRequest.java │ │ │ │ │ │ ├── NoticeResponse.java │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ ├── ResultItem.java │ │ │ │ │ │ ├── TaskRequest.java │ │ │ │ │ │ └── TaskResponse.java │ │ │ │ │ ├── listener │ │ │ │ │ ├── ConnectionLifeCycleListenerImpl.java │ │ │ │ │ └── TopCometMessageListenerImpl.java │ │ │ │ │ ├── message │ │ │ │ │ ├── service │ │ │ │ │ │ ├── MessageService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── MessageServiceImpl.java │ │ │ │ │ └── util │ │ │ │ │ │ └── DwrScriptSessionManagerUtil.java │ │ │ │ │ ├── service │ │ │ │ │ ├── ServiceException.java │ │ │ │ │ ├── account │ │ │ │ │ │ ├── AccountService.java │ │ │ │ │ │ ├── AccountServiceImpl.java │ │ │ │ │ │ ├── OperationLogService.java │ │ │ │ │ │ ├── OperationLogServiceImpl.java │ │ │ │ │ │ └── ShiroDatabaseRealm.java │ │ │ │ │ ├── activity │ │ │ │ │ │ ├── ActivityService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── ActivityServiceImpl.java │ │ │ │ │ ├── basis │ │ │ │ │ │ ├── PaymentService.java │ │ │ │ │ │ ├── PaymentServiceImpl.java │ │ │ │ │ │ ├── ShippingInfoService.java │ │ │ │ │ │ ├── ShippingInfoServiceImpl.java │ │ │ │ │ │ ├── ShippingService.java │ │ │ │ │ │ ├── ShippingServiceImpl.java │ │ │ │ │ │ ├── SupplierService.java │ │ │ │ │ │ ├── SupplierServiceImpl.java │ │ │ │ │ │ ├── TemplateService.java │ │ │ │ │ │ ├── TemplateServiceImpl.java │ │ │ │ │ │ ├── WarehouseService.java │ │ │ │ │ │ └── WarehouseServiceImpl.java │ │ │ │ │ ├── common │ │ │ │ │ │ ├── CommonService.java │ │ │ │ │ │ ├── CommonServiceImpl.java │ │ │ │ │ │ ├── DatabaseIDGenerator.java │ │ │ │ │ │ ├── IDGenerator.java │ │ │ │ │ │ ├── MailService.java │ │ │ │ │ │ ├── MailServiceImpl.java │ │ │ │ │ │ ├── TimerSchedule.java │ │ │ │ │ │ └── UpdDestJsonTimerSchedule.java │ │ │ │ │ ├── log │ │ │ │ │ │ ├── LogService.java │ │ │ │ │ │ ├── LogServiceImpl.java │ │ │ │ │ │ ├── OrderOutlierLogService.java │ │ │ │ │ │ ├── OrderOutlierLogServiceImpl.java │ │ │ │ │ │ ├── SalesOrderLogService.java │ │ │ │ │ │ └── SalesOrderLogServiceImpl.java │ │ │ │ │ ├── stat │ │ │ │ │ │ ├── OrderStatService.java │ │ │ │ │ │ └── OrderStatServiceImpl.java │ │ │ │ │ ├── stock │ │ │ │ │ │ ├── AttachmentService.java │ │ │ │ │ │ ├── AttachmentServiceImpl.java │ │ │ │ │ │ ├── BackService.java │ │ │ │ │ │ ├── BackServiceImpl.java │ │ │ │ │ │ ├── ChBuilder.java │ │ │ │ │ │ ├── CheckService.java │ │ │ │ │ │ ├── CheckServiceImpl.java │ │ │ │ │ │ ├── DeliveryService.java │ │ │ │ │ │ ├── DeliveryServiceImpl.java │ │ │ │ │ │ ├── DockSfService.java │ │ │ │ │ │ ├── DockSfServiceImpl.java │ │ │ │ │ │ ├── EInvoiceBuildService.java │ │ │ │ │ │ ├── EInvoiceDir.java │ │ │ │ │ │ ├── EInvoiceFileHandler.java │ │ │ │ │ │ ├── EInvoiceService.java │ │ │ │ │ │ ├── EInvoiceServiceImpl.java │ │ │ │ │ │ ├── EwmGenerate.java │ │ │ │ │ │ ├── EwmGenerateService.java │ │ │ │ │ │ ├── InvoiceInfoService.java │ │ │ │ │ │ ├── InvoiceInfoServiceImpl.java │ │ │ │ │ │ ├── KpBuilder.java │ │ │ │ │ │ ├── KuaidiService.java │ │ │ │ │ │ ├── KuaidiServiceImpl.java │ │ │ │ │ │ ├── ManualReissueOrderService.java │ │ │ │ │ │ ├── ManualReissueOrderServiceImpl.java │ │ │ │ │ │ ├── OrderOutlierService.java │ │ │ │ │ │ ├── OrderOutlierServiceImpl.java │ │ │ │ │ │ ├── OrderReportService.java │ │ │ │ │ │ ├── OrderReportServiceImpl.java │ │ │ │ │ │ ├── PurchaseService.java │ │ │ │ │ │ ├── PurchaseServiceImpl.java │ │ │ │ │ │ ├── QimenBusinessService.java │ │ │ │ │ │ ├── QimenBusinessServiceImpl.java │ │ │ │ │ │ ├── ReceiveService.java │ │ │ │ │ │ ├── ReceiveServiceImpl.java │ │ │ │ │ │ ├── SFWebService.java │ │ │ │ │ │ ├── SFWebServiceImpl.java │ │ │ │ │ │ ├── SalesOrderMapService.java │ │ │ │ │ │ ├── SalesOrderMapServiceImpl.java │ │ │ │ │ │ ├── SalesOrderNodeInfoService.java │ │ │ │ │ │ ├── SalesOrderNodeInfoServiceImpl.java │ │ │ │ │ │ ├── SalesOrderService.java │ │ │ │ │ │ ├── SalesOrderServiceImpl.java │ │ │ │ │ │ ├── StockInService.java │ │ │ │ │ │ ├── StockInServiceImpl.java │ │ │ │ │ │ ├── StockOutService.java │ │ │ │ │ │ ├── StockOutServiceImpl.java │ │ │ │ │ │ ├── StockService.java │ │ │ │ │ │ ├── StockServiceImpl.java │ │ │ │ │ │ ├── StorePlatformService.java │ │ │ │ │ │ ├── StorePlatformServiceImpl.java │ │ │ │ │ │ ├── SystemConfigService.java │ │ │ │ │ │ ├── SystemConfigServiceImpl.java │ │ │ │ │ │ ├── TransferRmoService.java │ │ │ │ │ │ ├── TransferRmoServiceImpl.java │ │ │ │ │ │ ├── TransferService.java │ │ │ │ │ │ ├── TransferServiceImpl.java │ │ │ │ │ │ ├── UcUserService.java │ │ │ │ │ │ ├── UcUserServiceImpl.java │ │ │ │ │ │ ├── UpdDestJsonService.java │ │ │ │ │ │ ├── UpdDestJsonServiceImpl.java │ │ │ │ │ │ ├── WorkOrderService.java │ │ │ │ │ │ ├── WorkOrderServiceImpl.java │ │ │ │ │ │ └── XzBuilder.java │ │ │ │ │ └── wares │ │ │ │ │ │ ├── AttrSetService.java │ │ │ │ │ │ ├── AttrSetServiceImpl.java │ │ │ │ │ │ ├── CategoryService.java │ │ │ │ │ │ ├── CategoryServiceImpl.java │ │ │ │ │ │ ├── IndivService.java │ │ │ │ │ │ ├── IndivServiceImpl.java │ │ │ │ │ │ ├── SkuAttrService.java │ │ │ │ │ │ ├── SkuAttrServiceImpl.java │ │ │ │ │ │ ├── SkuMapService.java │ │ │ │ │ │ ├── SkuMapServiceImpl.java │ │ │ │ │ │ ├── WaresPutawayService.java │ │ │ │ │ │ ├── WaresPutawayServiceImpl.java │ │ │ │ │ │ ├── WaresService.java │ │ │ │ │ │ └── WaresServiceImpl.java │ │ │ │ │ ├── vo │ │ │ │ │ ├── BackGoodsVo.java │ │ │ │ │ ├── CategoryVo.java │ │ │ │ │ ├── DeliveryDetails.java │ │ │ │ │ ├── OrderStatusStatVo.java │ │ │ │ │ ├── OrderStatusVo.java │ │ │ │ │ ├── SalesOrderVo.java │ │ │ │ │ ├── SalesStatVo.java │ │ │ │ │ ├── SapPostData.java │ │ │ │ │ ├── ServiceCtrlMessage.java │ │ │ │ │ ├── ShippingParamVo.java │ │ │ │ │ ├── ShippingResultVo.java │ │ │ │ │ ├── SkuVo.java │ │ │ │ │ ├── TransferStatVo.java │ │ │ │ │ ├── UpdDestJsonRequestVo.java │ │ │ │ │ └── UpdDestJsonResponseVo.java │ │ │ │ │ └── web │ │ │ │ │ ├── AccessException.java │ │ │ │ │ ├── BaseConfigListener.java │ │ │ │ │ ├── PropertiesConfigListener.java │ │ │ │ │ ├── action │ │ │ │ │ ├── AjaxActionSupport.java │ │ │ │ │ ├── CrudActionSupport.java │ │ │ │ │ ├── account │ │ │ │ │ │ ├── CodeAction.java │ │ │ │ │ │ ├── LoginAction.java │ │ │ │ │ │ └── OperationLogAction.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── EInvoiceApiAction.java │ │ │ │ │ │ ├── KuaidiAction.java │ │ │ │ │ │ ├── ShippingAction.java │ │ │ │ │ │ ├── SkuAction.java │ │ │ │ │ │ ├── WaresCategoryAction.java │ │ │ │ │ │ └── WmsAction.java │ │ │ │ │ ├── basis │ │ │ │ │ │ ├── AuthorizationAction.java │ │ │ │ │ │ ├── PrintableTemplateAction.java │ │ │ │ │ │ ├── ShippingAction.java │ │ │ │ │ │ ├── SupplierAction.java │ │ │ │ │ │ └── WarehouseAction.java │ │ │ │ │ ├── log │ │ │ │ │ │ └── LogAction.java │ │ │ │ │ ├── report │ │ │ │ │ │ ├── DailyStockDetailAction.java │ │ │ │ │ │ ├── DeliveryReportAction.java │ │ │ │ │ │ ├── FinanceReportAction.java │ │ │ │ │ │ ├── KuaidiReportAction.java │ │ │ │ │ │ ├── OrderInFactAction.java │ │ │ │ │ │ ├── ReceiveReportAction.java │ │ │ │ │ │ ├── SaleReportAction.java │ │ │ │ │ │ └── UserAreaAction.java │ │ │ │ │ ├── stock │ │ │ │ │ │ ├── BackAction.java │ │ │ │ │ │ ├── CheckDetailAction.java │ │ │ │ │ │ ├── DeliveryAction.java │ │ │ │ │ │ ├── DeliveryBatchAction.java │ │ │ │ │ │ ├── InvoiceInfoAction.java │ │ │ │ │ │ ├── ManualReissueOrderAction.java │ │ │ │ │ │ ├── OrderBackAction.java │ │ │ │ │ │ ├── PurPreRecvAction.java │ │ │ │ │ │ ├── PurchaseRecvAction.java │ │ │ │ │ │ ├── RmaInAction.java │ │ │ │ │ │ ├── RmaRecvAction.java │ │ │ │ │ │ ├── SalesOrderAction.java │ │ │ │ │ │ ├── SalesPrepareAction.java │ │ │ │ │ │ ├── ShortcutRecvAction.java │ │ │ │ │ │ ├── StockAction.java │ │ │ │ │ │ ├── StockChangeAction.java │ │ │ │ │ │ ├── StockCheckAction.java │ │ │ │ │ │ ├── StockInAction.java │ │ │ │ │ │ ├── StockOutAction.java │ │ │ │ │ │ ├── TestAction.java │ │ │ │ │ │ ├── TransPrepareAction.java │ │ │ │ │ │ ├── TransPrepareSfAction.java │ │ │ │ │ │ ├── TransferAction.java │ │ │ │ │ │ ├── TransferRmoAction.java │ │ │ │ │ │ ├── TransferSfAction.java │ │ │ │ │ │ └── base │ │ │ │ │ │ │ └── TransPrepareBaseAction.java │ │ │ │ │ └── wares │ │ │ │ │ │ ├── AttrSetAction.java │ │ │ │ │ │ ├── CategoryAction.java │ │ │ │ │ │ ├── IndivAction.java │ │ │ │ │ │ ├── SkuAction.java │ │ │ │ │ │ ├── SkuAttrAction.java │ │ │ │ │ │ ├── SkuMapAction.java │ │ │ │ │ │ └── WaresAction.java │ │ │ │ │ ├── client │ │ │ │ │ ├── HttpUtil.java │ │ │ │ │ ├── OCClient.java │ │ │ │ │ ├── OrderCenterClient.java │ │ │ │ │ ├── SsoClient.java │ │ │ │ │ └── SyncVipOrderClient.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── ActivityController.java │ │ │ │ │ ├── AttachmentController.java │ │ │ │ │ ├── InvoiceController.java │ │ │ │ │ ├── OrderOutlierController.java │ │ │ │ │ ├── OrderOutlierLogController.java │ │ │ │ │ ├── OrderReportController.java │ │ │ │ │ ├── RmaController.java │ │ │ │ │ ├── StorePlatformController.java │ │ │ │ │ ├── TransferController.java │ │ │ │ │ ├── UcUserController.java │ │ │ │ │ ├── WaresPutawayController.java │ │ │ │ │ └── WorkOrderController.java │ │ │ │ │ ├── extend │ │ │ │ │ ├── DwzMessage.java │ │ │ │ │ ├── ExtendExceptionResolver.java │ │ │ │ │ ├── ExtendFreeMarkerView.java │ │ │ │ │ ├── ExtendObjectMapper.java │ │ │ │ │ ├── PageArgumentResolver.java │ │ │ │ │ ├── QueryMapArgumentResolver.java │ │ │ │ │ └── StringToDate.java │ │ │ │ │ ├── filter │ │ │ │ │ ├── LogInterceptor.java │ │ │ │ │ ├── SessionIterceptor.java │ │ │ │ │ ├── ShiroAuthenticationFilter.java │ │ │ │ │ ├── ShiroAuthorizationFilter.java │ │ │ │ │ └── ShiroLogoutFilter.java │ │ │ │ │ ├── servlet │ │ │ │ │ └── DockSFServlet.java │ │ │ │ │ └── ws │ │ │ │ │ ├── PurchaseSoapService.java │ │ │ │ │ ├── PurchaseSoapServiceImpl.java │ │ │ │ │ ├── interceptor │ │ │ │ │ ├── AccessController.java │ │ │ │ │ ├── IpAddressInterceptor.java │ │ │ │ │ ├── ReadHeaderIntercepter.java │ │ │ │ │ └── WriteHeaderInterceptor.java │ │ │ │ │ └── response │ │ │ │ │ ├── PushPurchaseResult.java │ │ │ │ │ ├── WSResult.java │ │ │ │ │ └── dto │ │ │ │ │ ├── PurPreRecvDTO.java │ │ │ │ │ └── PurPreRecvGoodsDTO.java │ │ │ ├── routdata │ │ │ │ └── zzfw │ │ │ │ │ └── webservice │ │ │ │ │ └── service │ │ │ │ │ ├── AddSoapHeader.java │ │ │ │ │ ├── BusinessException.java │ │ │ │ │ ├── BusinessException_Exception.java │ │ │ │ │ ├── EMSUtil.java │ │ │ │ │ ├── IMailQueryService.java │ │ │ │ │ ├── MailQueryServiceImplService.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── OrderCodeUtils.java │ │ │ │ │ ├── QueryMail.java │ │ │ │ │ ├── QueryMailResponse.java │ │ │ │ │ ├── SQLException.java │ │ │ │ │ ├── SQLException_Exception.java │ │ │ │ │ ├── SysException.java │ │ │ │ │ ├── SysException_Exception.java │ │ │ │ │ └── package-info.java │ │ │ └── sf │ │ │ │ └── integration │ │ │ │ ├── expressservice │ │ │ │ ├── bean │ │ │ │ │ ├── OrderFilterRespBean.java │ │ │ │ │ ├── OrderFilterRespBody.java │ │ │ │ │ ├── OrderFilterResponse.java │ │ │ │ │ ├── Route.java │ │ │ │ │ ├── RouteRequest.java │ │ │ │ │ ├── RouteRespBean.java │ │ │ │ │ ├── RouteResponse.java │ │ │ │ │ ├── RouteResponseBody.java │ │ │ │ │ └── SFError.java │ │ │ │ └── service │ │ │ │ │ ├── CommonExpressServiceService.java │ │ │ │ │ ├── IExpressService.java │ │ │ │ │ ├── IExpressServiceImpl.java │ │ │ │ │ ├── IExpressService_CommonExpressServicePort_Client.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── SfTest.java │ │ │ │ │ ├── SfexpressService.java │ │ │ │ │ ├── SfexpressServiceResponse.java │ │ │ │ │ └── package-info.java │ │ │ │ └── warehouse │ │ │ │ ├── bean │ │ │ │ └── Item.java │ │ │ │ ├── request │ │ │ │ ├── WmsInventoryBalancePageQueryRequest.java │ │ │ │ ├── WmsMerchantCatalogBatchRequest.java │ │ │ │ ├── WmsPurchaseOrderQueryRequest.java │ │ │ │ ├── WmsPurchaseOrderRequest.java │ │ │ │ ├── WmsPurchaseOrderRequestHeader.java │ │ │ │ ├── WmsPurchaseOrderRequestItem.java │ │ │ │ ├── WmsRealTimeInventoryBalanceQueryRequest.java │ │ │ │ ├── WmsRequest.java │ │ │ │ ├── WmsSailOrderPushInfo.java │ │ │ │ ├── WmsSailOrderPushInfoContainerItem.java │ │ │ │ ├── WmsSailOrderPushInfoDetailItem.java │ │ │ │ ├── WmsSailOrderPushInfoHeader.java │ │ │ │ ├── WmsSailOrderRequest.java │ │ │ │ ├── WmsSailOrderRequestHeader.java │ │ │ │ └── WwmsSailOrderRequestItem.java │ │ │ │ ├── response │ │ │ │ ├── DockSFResponse.java │ │ │ │ ├── JaxbDateAdapter.java │ │ │ │ ├── ResultAdapter.java │ │ │ │ ├── WmsInventoryBalancePageQueryResponse.java │ │ │ │ ├── WmsInventoryBalancePageQueryResponseItem.java │ │ │ │ ├── WmsMerchantCatalogBatchResponse.java │ │ │ │ ├── WmsPurchaseOrderQueryResponse.java │ │ │ │ ├── WmsPurchaseOrderQueryResponseHeader.java │ │ │ │ ├── WmsPurchaseOrderQueryResponseItem.java │ │ │ │ ├── WmsPurchaseOrderResponse.java │ │ │ │ ├── WmsRealTimeInventoryBalanceQueryResponse.java │ │ │ │ ├── WmsRealTimeInventoryBalanceQueryResponseItem.java │ │ │ │ ├── WmsRealTimeInventoryBalanceQueryResponseItemDetail.java │ │ │ │ ├── WmsResponse.java │ │ │ │ └── WmsSailOrderResponse.java │ │ │ │ └── service │ │ │ │ ├── IOutsideToLscmService.java │ │ │ │ ├── JyToLscmService.java │ │ │ │ ├── JyToLscmServiceResponse.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── OutsideToLscmService.java │ │ │ │ ├── OutsideToLscmServiceResponse.java │ │ │ │ ├── OutsideToLscmServiceService.java │ │ │ │ ├── YxToLscmService.java │ │ │ │ ├── YxToLscmServiceResponse.java │ │ │ │ └── package-info.java │ │ └── org │ │ │ └── icepdf │ │ │ └── core │ │ │ ├── application │ │ │ └── ProductInfo.java │ │ │ └── pobjects │ │ │ └── graphics │ │ │ └── Padding.java │ ├── main1.iml │ ├── resources │ │ ├── config │ │ │ ├── excel │ │ │ │ ├── check_exp_templete.xls │ │ │ │ ├── check_imp_data.xls │ │ │ │ ├── check_imp_desc.xml │ │ │ │ ├── check_imp_indiv_data.xls │ │ │ │ ├── check_imp_indiv_desc.xml │ │ │ │ ├── distinfo_exp_templete.xls │ │ │ │ ├── salesorder_template.xls │ │ │ │ ├── stock_check_list(7).xls │ │ │ │ ├── tansfer_goods_imp_data.xls │ │ │ │ ├── tansfer_goods_imp_desc.xml │ │ │ │ ├── tansfer_imp_data.xls │ │ │ │ └── tansfer_imp_desc.xml │ │ │ ├── ibatis │ │ │ │ ├── ActivityMapper.xml │ │ │ │ ├── AttachmentMapper.xml │ │ │ │ ├── AttrSetMapper.xml │ │ │ │ ├── BackMapper.xml │ │ │ │ ├── CategoryMapper.xml │ │ │ │ ├── CommonMapper.xml │ │ │ │ ├── DbPropertyMapper.xml │ │ │ │ ├── DeliveryBatchMapper.xml │ │ │ │ ├── DeliveryMapper.xml │ │ │ │ ├── IndivMapper.xml │ │ │ │ ├── InvoiceInfoMapper.xml │ │ │ │ ├── LogMapper.xml │ │ │ │ ├── ManualReissueOrderMapper.xml │ │ │ │ ├── OperationLogMapper.xml │ │ │ │ ├── OrderOutlierLogMapper.xml │ │ │ │ ├── OrderOutlierMapper.xml │ │ │ │ ├── PurPreRecvMapper.xml │ │ │ │ ├── PurchaseMapper.xml │ │ │ │ ├── ReceiveMapper.xml │ │ │ │ ├── SalesOrderImeiMapper.xml │ │ │ │ ├── SalesOrderLogMapper.xml │ │ │ │ ├── SalesOrderMapMapper.xml │ │ │ │ ├── SalesOrderMapper.xml │ │ │ │ ├── SalesOrderNodeInfoMapper.xml │ │ │ │ ├── SalesOrderPushInfoMapper.xml │ │ │ │ ├── ShippingInfoMapper.xml │ │ │ │ ├── ShippingMapper.xml │ │ │ │ ├── SkuAttrMapper.xml │ │ │ │ ├── SkuMapMapper.xml │ │ │ │ ├── StatMapper.xml │ │ │ │ ├── StockCheckMapper.xml │ │ │ │ ├── StockInMapper.xml │ │ │ │ ├── StockMapper.xml │ │ │ │ ├── StockOutMapper.xml │ │ │ │ ├── StorePlatformMapper.xml │ │ │ │ ├── SupplierMapper.xml │ │ │ │ ├── SystemConfigMapper.xml │ │ │ │ ├── TransferMapper.xml │ │ │ │ ├── TransferRmoMapper.xml │ │ │ │ ├── UcUserMapper.xml │ │ │ │ ├── WarehouseMapper.xml │ │ │ │ ├── WaresMapper.xml │ │ │ │ ├── WaresPutawayMapper.xml │ │ │ │ └── WorkOrderMapper.xml │ │ │ ├── ipList.xml │ │ │ ├── log │ │ │ │ ├── log4j.dtd │ │ │ │ └── log4j.xml │ │ │ ├── spring │ │ │ │ ├── ehcache-shiro.xml │ │ │ │ ├── spring-web.xml │ │ │ │ ├── spring-wms-jdbc.xml │ │ │ │ ├── spring-wms-serivce.xml │ │ │ │ ├── spring-wms-serivce.xml.2 │ │ │ │ └── spring-wms-shiro.xml │ │ │ └── struts │ │ │ │ ├── struts-account.xml │ │ │ │ ├── struts-api.xml │ │ │ │ ├── struts-basis.xml │ │ │ │ ├── struts-log.xml │ │ │ │ ├── struts-report.xml │ │ │ │ ├── struts-stock.xml │ │ │ │ └── struts-wares.xml │ │ ├── ftl │ │ │ ├── e-invoice-down-content.ftl │ │ │ ├── e-invoice-make-content.ftl │ │ │ ├── e-invoice.ftl │ │ │ ├── e-sf-cancel.ftl │ │ │ ├── e-sf-create.ftl │ │ │ ├── ewmGenerate.json │ │ │ └── invoice-mail.html │ │ ├── jhBatchCode.txt │ │ ├── struts.xml │ │ ├── wms-dbconfig.properties │ │ ├── wms.properties │ │ └── wms.properties.bck │ └── webapp │ │ ├── WEB-INF │ │ ├── dwr.xml │ │ ├── ftl │ │ │ ├── E-SF-Shipping.ftl │ │ │ ├── batchShoppingList.ftl │ │ │ ├── e-invoice-content.ftl │ │ │ ├── e-invoice.ftl │ │ │ ├── order_bak.ftl │ │ │ ├── printTransfer.ftl │ │ │ ├── shippingEMS.ftl │ │ │ ├── shippingEMS_gionee.ftl │ │ │ ├── shippingSF.ftl │ │ │ ├── shippingSF_gionee.ftl │ │ │ ├── shippingSF_new.ftl │ │ │ ├── shippingSF_old.ftl │ │ │ ├── shippingST.ftl │ │ │ ├── shippingYT.ftl │ │ │ └── shoppingList.ftl │ │ ├── sfexpressService.wsdl │ │ ├── view │ │ │ ├── activity │ │ │ │ ├── add.jsp │ │ │ │ ├── list.jsp │ │ │ │ └── show.jsp │ │ │ ├── basis │ │ │ │ ├── authorizationList.jsp │ │ │ │ ├── printableTemplate.jsp │ │ │ │ ├── shippingEdit.jsp │ │ │ │ ├── shippingList.jsp │ │ │ │ ├── shippingTemplateEdit.jsp │ │ │ │ ├── shoppingListTemplateEdit.jsp │ │ │ │ ├── supplierEdit.jsp │ │ │ │ ├── supplierList.jsp │ │ │ │ ├── warehouseEdit.jsp │ │ │ │ └── warehouseList.jsp │ │ │ ├── common.jsp │ │ │ ├── error │ │ │ │ ├── 400.jsp │ │ │ │ ├── 403.jsp │ │ │ │ ├── 404.jsp │ │ │ │ ├── 500.jsp │ │ │ │ └── ajaxDone.jsp │ │ │ ├── frames │ │ │ │ ├── admin.jsp │ │ │ │ ├── admin_bottom.jsp │ │ │ │ ├── admin_center.jsp │ │ │ │ ├── admin_left_top.jsp │ │ │ │ ├── admin_main.jsp │ │ │ │ ├── admin_menu.jsp │ │ │ │ └── admin_top.jsp │ │ │ ├── index.jsp │ │ │ ├── invoice │ │ │ │ └── invoiceInfoList.jsp │ │ │ ├── log │ │ │ │ ├── logList.jsp │ │ │ │ └── outlierLog.jsp │ │ │ ├── login.html │ │ │ ├── login.jsp │ │ │ ├── morder │ │ │ │ ├── mOrderExtension.jsp │ │ │ │ ├── mOrderFinish.jsp │ │ │ │ ├── mOrderInput.jsp │ │ │ │ ├── mOrderList.jsp │ │ │ │ └── mOrderView.jsp │ │ │ ├── page │ │ │ │ ├── ResourceExportAction.java │ │ │ │ ├── pager.jsp │ │ │ │ └── queryResourceBatchList.jsp │ │ │ ├── report │ │ │ │ ├── dailyStockDetailList.jsp │ │ │ │ ├── financeReport.jsp │ │ │ │ ├── kuaidiDetail.jsp │ │ │ │ ├── kuaidiSummary.jsp │ │ │ │ ├── listOrderInFact.jsp │ │ │ │ ├── purRecvDetail.jsp │ │ │ │ ├── purRecvSummary.jsp │ │ │ │ ├── rightOrderReport.jsp │ │ │ │ ├── salesDelyDetail.jsp │ │ │ │ ├── salesDelySummary.jsp │ │ │ │ ├── salesReport.jsp │ │ │ │ └── userAreaList.jsp │ │ │ ├── stock │ │ │ │ ├── Noname1.xml │ │ │ │ ├── SpContactsEdit.jsp │ │ │ │ ├── backInit.jsp │ │ │ │ ├── backList.jsp │ │ │ │ ├── checkConfirmEdit.jsp │ │ │ │ ├── checkConfirmItemEdit.jsp │ │ │ │ ├── checkEdit.jsp │ │ │ │ ├── checkGoodsEdit.jsp │ │ │ │ ├── checkGoodsList.jsp │ │ │ │ ├── checkGoodsList3.jsp │ │ │ │ ├── checkItemList.jsp │ │ │ │ ├── checkList.jsp │ │ │ │ ├── configAutoPush.jsp │ │ │ │ ├── deliveryBatchEdit.jsp │ │ │ │ ├── deliveryBatchList.jsp │ │ │ │ ├── deliveryGoodsList.jsp │ │ │ │ ├── deliveryIndivEdit.jsp │ │ │ │ ├── deliveryList.jsp │ │ │ │ ├── deliveryShippingBatchEdit.jsp │ │ │ │ ├── deliveryShippingEdit.jsp │ │ │ │ ├── deliverySummaryList.jsp │ │ │ │ ├── deliveryToKd.jsp │ │ │ │ ├── deliveryToKd1.jsp │ │ │ │ ├── deliveryToKdList.jsp │ │ │ │ ├── deliveryToKdwap.jsp │ │ │ │ ├── deliveryToKdwap1.jsp │ │ │ │ ├── imeiListSf.jsp │ │ │ │ ├── indivCodeInput.jsp │ │ │ │ ├── invoiceInfoList.jsp │ │ │ │ ├── orderBackConfirm.jsp │ │ │ │ ├── orderBackInput.jsp │ │ │ │ ├── orderBackList.jsp │ │ │ │ ├── orderBackView.jsp │ │ │ │ ├── orderGoodsSummary.jsp │ │ │ │ ├── orderImeiList.jsp │ │ │ │ ├── orderInput.jsp │ │ │ │ ├── orderList.jsp │ │ │ │ ├── orderListForDely.jsp │ │ │ │ ├── orderLookup.jsp │ │ │ │ ├── orderPrint.jsp │ │ │ │ ├── orderShow.jsp │ │ │ │ ├── orderStatusStat.jsp │ │ │ │ ├── outlier │ │ │ │ │ ├── add.jsp │ │ │ │ │ ├── list.jsp │ │ │ │ │ └── show.jsp │ │ │ │ ├── physicalDetailUpload.jsp │ │ │ │ ├── physicalDetailUploadIndiv.jsp │ │ │ │ ├── platform │ │ │ │ │ ├── add.jsp │ │ │ │ │ ├── list.jsp │ │ │ │ │ └── update.jsp │ │ │ │ ├── purPreRecvGoodsList.jsp │ │ │ │ ├── purPreRecvIndivList.jsp │ │ │ │ ├── purPreRecvList.jsp │ │ │ │ ├── purPreRecvUpload.jsp │ │ │ │ ├── purRecvEdit.jsp │ │ │ │ ├── purRecvGoodsEdit.jsp │ │ │ │ ├── purRecvGoodsManualEdit.jsp │ │ │ │ ├── purRecvGoodsNew.jsp │ │ │ │ ├── purRecvIndivEdit.jsp │ │ │ │ ├── purRecvList.jsp │ │ │ │ ├── purRecvManualEdit.jsp │ │ │ │ ├── purRecvNew.jsp │ │ │ │ ├── rmaInEdit.jsp │ │ │ │ ├── rmaInItemEdit.jsp │ │ │ │ ├── rmaInShow.jsp │ │ │ │ ├── rmaIndivEdit.jsp │ │ │ │ ├── rmaRecvEdit.jsp │ │ │ │ ├── rmaRecvGoodsEdit.jsp │ │ │ │ ├── rmaRecvIndivEdit.jsp │ │ │ │ ├── rmaRecvInit.jsp │ │ │ │ ├── rmaRecvList.jsp │ │ │ │ ├── rmaRecvRefuseInit.jsp │ │ │ │ ├── rmaSkuEdit.jsp │ │ │ │ ├── salesGoods.jsp │ │ │ │ ├── salesOrderLogisticsEdit.jsp │ │ │ │ ├── salesOrderManage.jsp │ │ │ │ ├── salesOrderShippingBatchEdit.jsp │ │ │ │ ├── salesOrderShippingEdit.jsp │ │ │ │ ├── salesPrepare.jsp │ │ │ │ ├── salesPrepare1.jsp │ │ │ │ ├── sfOrderPrint.jsp │ │ │ │ ├── sfStockList.jsp │ │ │ │ ├── stockChangeList.jsp │ │ │ │ ├── stockEdit.jsp │ │ │ │ ├── stockHistoryList.jsp │ │ │ │ ├── stockInList.jsp │ │ │ │ ├── stockInSf.jsp │ │ │ │ ├── stockLimitEdit.jsp │ │ │ │ ├── stockList.jsp │ │ │ │ ├── transBack.jsp │ │ │ │ ├── transGoods.jsp │ │ │ │ ├── transPrepare.jsp │ │ │ │ ├── transPrepare1.jsp │ │ │ │ ├── transPrepare1Sf.jsp │ │ │ │ ├── transPrepareSf.jsp │ │ │ │ ├── transferEdit.jsp │ │ │ │ ├── transferEditSf.jsp │ │ │ │ ├── transferGoodsImport.jsp │ │ │ │ ├── transferGoodsNew.jsp │ │ │ │ ├── transferGoodsNewSf.jsp │ │ │ │ ├── transferImport.jsp │ │ │ │ ├── transferList.jsp │ │ │ │ ├── transferListSf.jsp │ │ │ │ ├── transferManual.jsp │ │ │ │ ├── transferManualSf.jsp │ │ │ │ ├── transferRmo │ │ │ │ │ ├── transferConfirm.jsp │ │ │ │ │ ├── transferInput.jsp │ │ │ │ │ ├── transferRmoList.jsp │ │ │ │ │ └── transferView.jsp │ │ │ │ └── upload.jsp │ │ │ ├── system │ │ │ │ └── opLogList.jsp │ │ │ ├── transfer │ │ │ │ ├── file_transfer.jsp │ │ │ │ ├── trans.jsp │ │ │ │ ├── transGoodsFragment.jsp │ │ │ │ ├── transPrepare.jsp │ │ │ │ ├── transferEdit.jsp │ │ │ │ ├── transferGoods.jsp │ │ │ │ └── transferList.jsp │ │ │ ├── uc │ │ │ │ ├── add_user.jsp │ │ │ │ └── list_user.jsp │ │ │ ├── view.iml │ │ │ ├── wares │ │ │ │ ├── attrSetEdit.jsp │ │ │ │ ├── attrSetList.jsp │ │ │ │ ├── categoryEdit.jsp │ │ │ │ ├── categoryList.jsp │ │ │ │ ├── indivEdit.jsp │ │ │ │ ├── indivList.jsp │ │ │ │ ├── putaway │ │ │ │ │ ├── add.jsp │ │ │ │ │ ├── list.jsp │ │ │ │ │ └── show.jsp │ │ │ │ ├── skuAttrEdit.jsp │ │ │ │ ├── skuAttrList.jsp │ │ │ │ ├── skuEdit.jsp │ │ │ │ ├── skuList.jsp │ │ │ │ ├── skuLookup.jsp │ │ │ │ ├── skuMapEdit.jsp │ │ │ │ ├── skuMapList.jsp │ │ │ │ ├── waresEdit.jsp │ │ │ │ └── waresList.jsp │ │ │ ├── welcome.jsp │ │ │ └── workorder │ │ │ │ ├── add.jsp │ │ │ │ ├── cancel_workorder.jsp │ │ │ │ ├── file_workorder.jsp │ │ │ │ ├── finish_workorder.jsp │ │ │ │ ├── list.jsp │ │ │ │ ├── look.jsp │ │ │ │ └── up_workorder.jsp │ │ ├── web.xml │ │ └── wms.wsdl │ │ ├── account │ │ ├── install_lodop32.exe │ │ └── install_lodop64.exe │ │ ├── export │ │ ├── back_template.xls │ │ ├── check_exp_templete.xls │ │ ├── delivey_detail_template.xls │ │ ├── distinfo_exp_templete.xls │ │ ├── finance_exp_template.xls │ │ ├── invoice_exp_template.xls │ │ ├── morder_template.xls │ │ ├── orderInFact_template.xls │ │ ├── order_exp_template.xls │ │ ├── order_stat_template.xls │ │ ├── order_time_template.xls │ │ ├── rma_order_exp_template.xls │ │ ├── sales_order_import_template.xlsx │ │ ├── stock_change_exp_template.xls │ │ ├── stock_dailyStock_template.xls │ │ ├── stock_exp_template.xls │ │ ├── store_platform_exp_template.xls │ │ ├── tansfer_goods_imp_demo.xls │ │ ├── tranfer_imp_demo.xls │ │ ├── transferRmo_template.xls │ │ ├── transfer_exp_template.xls │ │ ├── transfer_import_template.xlsx │ │ ├── transfer_sf_inport_template.xlsx │ │ ├── transfer_template.xls │ │ ├── userarea_template.xls │ │ └── workorder_template.xls │ │ ├── index.jsp │ │ └── static │ │ ├── audio │ │ ├── audio_error.ogg │ │ └── audio_error.wav │ │ ├── ckeditor-4.1.2 │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── en.js │ │ │ └── zh-cn.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ └── mini.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── css │ │ ├── login.css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ ├── dwz.frag.xml │ │ ├── favicon.ico │ │ ├── images │ │ ├── code.gif │ │ ├── login_btn.gif │ │ ├── login_frbg.gif │ │ ├── login_mbg.jpg │ │ ├── login_tbg.jpg │ │ ├── menu_minus.gif │ │ ├── menu_plus.gif │ │ └── welcom.jpg │ │ ├── jquery-validation │ │ ├── images │ │ │ └── unchecked.gif │ │ ├── jquery.validate.min.js │ │ ├── messages_bs_zh.js │ │ └── validate.css │ │ ├── js │ │ ├── additional-methods.js │ │ ├── area.js │ │ ├── dwz.accordion.js │ │ ├── dwz.ajax.js │ │ ├── dwz.alertMsg.js │ │ ├── dwz.barDrag.js │ │ ├── dwz.checkbox.js │ │ ├── dwz.combox.js │ │ ├── dwz.contextmenu.js │ │ ├── dwz.core.js │ │ ├── dwz.cssTable.js │ │ ├── dwz.database.js │ │ ├── dwz.datepicker.js │ │ ├── dwz.dialog.js │ │ ├── dwz.dialogDrag.js │ │ ├── dwz.drag.js │ │ ├── dwz.effects.js │ │ ├── dwz.history.js │ │ ├── dwz.navTab.js │ │ ├── dwz.pagination.js │ │ ├── dwz.panel.js │ │ ├── dwz.print.js │ │ ├── dwz.regional.zh.js │ │ ├── dwz.resize.js │ │ ├── dwz.scrollCenter.js │ │ ├── dwz.sortDrag.js │ │ ├── dwz.stable.js │ │ ├── dwz.switchEnv.js │ │ ├── dwz.tab.js │ │ ├── dwz.taskBar.js │ │ ├── dwz.theme.js │ │ ├── dwz.tree.js │ │ ├── dwz.ui.js │ │ ├── dwz.util.date.js │ │ ├── dwz.util.number.js │ │ ├── dwz.validate.method.js │ │ ├── gionee.util.js │ │ ├── gionee.weight.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.8.3.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.bgiframe.js │ │ ├── jquery.cookie.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.layout-latest.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.ztree.all-3.5.min.js │ │ ├── json2.js │ │ ├── layout-default-latest.css │ │ ├── speedup.js │ │ ├── tooltip.js │ │ └── xheditor │ │ │ ├── xheditor-1.2.2.min.js │ │ │ ├── xheditor_emot │ │ │ ├── default │ │ │ │ ├── angry.gif │ │ │ │ ├── awkward.gif │ │ │ │ ├── bye.gif │ │ │ │ ├── config.txt │ │ │ │ ├── crazy.gif │ │ │ │ ├── cry.gif │ │ │ │ ├── curse.gif │ │ │ │ ├── cute.gif │ │ │ │ ├── despise.gif │ │ │ │ ├── doubt.gif │ │ │ │ ├── envy.gif │ │ │ │ ├── fastcry.gif │ │ │ │ ├── knock.gif │ │ │ │ ├── laugh.gif │ │ │ │ ├── mad.gif │ │ │ │ ├── ohmy.gif │ │ │ │ ├── panic.gif │ │ │ │ ├── proud.gif │ │ │ │ ├── quiet.gif │ │ │ │ ├── sad.gif │ │ │ │ ├── shutup.gif │ │ │ │ ├── shy.gif │ │ │ │ ├── sleep.gif │ │ │ │ ├── smile.gif │ │ │ │ ├── struggle.gif │ │ │ │ ├── titter.gif │ │ │ │ ├── tongue.gif │ │ │ │ ├── wail.gif │ │ │ │ └── wronged.gif │ │ │ ├── ipb │ │ │ │ ├── alien.gif │ │ │ │ ├── angel.gif │ │ │ │ ├── angry.gif │ │ │ │ ├── bandit.gif │ │ │ │ ├── biglaugh.gif │ │ │ │ ├── blink.gif │ │ │ │ ├── blush.gif │ │ │ │ ├── config.txt │ │ │ │ ├── cool.gif │ │ │ │ ├── cry.gif │ │ │ │ ├── depres.gif │ │ │ │ ├── devil.gif │ │ │ │ ├── glare.gif │ │ │ │ ├── heart.gif │ │ │ │ ├── joyful.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── laugh.gif │ │ │ │ ├── magician.gif │ │ │ │ ├── ninja.gif │ │ │ │ ├── pinch.gif │ │ │ │ ├── police.gif │ │ │ │ ├── sad.gif │ │ │ │ ├── sick.gif │ │ │ │ ├── sideways.gif │ │ │ │ ├── sleep.gif │ │ │ │ ├── smile.gif │ │ │ │ ├── surprised.gif │ │ │ │ ├── tongue.gif │ │ │ │ ├── unsure.gif │ │ │ │ ├── w00t.gif │ │ │ │ ├── whistling.gif │ │ │ │ ├── wondering.gif │ │ │ │ └── wub.gif │ │ │ ├── msn │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ └── pidgin │ │ │ │ ├── angry.gif │ │ │ │ ├── bad.gif │ │ │ │ ├── blush.gif │ │ │ │ ├── brokenheart.gif │ │ │ │ ├── bye.gif │ │ │ │ ├── coffee.gif │ │ │ │ ├── config.txt │ │ │ │ ├── cool.gif │ │ │ │ ├── cry.gif │ │ │ │ ├── curse.gif │ │ │ │ ├── cute.gif │ │ │ │ ├── devil.gif │ │ │ │ ├── envy.gif │ │ │ │ ├── gift.gif │ │ │ │ ├── good.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── laugh.gif │ │ │ │ ├── love.gif │ │ │ │ ├── music.gif │ │ │ │ ├── question.gif │ │ │ │ ├── rose.gif │ │ │ │ ├── sad.gif │ │ │ │ ├── shocked.gif │ │ │ │ ├── shout.gif │ │ │ │ ├── sick.gif │ │ │ │ ├── sleepy.gif │ │ │ │ ├── smile.gif │ │ │ │ ├── soccer.gif │ │ │ │ ├── sweat.gif │ │ │ │ ├── tired.gif │ │ │ │ ├── tongue.gif │ │ │ │ ├── victory.gif │ │ │ │ └── wink.gif │ │ │ ├── xheditor_lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ ├── xheditor_plugins │ │ │ ├── html2markdown.js │ │ │ ├── htmldomparser.js │ │ │ ├── multiupload │ │ │ │ ├── img │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── bg1.gif │ │ │ │ │ ├── bg2.gif │ │ │ │ │ ├── btnbg.gif │ │ │ │ │ ├── btnbgr.gif │ │ │ │ │ ├── clear.gif │ │ │ │ │ ├── progressbg.gif │ │ │ │ │ └── start.gif │ │ │ │ ├── multiupload.css │ │ │ │ ├── multiupload.html │ │ │ │ ├── multiupload.js │ │ │ │ └── swfupload │ │ │ │ │ ├── swfupload.js │ │ │ │ │ └── swfupload.swf │ │ │ ├── showdown.js │ │ │ └── ubb.js │ │ │ └── xheditor_skin │ │ │ ├── blank.gif │ │ │ ├── default │ │ │ ├── iframe.css │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── close.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── progress.gif │ │ │ │ ├── progressbg.gif │ │ │ │ ├── tag-address.gif │ │ │ │ ├── tag-div.gif │ │ │ │ ├── tag-h1.gif │ │ │ │ ├── tag-h2.gif │ │ │ │ ├── tag-h3.gif │ │ │ │ ├── tag-h4.gif │ │ │ │ ├── tag-h5.gif │ │ │ │ ├── tag-h6.gif │ │ │ │ ├── tag-p.gif │ │ │ │ ├── tag-pre.gif │ │ │ │ ├── waiting.gif │ │ │ │ ├── wmp.gif │ │ │ │ └── wordimg.gif │ │ │ └── ui.css │ │ │ ├── nostyle │ │ │ ├── iframe.css │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── close.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── progress.gif │ │ │ │ ├── progressbg.gif │ │ │ │ ├── tag-address.gif │ │ │ │ ├── tag-div.gif │ │ │ │ ├── tag-h1.gif │ │ │ │ ├── tag-h2.gif │ │ │ │ ├── tag-h3.gif │ │ │ │ ├── tag-h4.gif │ │ │ │ ├── tag-h5.gif │ │ │ │ ├── tag-h6.gif │ │ │ │ ├── tag-p.gif │ │ │ │ ├── tag-pre.gif │ │ │ │ ├── waiting.gif │ │ │ │ ├── wmp.gif │ │ │ │ └── wordimg.gif │ │ │ └── ui.css │ │ │ ├── o2007blue │ │ │ ├── iframe.css │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── buttonbg.gif │ │ │ │ ├── close.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── progress.gif │ │ │ │ ├── progressbg.gif │ │ │ │ ├── tag-address.gif │ │ │ │ ├── tag-div.gif │ │ │ │ ├── tag-h1.gif │ │ │ │ ├── tag-h2.gif │ │ │ │ ├── tag-h3.gif │ │ │ │ ├── tag-h4.gif │ │ │ │ ├── tag-h5.gif │ │ │ │ ├── tag-h6.gif │ │ │ │ ├── tag-p.gif │ │ │ │ ├── tag-pre.gif │ │ │ │ ├── waiting.gif │ │ │ │ ├── wmp.gif │ │ │ │ └── wordimg.gif │ │ │ └── ui.css │ │ │ ├── o2007silver │ │ │ ├── iframe.css │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── buttonbg.gif │ │ │ │ ├── close.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── progress.gif │ │ │ │ ├── progressbg.gif │ │ │ │ ├── tag-address.gif │ │ │ │ ├── tag-div.gif │ │ │ │ ├── tag-h1.gif │ │ │ │ ├── tag-h2.gif │ │ │ │ ├── tag-h3.gif │ │ │ │ ├── tag-h4.gif │ │ │ │ ├── tag-h5.gif │ │ │ │ ├── tag-h6.gif │ │ │ │ ├── tag-p.gif │ │ │ │ ├── tag-pre.gif │ │ │ │ ├── waiting.gif │ │ │ │ ├── wmp.gif │ │ │ │ └── wordimg.gif │ │ │ └── ui.css │ │ │ └── vista │ │ │ ├── iframe.css │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── buttonbg.gif │ │ │ ├── close.gif │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── progress.gif │ │ │ ├── progressbg.gif │ │ │ ├── tag-address.gif │ │ │ ├── tag-div.gif │ │ │ ├── tag-h1.gif │ │ │ ├── tag-h2.gif │ │ │ ├── tag-h3.gif │ │ │ ├── tag-h4.gif │ │ │ ├── tag-h5.gif │ │ │ ├── tag-h6.gif │ │ │ ├── tag-p.gif │ │ │ ├── tag-pre.gif │ │ │ ├── titlebg.gif │ │ │ ├── waiting.gif │ │ │ ├── wmp.gif │ │ │ └── wordimg.gif │ │ │ └── ui.css │ │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── skin │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── print │ │ └── LodopFuncs.js │ │ ├── searchableSelect │ │ ├── jquery.searchableSelect.css │ │ └── jquery.searchableSelect.js │ │ ├── themes │ │ ├── css │ │ │ ├── core.css │ │ │ ├── ieHack.css │ │ │ ├── login.css │ │ │ └── print.css │ │ └── default │ │ │ ├── images │ │ │ ├── accordion │ │ │ │ └── accordion.png │ │ │ ├── account_info_bg.png │ │ │ ├── alert │ │ │ │ ├── alertpanel.png │ │ │ │ └── alertpanel_icon.png │ │ │ ├── button │ │ │ │ ├── button_s.png │ │ │ │ ├── imgX.gif │ │ │ │ ├── toleft.gif │ │ │ │ ├── toleftone.gif │ │ │ │ ├── toright.gif │ │ │ │ └── torightone.gif │ │ │ ├── dialog │ │ │ │ ├── dialogpanel.png │ │ │ │ └── dialogpanel_icon.png │ │ │ ├── form │ │ │ │ ├── input_bg.png │ │ │ │ └── input_bt.png │ │ │ ├── grid │ │ │ │ ├── grid.png │ │ │ │ ├── resizeCol.png │ │ │ │ └── tableth.png │ │ │ ├── header_bg.png │ │ │ ├── icon.png │ │ │ ├── layout │ │ │ │ ├── taskbar.png │ │ │ │ ├── taskbar_control.png │ │ │ │ ├── taskbar_icon.png │ │ │ │ └── toggleSidebar.png │ │ │ ├── listLine.png │ │ │ ├── login_banner.jpg │ │ │ ├── login_bg.png │ │ │ ├── login_content_bg.png │ │ │ ├── login_header_bg.png │ │ │ ├── login_list.png │ │ │ ├── login_logo.gif │ │ │ ├── login_sub.png │ │ │ ├── login_title.png │ │ │ ├── logo.png │ │ │ ├── menu │ │ │ │ └── menu.png │ │ │ ├── order_down.gif │ │ │ ├── order_up.gif │ │ │ ├── pageHeader_bg.png │ │ │ ├── panel │ │ │ │ ├── Thumbs.db │ │ │ │ ├── panel.png │ │ │ │ └── panel_icon.png │ │ │ ├── progressBar │ │ │ │ ├── progressBar_l.gif │ │ │ │ ├── progressBar_m.gif │ │ │ │ └── progressBar_s.gif │ │ │ ├── search-bg.gif │ │ │ ├── search-bt.gif │ │ │ ├── shadow │ │ │ │ ├── shadow_c_c.png │ │ │ │ ├── shadow_c_l.png │ │ │ │ ├── shadow_c_r.png │ │ │ │ ├── shadow_f_c.png │ │ │ │ ├── shadow_f_l.png │ │ │ │ ├── shadow_f_r.png │ │ │ │ ├── shadow_h_c.png │ │ │ │ ├── shadow_h_l.png │ │ │ │ └── shadow_h_r.png │ │ │ ├── tabs │ │ │ │ ├── tabscontrol.png │ │ │ │ ├── tabspage.png │ │ │ │ ├── tabspage_icon.png │ │ │ │ └── tabspanel.png │ │ │ ├── themeButton.png │ │ │ └── tree │ │ │ │ ├── check.png │ │ │ │ ├── folder.png │ │ │ │ └── tree.png │ │ │ └── style.css │ │ ├── uploadify │ │ ├── Change Log.txt │ │ ├── css │ │ │ └── uploadify.css │ │ ├── img │ │ │ ├── add.jpg │ │ │ ├── cancel.jpg │ │ │ ├── delete.jpg │ │ │ ├── upload.jpg │ │ │ └── uploadify-cancel.png │ │ └── scripts │ │ │ ├── jquery.uploadify.js │ │ │ ├── jquery.uploadify.min.js │ │ │ └── uploadify.swf │ │ └── weight │ │ └── mscomm32.cab └── test │ ├── java │ └── com │ │ ├── gionee │ │ └── wms │ │ │ ├── action │ │ │ └── WmsActionTest.java │ │ │ ├── dao │ │ │ ├── EInvoiceDaoTest.java │ │ │ ├── IndivDaoTest.java │ │ │ ├── InvoiceInfoDaoTest.java │ │ │ ├── SalesOrderDaoTest.java │ │ │ ├── ShippingInfoDaoTest.java │ │ │ ├── StockServiceTest.java │ │ │ └── TransferGoodsDaoTest.java │ │ │ └── service │ │ │ ├── EInvoiceSOS.java │ │ │ ├── EInvoiceTest.java │ │ │ ├── IdService.java │ │ │ ├── ShippingInfoServiceTest.java │ │ │ └── TransferServiceTest.java │ │ ├── qimen │ │ ├── QimenHttpclient.java │ │ ├── QimenSendTool.java │ │ └── QimenSign.java │ │ ├── routdata │ │ ├── EmsTest.java │ │ └── GdWebservice.java │ │ └── sf │ │ ├── SfTest1.java │ │ ├── SkuMapJobTest.java │ │ ├── TestBspExpressServlet.java │ │ ├── TransferJobTest.java │ │ ├── TransferStatusTest.java │ │ ├── Util.java │ │ ├── XmlTest.java │ │ └── xml.xml │ ├── resources │ ├── log4j.properties │ ├── spring-wms-jdbc.xml │ ├── spring-wms-serivce.xml │ ├── webdefault.xml │ ├── wms-dbconfig.properties │ └── wms.properties │ └── test1.iml └── wms.iml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | WMS 2 | 仓库管理系统 3 | http://wms.gionee.com -------------------------------------------------------------------------------- /doc/2.0.7DB脚本.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/2.0.7DB脚本.txt -------------------------------------------------------------------------------- /doc/2.1.0升级文件/wms-release_2.1.0b01配置升级说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/2.1.0升级文件/wms-release_2.1.0b01配置升级说明.txt -------------------------------------------------------------------------------- /doc/2.1.0升级文件/wms_2.1.0数据库信息部添加脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/2.1.0升级文件/wms_2.1.0数据库信息部添加脚本.sql -------------------------------------------------------------------------------- /doc/2.1.0升级文件/wms_2.1.0数据库升级脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/2.1.0升级文件/wms_2.1.0数据库升级脚本.sql -------------------------------------------------------------------------------- /doc/2.1.0升级文件/金立wms2.1.0发布说明文档.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/2.1.0升级文件/金立wms2.1.0发布说明文档.xlsx -------------------------------------------------------------------------------- /doc/3-4月产品开发月计划需求收集表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/3-4月产品开发月计划需求收集表.xlsx -------------------------------------------------------------------------------- /doc/WMS12月需求sprint计划.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/WMS12月需求sprint计划.xlsx -------------------------------------------------------------------------------- /doc/WMS1月需求sprint计划.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/WMS1月需求sprint计划.xlsx -------------------------------------------------------------------------------- /doc/WMS2.0.5需求sprint计划.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/WMS2.0.5需求sprint计划.xlsx -------------------------------------------------------------------------------- /doc/WMS2.0.5需求sprint计划_修改后.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/WMS2.0.5需求sprint计划_修改后.xlsx -------------------------------------------------------------------------------- /doc/requirement/WMS产品开发需求收集-12月20号 - 副本.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/requirement/WMS产品开发需求收集-12月20号 - 副本.xlsx -------------------------------------------------------------------------------- /doc/requirement/WMS产品开发需求收集-12月20号.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/requirement/WMS产品开发需求收集-12月20号.xlsx -------------------------------------------------------------------------------- /doc/requirement/WMS产品开发需求收集-2月17号.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/requirement/WMS产品开发需求收集-2月17号.xlsx -------------------------------------------------------------------------------- /doc/wms-release-2.0.6_b02更新说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms-release-2.0.6_b02更新说明.txt -------------------------------------------------------------------------------- /doc/wms-release_2.0.6b01_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms-release_2.0.6b01_DB.sql -------------------------------------------------------------------------------- /doc/wms-release_2.0.6b01发布说明文档.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms-release_2.0.6b01发布说明文档.xlsx -------------------------------------------------------------------------------- /doc/wms-release_2.0.6b03发布说明文档.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms-release_2.0.6b03发布说明文档.xlsx -------------------------------------------------------------------------------- /doc/wms-release_2.0.6b03配置升级说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms-release_2.0.6b03配置升级说明.txt -------------------------------------------------------------------------------- /doc/wms_2.0.6线上数据库升级脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms_2.0.6线上数据库升级脚本.sql -------------------------------------------------------------------------------- /doc/wms_2.0.6统计报表数据结构.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms_2.0.6统计报表数据结构.sql -------------------------------------------------------------------------------- /doc/wms_2.0.6配置升级说明.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/wms_2.1.0数据库信息部添加脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms_2.1.0数据库信息部添加脚本.sql -------------------------------------------------------------------------------- /doc/wms_2.1.0数据库升级脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/wms_2.1.0数据库升级脚本.sql -------------------------------------------------------------------------------- /doc/商品仓管理11月计划 - 副本.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/商品仓管理11月计划 - 副本.xlsx -------------------------------------------------------------------------------- /doc/商品仓管理11月计划.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/商品仓管理11月计划.xlsx -------------------------------------------------------------------------------- /doc/统计/4.30结余.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/4.30结余.xls -------------------------------------------------------------------------------- /doc/统计/4月入库.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/4月入库.xls -------------------------------------------------------------------------------- /doc/统计/4月出货-调拨.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/4月出货-调拨.xls -------------------------------------------------------------------------------- /doc/统计/4月出货情况-订单.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/4月出货情况-订单.xls -------------------------------------------------------------------------------- /doc/统计/4月退货.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/4月退货.xls -------------------------------------------------------------------------------- /doc/统计/5月31日结余.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月31日结余.xls -------------------------------------------------------------------------------- /doc/统计/5月入库.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月入库.xls -------------------------------------------------------------------------------- /doc/统计/5月拒收.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月拒收.xls -------------------------------------------------------------------------------- /doc/统计/5月物流.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月物流.xls -------------------------------------------------------------------------------- /doc/统计/5月调拨出库.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月调拨出库.xls -------------------------------------------------------------------------------- /doc/统计/5月调拨退货.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月调拨退货.xls -------------------------------------------------------------------------------- /doc/统计/5月退货.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月退货.xls -------------------------------------------------------------------------------- /doc/统计/5月采购入库.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月采购入库.xls -------------------------------------------------------------------------------- /doc/统计/5月销售.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/5月销售.xls -------------------------------------------------------------------------------- /doc/统计/物流仓管发货明细统计.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/物流仓管发货明细统计.sql -------------------------------------------------------------------------------- /doc/统计/退货数据-V2.0.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/退货数据-V2.0.xls -------------------------------------------------------------------------------- /doc/统计/销售退货.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/doc/统计/销售退货.xls -------------------------------------------------------------------------------- /lib/icepdf-core-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/icepdf-core-6.1.1.jar -------------------------------------------------------------------------------- /lib/icepdf-pro-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/icepdf-pro-6.1.1.jar -------------------------------------------------------------------------------- /lib/icepdf-pro-intl-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/icepdf-pro-intl-6.1.1.jar -------------------------------------------------------------------------------- /lib/icepdf-viewer-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/icepdf-viewer-6.1.1.jar -------------------------------------------------------------------------------- /lib/openApi-sdk-0.0.2-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/openApi-sdk-0.0.2-SNAPSHOT.jar -------------------------------------------------------------------------------- /lib/quartz-all-1.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/quartz-all-1.6.3.jar -------------------------------------------------------------------------------- /lib/website-1.2.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/lib/website-1.2.10.jar -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/AddSaleInvoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/AddSaleInvoice.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/AuthInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/AuthInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/Exception.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/Exception.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/ImeidtlSale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/ImeidtlSale.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/ObjectFactory.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/SaleInvoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/SaleInvoice.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/dc/web/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/dc/web/service/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/aspect/OutlierAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/aspect/OutlierAspect.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/AESOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/AESOperator.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/ActionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/ActionUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/AesUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/AesUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/Base64.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/DateConvert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/DateConvert.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/EInvoiceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/EInvoiceConfig.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/FileUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/HttpClientUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/HttpClientUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/HttpRequestor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/HttpRequestor.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/JaxbUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/JaxbUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/JsonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/JsonUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/JsonUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/LinkMapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/LinkMapUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/MD5Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/MD5Util.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/MessageDecode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/MessageDecode.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/MyCollectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/MyCollectionUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/OneBarcodeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/OneBarcodeUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/PasswordUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/PasswordUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/PdfUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/PdfUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/ResultCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/ResultCode.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/SendMailUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/SendMailUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/StringUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/TemplateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/TemplateHelper.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/ThreadUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/ThreadUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/UUIDGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/UUIDGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/Util.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/ValidateCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/ValidateCode.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/WmsConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/WmsConstants.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/XMLUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/XMLUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/XmlHelper1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/XmlHelper1.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/constant/Consts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/constant/Consts.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/excel/ExcelUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/excel/ExcelUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/common/excel/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/common/excel/Test.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/ActivityDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/ActivityDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/AttachmentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/AttachmentDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/AttrSetDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/AttrSetDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/BackDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/BackDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/BatisDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/BatisDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/CategoryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/CategoryDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/CheckDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/CheckDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/CommonDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/CommonDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/DbPropertyDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/DbPropertyDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/DeliveryBatchDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/DeliveryBatchDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/DeliveryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/DeliveryDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/IndivDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/IndivDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/InvoiceInfoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/InvoiceInfoDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/LogDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/LogDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/ManualReissueOrderDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/ManualReissueOrderDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/OperationDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/OperationDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/OrderOutlierDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/OrderOutlierDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/OrderOutlierLogDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/OrderOutlierLogDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/PurPreRecvDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/PurPreRecvDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/PurchaseDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/PurchaseDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/ReceiveDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/ReceiveDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderImeiDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderImeiDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderLogDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderLogDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderMapDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderMapDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderNodeInfoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderNodeInfoDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SalesOrderPushInfoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SalesOrderPushInfoDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/ShippingDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/ShippingDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/ShippingInfoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/ShippingInfoDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SkuAttrDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SkuAttrDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SkuMapDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SkuMapDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/StatDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/StatDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/StockDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/StockDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/StockInDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/StockInDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/StockOutDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/StockOutDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/StorePlatformDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/StorePlatformDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SupplierDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SupplierDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/SystemConfigDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/SystemConfigDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/TransferDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/TransferDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/TransferRmoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/TransferRmoDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/UcUserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/UcUserDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/WarehouseDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/WarehouseDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/WaresDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/WaresDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/WaresPutawayDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/WaresPutawayDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dao/WorkOrderDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dao/WorkOrderDao.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/AjaxResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/AjaxResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/BaseParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/BaseParam.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/CommonAjaxResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/CommonAjaxResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/CommonResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/CommonResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/Data.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/DataDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/DataDescription.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/DeliverySummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/DeliverySummary.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/DeltaResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/DeltaResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/ExcelModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/ExcelModel.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/GlobalInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/GlobalInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/KpContentResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/KpContentResp.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/KpInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/KpInterface.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/Menu.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/Page.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/PageResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/PageResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/QueryMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/QueryMap.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/ReceiveSummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/ReceiveSummary.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/ReturnStateInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/ReturnStateInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SendRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SendRequest.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/ShippingSummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/ShippingSummary.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/ShiroUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/ShiroUser.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SkuStocksDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SkuStocksDto.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SpContactsEditModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SpContactsEditModel.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SpMContactsPhoneValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SpMContactsPhoneValue.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SsoGetMenuResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SsoGetMenuResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/SsoLoginCheckResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/SsoLoginCheckResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/StockRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/StockRequest.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/StockSyncDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/StockSyncDto.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/dto/XzContentResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/dto/XzContentResp.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Activity.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Attachment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Attachment.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/AttrSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/AttrSet.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Authorization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Authorization.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Back.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Back.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/BackGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/BackGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Category.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Check.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Check.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/CheckGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/CheckGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/CheckItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/CheckItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/CheckTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/CheckTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/DailyStock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/DailyStock.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/DailyStockTemp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/DailyStockTemp.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/DbProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/DbProperty.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Delivery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Delivery.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/DeliveryBatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/DeliveryBatch.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/DeliveryGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/DeliveryGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Indiv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Indiv.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/IndivFlow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/IndivFlow.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/IndivScanItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/IndivScanItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/InvoiceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/InvoiceInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Log.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/ManualReissueOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/ManualReissueOrder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/OperationLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/OperationLog.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/OrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/OrderItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/OrderOutlier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/OrderOutlier.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/OrderOutlierLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/OrderOutlierLog.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Payment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Payment.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/PhysicalDetailItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/PhysicalDetailItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/PurPreRecv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/PurPreRecv.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/PurPreRecvGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/PurPreRecvGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Purchase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Purchase.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/PurchaseGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/PurchaseGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Receive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Receive.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/ReceiveGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/ReceiveGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/RmaSalesOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/RmaSalesOrder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SaleStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SaleStat.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderImei.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderImei.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderLog.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderMap.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderNodeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderNodeInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOrderPushInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOrderPushInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SalesOutStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SalesOutStat.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Shipping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Shipping.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/ShippingInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/ShippingInfo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Sku.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Sku.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SkuAttr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SkuAttr.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SkuBomDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SkuBomDetail.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SkuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SkuItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SkuMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SkuMap.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Stock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Stock.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockChange.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockCheckTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockCheckTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockDelta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockDelta.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockHistory.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockIn.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockInItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockInItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockOut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockOut.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StockOutItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StockOutItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/StorePlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/StorePlatform.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Supplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Supplier.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/SystemConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/SystemConfig.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Transfer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Transfer.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/TransferGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/TransferGoods.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/TransferPartner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/TransferPartner.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/TransferRemove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/TransferRemove.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/UcUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/UcUser.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/User.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Warehouse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Warehouse.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/Wares.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/Wares.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/WaresPutaway.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/WaresPutaway.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/entity/WorkOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/entity/WorkOrder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/OrderManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/OrderManager.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/OrderManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/OrderManagerImpl.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/StockManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/StockManager.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/StockManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/StockManagerImpl.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/dto/OrderGoodsDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/dto/OrderGoodsDTO.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/dto/OrderInfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/dto/OrderInfoDTO.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/dto/OrderNotifyDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/dto/OrderNotifyDTO.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/dto/SalesOrderDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/dto/SalesOrderDTO.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/dto/StockInfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/dto/StockInfoDTO.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/facade/result/WmsResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/facade/result/WmsResult.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/jedis/MyShardedJedisPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/jedis/MyShardedJedisPool.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/jedis/RedisClientTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/jedis/RedisClientTemplate.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/jedis/RedisDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/jedis/RedisDataSource.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/jedis/RedisDataSourceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/jedis/RedisDataSourceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/DailyStockTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/DailyStockTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/EInvoiceJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/EInvoiceJob.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/IndivPushJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/IndivPushJob.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/KuaidiFilterJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/KuaidiFilterJob.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/OrderNotifyJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/OrderNotifyJob.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/OrderPushSFJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/OrderPushSFJob.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/OrderStatTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/OrderStatTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/ResetJHBatchCodeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/ResetJHBatchCodeTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/StockDeltaTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/StockDeltaTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/SyncSfSkuMapTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/SyncSfSkuMapTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/SyncStockTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/SyncStockTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/SyncTaobaoOrderTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/SyncTaobaoOrderTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/SyncTaobaoOrderThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/SyncTaobaoOrderThread.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/SyncVipOrderTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/SyncVipOrderTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/TransferJobTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/TransferJobTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/job/TransferStatusTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/job/TransferStatusTask.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/JacksonHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/JacksonHelper.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/pojo/NoticeRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/pojo/NoticeRequest.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/pojo/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/pojo/Result.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/pojo/ResultItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/pojo/ResultItem.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/pojo/TaskRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/pojo/TaskRequest.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/kuaidi/pojo/TaskResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/kuaidi/pojo/TaskResponse.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/ServiceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/ServiceException.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/log/LogService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/log/LogService.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/BackService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/BackService.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/ChBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/ChBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/EInvoiceDir.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/EInvoiceDir.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/EwmGenerate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/EwmGenerate.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/KpBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/KpBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/service/stock/XzBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/service/stock/XzBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/BackGoodsVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/BackGoodsVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/CategoryVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/CategoryVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/DeliveryDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/DeliveryDetails.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/OrderStatusStatVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/OrderStatusStatVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/OrderStatusVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/OrderStatusVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/SalesOrderVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/SalesOrderVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/SalesStatVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/SalesStatVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/SapPostData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/SapPostData.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/ServiceCtrlMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/ServiceCtrlMessage.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/ShippingParamVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/ShippingParamVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/ShippingResultVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/ShippingResultVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/SkuVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/SkuVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/TransferStatVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/TransferStatVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/UpdDestJsonRequestVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/UpdDestJsonRequestVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/vo/UpdDestJsonResponseVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/vo/UpdDestJsonResponseVo.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/AccessException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/AccessException.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/BaseConfigListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/BaseConfigListener.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/action/api/SkuAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/action/api/SkuAction.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/action/api/WmsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/action/api/WmsAction.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/action/log/LogAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/action/log/LogAction.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/client/HttpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/client/HttpUtil.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/client/OCClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/client/OCClient.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/client/SsoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/client/SsoClient.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/extend/DwzMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/extend/DwzMessage.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/extend/StringToDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/extend/StringToDate.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/filter/LogInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/filter/LogInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/servlet/DockSFServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/servlet/DockSFServlet.java -------------------------------------------------------------------------------- /src/main/java/com/gionee/wms/web/ws/response/WSResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/gionee/wms/web/ws/response/WSResult.java -------------------------------------------------------------------------------- /src/main/java/com/sf/integration/warehouse/bean/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/com/sf/integration/warehouse/bean/Item.java -------------------------------------------------------------------------------- /src/main/java/org/icepdf/core/application/ProductInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/java/org/icepdf/core/application/ProductInfo.java -------------------------------------------------------------------------------- /src/main/main1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/main1.iml -------------------------------------------------------------------------------- /src/main/resources/config/excel/check_exp_templete.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/check_exp_templete.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/check_imp_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/check_imp_data.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/check_imp_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/check_imp_desc.xml -------------------------------------------------------------------------------- /src/main/resources/config/excel/check_imp_indiv_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/check_imp_indiv_data.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/check_imp_indiv_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/check_imp_indiv_desc.xml -------------------------------------------------------------------------------- /src/main/resources/config/excel/distinfo_exp_templete.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/distinfo_exp_templete.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/salesorder_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/salesorder_template.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/stock_check_list(7).xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/stock_check_list(7).xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/tansfer_goods_imp_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/tansfer_goods_imp_data.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/tansfer_goods_imp_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/tansfer_goods_imp_desc.xml -------------------------------------------------------------------------------- /src/main/resources/config/excel/tansfer_imp_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/tansfer_imp_data.xls -------------------------------------------------------------------------------- /src/main/resources/config/excel/tansfer_imp_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/excel/tansfer_imp_desc.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/ActivityMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/ActivityMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/AttachmentMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/AttachmentMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/AttrSetMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/AttrSetMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/BackMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/BackMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/CategoryMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/CategoryMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/CommonMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/CommonMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/DbPropertyMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/DbPropertyMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/DeliveryBatchMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/DeliveryBatchMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/DeliveryMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/DeliveryMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/IndivMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/IndivMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/InvoiceInfoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/InvoiceInfoMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/LogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/LogMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/OperationLogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/OperationLogMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/OrderOutlierLogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/OrderOutlierLogMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/OrderOutlierMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/OrderOutlierMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/PurPreRecvMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/PurPreRecvMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/PurchaseMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/PurchaseMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/ReceiveMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/ReceiveMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SalesOrderImeiMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SalesOrderImeiMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SalesOrderLogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SalesOrderLogMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SalesOrderMapMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SalesOrderMapMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SalesOrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SalesOrderMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/ShippingInfoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/ShippingInfoMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/ShippingMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/ShippingMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SkuAttrMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SkuAttrMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SkuMapMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SkuMapMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StatMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StatMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StockCheckMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StockCheckMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StockInMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StockInMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StockMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StockMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StockOutMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StockOutMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/StorePlatformMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/StorePlatformMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SupplierMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SupplierMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/SystemConfigMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/SystemConfigMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/TransferMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/TransferMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/TransferRmoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/TransferRmoMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/UcUserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/UcUserMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/WarehouseMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/WarehouseMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/WaresMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/WaresMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/WaresPutawayMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/WaresPutawayMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ibatis/WorkOrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ibatis/WorkOrderMapper.xml -------------------------------------------------------------------------------- /src/main/resources/config/ipList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/ipList.xml -------------------------------------------------------------------------------- /src/main/resources/config/log/log4j.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/log/log4j.dtd -------------------------------------------------------------------------------- /src/main/resources/config/log/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/log/log4j.xml -------------------------------------------------------------------------------- /src/main/resources/config/spring/ehcache-shiro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/ehcache-shiro.xml -------------------------------------------------------------------------------- /src/main/resources/config/spring/spring-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/spring-web.xml -------------------------------------------------------------------------------- /src/main/resources/config/spring/spring-wms-jdbc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/spring-wms-jdbc.xml -------------------------------------------------------------------------------- /src/main/resources/config/spring/spring-wms-serivce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/spring-wms-serivce.xml -------------------------------------------------------------------------------- /src/main/resources/config/spring/spring-wms-serivce.xml.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/spring-wms-serivce.xml.2 -------------------------------------------------------------------------------- /src/main/resources/config/spring/spring-wms-shiro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/spring/spring-wms-shiro.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-account.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-api.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-basis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-basis.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-log.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-report.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-stock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-stock.xml -------------------------------------------------------------------------------- /src/main/resources/config/struts/struts-wares.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/config/struts/struts-wares.xml -------------------------------------------------------------------------------- /src/main/resources/ftl/e-invoice-down-content.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/e-invoice-down-content.ftl -------------------------------------------------------------------------------- /src/main/resources/ftl/e-invoice-make-content.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/e-invoice-make-content.ftl -------------------------------------------------------------------------------- /src/main/resources/ftl/e-invoice.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/e-invoice.ftl -------------------------------------------------------------------------------- /src/main/resources/ftl/e-sf-cancel.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/e-sf-cancel.ftl -------------------------------------------------------------------------------- /src/main/resources/ftl/e-sf-create.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/e-sf-create.ftl -------------------------------------------------------------------------------- /src/main/resources/ftl/ewmGenerate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/ewmGenerate.json -------------------------------------------------------------------------------- /src/main/resources/ftl/invoice-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/ftl/invoice-mail.html -------------------------------------------------------------------------------- /src/main/resources/jhBatchCode.txt: -------------------------------------------------------------------------------- 1 | 001 -------------------------------------------------------------------------------- /src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/struts.xml -------------------------------------------------------------------------------- /src/main/resources/wms-dbconfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/wms-dbconfig.properties -------------------------------------------------------------------------------- /src/main/resources/wms.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/wms.properties -------------------------------------------------------------------------------- /src/main/resources/wms.properties.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/resources/wms.properties.bck -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/dwr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/dwr.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/E-SF-Shipping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/E-SF-Shipping.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/batchShoppingList.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/batchShoppingList.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/e-invoice-content.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/e-invoice-content.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/e-invoice.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/e-invoice.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/order_bak.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/order_bak.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/printTransfer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/printTransfer.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingEMS.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingEMS.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingEMS_gionee.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingEMS_gionee.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingSF.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingSF.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingSF_gionee.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingSF_gionee.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingSF_new.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingSF_new.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingSF_old.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingSF_old.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingST.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingST.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shippingYT.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shippingYT.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/ftl/shoppingList.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/ftl/shoppingList.ftl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/sfexpressService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/sfexpressService.wsdl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/activity/add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/activity/add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/activity/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/activity/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/activity/show.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/activity/show.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/authorizationList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/authorizationList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/printableTemplate.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/printableTemplate.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/shippingEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/shippingEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/shippingList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/shippingList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/shippingTemplateEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/shippingTemplateEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/supplierEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/supplierEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/supplierList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/supplierList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/warehouseEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/warehouseEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/basis/warehouseList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/basis/warehouseList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/common.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/common.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/error/400.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/error/400.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/error/403.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/error/403.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/error/404.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/error/404.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/error/500.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/error/500.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/error/ajaxDone.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/error/ajaxDone.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_bottom.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_bottom.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_center.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_center.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_left_top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_left_top.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_menu.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_menu.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/frames/admin_top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/frames/admin_top.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/invoice/invoiceInfoList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/invoice/invoiceInfoList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/log/logList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/log/logList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/log/outlierLog.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/log/outlierLog.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/login.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/login.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/morder/mOrderExtension.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/morder/mOrderExtension.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/morder/mOrderFinish.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/morder/mOrderFinish.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/morder/mOrderInput.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/morder/mOrderInput.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/morder/mOrderList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/morder/mOrderList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/morder/mOrderView.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/morder/mOrderView.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/page/ResourceExportAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/page/ResourceExportAction.java -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/page/pager.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/page/pager.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/financeReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/financeReport.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/kuaidiDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/kuaidiDetail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/kuaidiSummary.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/kuaidiSummary.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/listOrderInFact.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/listOrderInFact.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/purRecvDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/purRecvDetail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/purRecvSummary.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/purRecvSummary.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/rightOrderReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/rightOrderReport.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/salesDelyDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/salesDelyDetail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/salesDelySummary.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/salesDelySummary.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/salesReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/salesReport.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/report/userAreaList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/report/userAreaList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/Noname1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/Noname1.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/SpContactsEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/SpContactsEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/backInit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/backInit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/backList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/backList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkConfirmEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkConfirmEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkConfirmItemEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkConfirmItemEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkGoodsEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkGoodsEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkGoodsList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkGoodsList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkGoodsList3.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkGoodsList3.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkItemList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkItemList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/checkList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/checkList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/configAutoPush.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/configAutoPush.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryBatchEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryBatchEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryBatchList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryBatchList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryGoodsList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryGoodsList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryIndivEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryIndivEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryShippingEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryShippingEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliverySummaryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliverySummaryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryToKd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryToKd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryToKd1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryToKd1.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryToKdList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryToKdList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryToKdwap.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryToKdwap.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/deliveryToKdwap1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/deliveryToKdwap1.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/imeiListSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/imeiListSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/indivCodeInput.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/indivCodeInput.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/invoiceInfoList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/invoiceInfoList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderBackConfirm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderBackConfirm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderBackInput.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderBackInput.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderBackList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderBackList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderBackView.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderBackView.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderGoodsSummary.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderGoodsSummary.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderImeiList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderImeiList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderInput.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderInput.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderListForDely.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderListForDely.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderLookup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderLookup.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderPrint.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderPrint.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderShow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderShow.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/orderStatusStat.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/orderStatusStat.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/outlier/add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/outlier/add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/outlier/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/outlier/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/outlier/show.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/outlier/show.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/physicalDetailUpload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/physicalDetailUpload.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/platform/add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/platform/add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/platform/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/platform/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/platform/update.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/platform/update.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purPreRecvGoodsList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purPreRecvGoodsList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purPreRecvIndivList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purPreRecvIndivList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purPreRecvList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purPreRecvList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purPreRecvUpload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purPreRecvUpload.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvGoodsEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvGoodsEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvGoodsNew.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvGoodsNew.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvIndivEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvIndivEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvManualEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvManualEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/purRecvNew.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/purRecvNew.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaInEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaInEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaInItemEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaInItemEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaInShow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaInShow.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaIndivEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaIndivEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvGoodsEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvGoodsEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvIndivEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvIndivEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvInit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvInit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaRecvRefuseInit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaRecvRefuseInit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/rmaSkuEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/rmaSkuEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/salesGoods.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/salesGoods.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/salesOrderManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/salesOrderManage.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/salesPrepare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/salesPrepare.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/salesPrepare1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/salesPrepare1.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/sfOrderPrint.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/sfOrderPrint.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/sfStockList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/sfStockList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockChangeList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockChangeList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockHistoryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockHistoryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockInList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockInList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockInSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockInSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockLimitEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockLimitEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/stockList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/stockList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transBack.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transBack.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transGoods.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transGoods.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transPrepare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transPrepare.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transPrepare1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transPrepare1.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transPrepare1Sf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transPrepare1Sf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transPrepareSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transPrepareSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferEditSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferEditSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferGoodsImport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferGoodsImport.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferGoodsNew.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferGoodsNew.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferGoodsNewSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferGoodsNewSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferImport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferImport.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferListSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferListSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferManual.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferManual.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/transferManualSf.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/transferManualSf.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/stock/upload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/stock/upload.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/system/opLogList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/system/opLogList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/file_transfer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/file_transfer.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/trans.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/trans.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/transPrepare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/transPrepare.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/transferEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/transferEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/transferGoods.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/transferGoods.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/transfer/transferList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/transfer/transferList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/uc/add_user.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/uc/add_user.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/uc/list_user.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/uc/list_user.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/view.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/view.iml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/attrSetEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/attrSetEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/attrSetList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/attrSetList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/categoryEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/categoryEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/categoryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/categoryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/indivEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/indivEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/indivList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/indivList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/putaway/add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/putaway/add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/putaway/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/putaway/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/putaway/show.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/putaway/show.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuAttrEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuAttrEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuAttrList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuAttrList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuLookup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuLookup.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuMapEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuMapEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/skuMapList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/skuMapList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/waresEdit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/waresEdit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/wares/waresList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/wares/waresList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/welcome.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/cancel_workorder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/cancel_workorder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/file_workorder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/file_workorder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/finish_workorder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/finish_workorder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/look.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/look.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/workorder/up_workorder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/view/workorder/up_workorder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/wms.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/WEB-INF/wms.wsdl -------------------------------------------------------------------------------- /src/main/webapp/account/install_lodop32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/account/install_lodop32.exe -------------------------------------------------------------------------------- /src/main/webapp/account/install_lodop64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/account/install_lodop64.exe -------------------------------------------------------------------------------- /src/main/webapp/export/back_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/back_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/check_exp_templete.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/check_exp_templete.xls -------------------------------------------------------------------------------- /src/main/webapp/export/delivey_detail_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/delivey_detail_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/distinfo_exp_templete.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/distinfo_exp_templete.xls -------------------------------------------------------------------------------- /src/main/webapp/export/finance_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/finance_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/invoice_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/invoice_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/morder_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/morder_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/orderInFact_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/orderInFact_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/order_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/order_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/order_stat_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/order_stat_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/order_time_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/order_time_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/rma_order_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/rma_order_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/sales_order_import_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/sales_order_import_template.xlsx -------------------------------------------------------------------------------- /src/main/webapp/export/stock_change_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/stock_change_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/stock_dailyStock_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/stock_dailyStock_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/stock_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/stock_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/store_platform_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/store_platform_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/tansfer_goods_imp_demo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/tansfer_goods_imp_demo.xls -------------------------------------------------------------------------------- /src/main/webapp/export/tranfer_imp_demo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/tranfer_imp_demo.xls -------------------------------------------------------------------------------- /src/main/webapp/export/transferRmo_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/transferRmo_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/transfer_exp_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/transfer_exp_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/transfer_import_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/transfer_import_template.xlsx -------------------------------------------------------------------------------- /src/main/webapp/export/transfer_sf_inport_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/transfer_sf_inport_template.xlsx -------------------------------------------------------------------------------- /src/main/webapp/export/transfer_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/transfer_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/userarea_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/userarea_template.xls -------------------------------------------------------------------------------- /src/main/webapp/export/workorder_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/export/workorder_template.xls -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/static/audio/audio_error.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/audio/audio_error.ogg -------------------------------------------------------------------------------- /src/main/webapp/static/audio/audio_error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/audio/audio_error.wav -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/build-config.js -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/ckeditor.js -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/config.js -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/contents.css -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/plugins/icons.png -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/plugins/wsc/README.md -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/skins/moono/icons.png -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/skins/moono/readme.md -------------------------------------------------------------------------------- /src/main/webapp/static/ckeditor-4.1.2/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/ckeditor-4.1.2/styles.js -------------------------------------------------------------------------------- /src/main/webapp/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/login.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/zTreeStyle/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/css/zTreeStyle/zTreeStyle.css -------------------------------------------------------------------------------- /src/main/webapp/static/dwz.frag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/dwz.frag.xml -------------------------------------------------------------------------------- /src/main/webapp/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/static/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/code.gif -------------------------------------------------------------------------------- /src/main/webapp/static/images/login_btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/login_btn.gif -------------------------------------------------------------------------------- /src/main/webapp/static/images/login_frbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/login_frbg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/images/login_mbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/login_mbg.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/images/login_tbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/login_tbg.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/images/menu_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/menu_minus.gif -------------------------------------------------------------------------------- /src/main/webapp/static/images/menu_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/menu_plus.gif -------------------------------------------------------------------------------- /src/main/webapp/static/images/welcom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/images/welcom.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/jquery-validation/messages_bs_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/jquery-validation/messages_bs_zh.js -------------------------------------------------------------------------------- /src/main/webapp/static/jquery-validation/validate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/jquery-validation/validate.css -------------------------------------------------------------------------------- /src/main/webapp/static/js/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/additional-methods.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/area.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.accordion.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.ajax.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.alertMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.alertMsg.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.barDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.barDrag.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.checkbox.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.combox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.combox.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.contextmenu.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.core.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.cssTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.cssTable.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.database.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.datepicker.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.dialog.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.dialogDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.dialogDrag.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.drag.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.effects.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.history.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.navTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.navTab.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.pagination.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.panel.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.print.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.regional.zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.regional.zh.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.resize.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.scrollCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.scrollCenter.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.sortDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.sortDrag.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.stable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.stable.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.switchEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.switchEnv.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.tab.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.taskBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.taskBar.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.theme.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.tree.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.ui.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.util.date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.util.date.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.util.number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.util.number.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/dwz.validate.method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/dwz.validate.method.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/gionee.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/gionee.util.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/gionee.weight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/gionee.weight.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.bgiframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.bgiframe.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.layout-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.layout-latest.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.validate.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.ztree.all-3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/jquery.ztree.all-3.5.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/json2.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/layout-default-latest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/layout-default-latest.css -------------------------------------------------------------------------------- /src/main/webapp/static/js/speedup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/speedup.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/tooltip.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/xheditor/xheditor-1.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/xheditor/xheditor-1.2.2.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/xheditor/xheditor_emot/msn/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/xheditor/xheditor_emot/msn/1.gif -------------------------------------------------------------------------------- /src/main/webapp/static/js/xheditor/xheditor_emot/msn/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/xheditor/xheditor_emot/msn/10.gif -------------------------------------------------------------------------------- /src/main/webapp/static/js/xheditor/xheditor_lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/js/xheditor/xheditor_lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/layer.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/mobile/layer.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/layer.css -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/webapp/static/print/LodopFuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/print/LodopFuncs.js -------------------------------------------------------------------------------- /src/main/webapp/static/themes/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/css/core.css -------------------------------------------------------------------------------- /src/main/webapp/static/themes/css/ieHack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/css/ieHack.css -------------------------------------------------------------------------------- /src/main/webapp/static/themes/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/css/login.css -------------------------------------------------------------------------------- /src/main/webapp/static/themes/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/css/print.css -------------------------------------------------------------------------------- /src/main/webapp/static/themes/default/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/default/images/icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/themes/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/default/images/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/themes/default/style.css -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/Change Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/Change Log.txt -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/css/uploadify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/css/uploadify.css -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/img/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/img/add.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/img/cancel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/img/cancel.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/img/delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/img/delete.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/img/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/img/upload.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/uploadify/scripts/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/uploadify/scripts/uploadify.swf -------------------------------------------------------------------------------- /src/main/webapp/static/weight/mscomm32.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/main/webapp/static/weight/mscomm32.cab -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/action/WmsActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/action/WmsActionTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/dao/EInvoiceDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/dao/EInvoiceDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/dao/IndivDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/dao/IndivDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/dao/InvoiceInfoDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/dao/InvoiceInfoDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/dao/SalesOrderDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/dao/SalesOrderDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/dao/StockServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/dao/StockServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/service/EInvoiceSOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/service/EInvoiceSOS.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/service/EInvoiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/service/EInvoiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/gionee/wms/service/IdService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/gionee/wms/service/IdService.java -------------------------------------------------------------------------------- /src/test/java/com/qimen/QimenHttpclient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/qimen/QimenHttpclient.java -------------------------------------------------------------------------------- /src/test/java/com/qimen/QimenSendTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/qimen/QimenSendTool.java -------------------------------------------------------------------------------- /src/test/java/com/qimen/QimenSign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/qimen/QimenSign.java -------------------------------------------------------------------------------- /src/test/java/com/routdata/EmsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/routdata/EmsTest.java -------------------------------------------------------------------------------- /src/test/java/com/routdata/GdWebservice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/routdata/GdWebservice.java -------------------------------------------------------------------------------- /src/test/java/com/sf/SfTest1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/SfTest1.java -------------------------------------------------------------------------------- /src/test/java/com/sf/SkuMapJobTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/SkuMapJobTest.java -------------------------------------------------------------------------------- /src/test/java/com/sf/TestBspExpressServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/TestBspExpressServlet.java -------------------------------------------------------------------------------- /src/test/java/com/sf/TransferJobTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/TransferJobTest.java -------------------------------------------------------------------------------- /src/test/java/com/sf/TransferStatusTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/TransferStatusTest.java -------------------------------------------------------------------------------- /src/test/java/com/sf/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/Util.java -------------------------------------------------------------------------------- /src/test/java/com/sf/XmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/XmlTest.java -------------------------------------------------------------------------------- /src/test/java/com/sf/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/java/com/sf/xml.xml -------------------------------------------------------------------------------- /src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /src/test/resources/spring-wms-jdbc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/spring-wms-jdbc.xml -------------------------------------------------------------------------------- /src/test/resources/spring-wms-serivce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/spring-wms-serivce.xml -------------------------------------------------------------------------------- /src/test/resources/webdefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/webdefault.xml -------------------------------------------------------------------------------- /src/test/resources/wms-dbconfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/wms-dbconfig.properties -------------------------------------------------------------------------------- /src/test/resources/wms.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/resources/wms.properties -------------------------------------------------------------------------------- /src/test/test1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/src/test/test1.iml -------------------------------------------------------------------------------- /wms.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmh-github/wms/HEAD/wms.iml --------------------------------------------------------------------------------